:root {
  --color-wine:          #7B2A1E;
  --color-wine-dark:     #5C1E15;
  --color-wine-light:    #A3392A;
  --color-gold:          #C4A24A;
  --color-gold-light:    #DFC07A;
  --color-gold-pale:     #F0E4BC;
  --color-cream:         #F2EDE3;
  --color-cream-dark:    #E8E0D0;
  --color-white:         #FDFAF5;
  --color-vine:          #4A6741;
  --color-vine-muted:    #6B8F5E;
  --color-frost:         #E8F0F5;
  --color-text-primary:  #3A1A10;
  --color-text-secondary:#6B4035;
  --color-text-muted:    #9C7060;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-ui:      'Lato', 'Helvetica Neue', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --border-gold:       2px solid var(--color-gold);
  --border-gold-thick: 3px solid var(--color-gold);
  --border-wine:       2px solid var(--color-wine);

  --shadow-sm:   0 2px 8px rgba(90,30,20,0.10);
  --shadow-md:   0 4px 20px rgba(90,30,20,0.15);
  --shadow-lg:   0 8px 40px rgba(90,30,20,0.20);
  --shadow-gold: 0 4px 16px rgba(196,162,74,0.30);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}


/* ── SVG ICONS ── */
.pm-icon { display:block; margin-bottom:0.3rem; }

/* Icon color inheritance per context */
.feature-icon svg       { color: var(--color-wine); }
.ticket-icon svg        { color: var(--color-wine); }
.tl-dot-inner svg       { color: var(--color-gold-pale); }
.hero-icon svg          { color: var(--color-cream); }
.anreise-item-icon svg  { color: var(--color-cream); }
.ornament-icon svg      { color: var(--color-gold); }
.confirm-icon svg       { color: white; }
.modal-close svg        { color: var(--color-gold-pale); }
.step-circle svg        { color: inherit; }
.ticket-availability.low svg { color: #C0552A; }
.hero-badge svg         { color: var(--color-wine); }
.tl-name svg            { color: var(--color-wine); vertical-align: -3px; }
.social-btn svg         { color: inherit; }
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-cream-dark); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 4px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-wine);
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { color: var(--color-text-secondary); line-height: 1.8; }

a { color: var(--color-wine-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-wine-dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-wine);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--color-wine-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--color-gold-pale);
}
.btn-secondary {
  background: transparent;
  color: var(--color-wine);
  border: var(--border-gold-thick);
}
.btn-secondary:hover {
  background: var(--color-gold-pale);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-wine-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

/* ── ORNAMENT DIVIDER ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.ornament-icon { color: var(--color-gold); font-size: 1.1rem; white-space: nowrap; }

/* ══════════════════════════
   NAVIGATION
   ══════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(242,237,227,0.96);
  backdrop-filter: blur(8px);
  border-bottom: var(--border-gold);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-wine);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-text-secondary);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a.btn-primary {
  color: var(--color-white) !important;
  border-bottom: none;
}
.nav-links a.btn-primary:hover {
  color: var(--color-gold-pale) !important;
}
.nav-links a:hover {
  color: var(--color-wine);
  border-bottom-color: var(--color-gold);
}
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-wine);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-logo-text { display: none; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--color-cream);
    border-bottom: var(--border-gold);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(196,162,74,0.15);
  }
  .nav-cta { display: block !important; padding: 0.75rem 1.5rem 0; }
  .nav-cta .btn { width: 100%; text-align: center; display: block; }
}

/* ══════════════════════════
   HERO
   ══════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 73px;
  background: var(--color-cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 5% 90%, rgba(196,162,74,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 95% 10%, rgba(123,42,30,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(240,228,188,0.30) 0%, transparent 80%);
}
/* Decorative border lines */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 120px; left: 40px; right: 40px; bottom: 40px;
  border: 1px solid rgba(196,162,74,0.25);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gold-pale);
  border: var(--border-gold);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.2rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-wine);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease forwards;
}

.hero-title {
  animation: fadeInUp 0.7s 0.1s ease both;
  margin-bottom: 0.5rem;
}
.hero-title .year {
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
.hero-meta-item .hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-logo-side {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s 0.3s ease both;
}
.hero-logo-wrap {
  position: relative;
  display: inline-block;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: var(--border-gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: spin 30s linear infinite;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -40px;
  border: 1px solid rgba(196,162,74,0.2);
  border-radius: 50%;
  animation: spin 45s linear infinite reverse;
}
.hero-logo-wrap img {
  width: min(380px, 90vw);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(90,30,20,0.20));
}

@media (max-width: 900px) {
  #hero { min-height: auto; padding-top: 68px; padding-bottom: 0; }
  .hero-bg::before { top: 80px; left: 16px; right: 16px; bottom: 16px; }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 1.25rem 3rem;
  }
  .hero-logo-side { order: -1; }
  .hero-logo-wrap img { width: min(220px, 55vw); }
  .hero-logo-wrap::before, .hero-logo-wrap::after { display: none; }
  .hero-meta-item { justify-content: center; }
  .hero-actions { justify-content: center; flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-badge { font-size: 0.68rem; padding: 0.35rem 1rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 1.25rem; }
  .hero-meta { margin-bottom: 1.75rem; gap: 0.5rem; }
  .hero-meta-item { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .hero-content { padding: 2rem 1rem 2.5rem; gap: 1.5rem; }
  .hero-logo-wrap img { width: min(180px, 60vw); }
}

/* ══════════════════════════
   SECTION LAYOUT
   ══════════════════════════ */
.section {
  padding: 5rem 2rem;
}
@media (max-width: 768px) {
  .section { padding: 3rem 1.25rem; }
  .section-header { margin-bottom: 2.25rem; }
  .section-header p { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .section { padding: 2.5rem 1rem; }
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .ornament { justify-content: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.section-header p {
  max-width: 620px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ══════════════════════════
   ÜBER UNS / ÜBER DAS EVENT
   ══════════════════════════ */
#about { background: var(--color-cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.2rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-white);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.feature-item:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-wine);
  margin-bottom: 0.2rem;
}
.feature-text span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.about-visual {
  position: relative;
}
.stats-card {
  background: var(--color-wine);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--color-cream);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.stats-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border: 2px solid rgba(196,162,74,0.3);
  border-radius: 50%;
}
.stats-card::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 80px; height: 80px;
  border: 2px solid rgba(196,162,74,0.2);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(242,237,227,0.7);
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .stats-card { padding: 1.75rem; }
  .stat-num { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stats-card { padding: 1.5rem 1.25rem; }
  .stat-num { font-size: 2rem; }
}

/* ══════════════════════════
   PROGRAMM / STATIONEN
   ══════════════════════════ */
#programm { background: var(--color-cream-dark); }

/* ── Timeline: mobile-first, left-aligned ── */
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

/* Vertical line always on the left of the dot column */
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-wine) 100%);
}

/* Every item: flex row — dot | content */
.timeline-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.tl-dot {
  flex-shrink: 0;
  width: 40px;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.tl-dot-inner {
  width: 40px;
  height: 40px;
  background: var(--color-wine);
  border: 3px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  color: White;
}

.tl-content {
  flex: 1;
  min-width: 0;
  background: var(--color-white);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.tl-content:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.tl-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-wine);
  margin-bottom: 0.3rem;
}
.tl-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* tl-empty only used on desktop alternating layout – hidden by default */
.tl-empty { display: none; }

/* ── Desktop: widen and alternate left/right ── */
@media (min-width: 701px) {
  .timeline { max-width: 780px; }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Switch back to 3-col grid for alternating layout */
  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .tl-dot {
    width: auto;
    justify-content: center;
    align-self: center;
  }
  .tl-dot-inner {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .tl-content { padding: 1.25rem 1.5rem; }
  .tl-name { font-size: 1rem; }
  .tl-empty { display: block; }

  /* Odd rows: content LEFT — dot CENTER — empty RIGHT */
  .timeline-item:nth-child(odd)  .tl-content { grid-column: 1; grid-row: 1; }
  .timeline-item:nth-child(odd)  .tl-dot     { grid-column: 2; grid-row: 1; }
  .timeline-item:nth-child(odd)  .tl-empty   { grid-column: 3; grid-row: 1; }

  /* Even rows: empty LEFT — dot CENTER — content RIGHT */
  .timeline-item:nth-child(even) .tl-empty   { grid-column: 1; grid-row: 1; }
  .timeline-item:nth-child(even) .tl-dot     { grid-column: 2; grid-row: 1; }
  .timeline-item:nth-child(even) .tl-content { grid-column: 3; grid-row: 1; }
}

/* ══════════════════════════
   TICKETS
   ══════════════════════════ */
#tickets {
  background: var(--color-wine);
  position: relative;
  overflow: hidden;
}
#tickets::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(196,162,74,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 10%, rgba(253,250,245,0.05) 0%, transparent 50%);
}
#tickets .section-header h2 { color: var(--color-gold); }
#tickets .section-header p { color: rgba(242,237,227,0.75); }
#tickets .section-label { color: rgba(196,162,74,0.8); }
#tickets .ornament-icon { color: rgba(196,162,74,0.6); }
#tickets .ornament::before, #tickets .ornament::after {
  background: linear-gradient(90deg, transparent, rgba(196,162,74,0.4), transparent);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .ticket-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .ticket-card { padding: 1.5rem; }
  .ticket-price { font-size: 2rem; }
}
.ticket-card {
  background: var(--color-white);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}
.ticket-card.featured {
  border-color: var(--color-wine);
  border-width: 3px;
}
.ticket-featured-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--color-wine);
  color: var(--color-gold-pale);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1.2rem;
  border-bottom-left-radius: var(--radius-md);
}
.ticket-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.ticket-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-wine);
  margin-bottom: 0.5rem;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-wine);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ticket-price span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-muted);
}
.ticket-perks {
  list-style: none;
  margin: 1.2rem 0 1.5rem;
}
.ticket-perks li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(196,162,74,0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ticket-perks li::before {
  content: '';
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: var(--color-vine);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.ticket-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.counter-btn {
  width: 34px; height: 34px;
  background: var(--color-cream);
  border: var(--border-gold);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--color-wine);
}
.counter-btn:hover { background: var(--color-gold-pale); }
.counter-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-wine);
  min-width: 28px;
  text-align: center;
}
.ticket-availability {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-vine);
  margin-top: auto;
  margin-bottom: 0.75rem;
}
.ticket-availability.low { color: #C0552A; }

/* booking summary bar */
.booking-bar {
  position: sticky;
  bottom: 0;
  background: var(--color-wine-dark);
  border-top: var(--border-gold);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  flex-wrap: wrap;
}
.booking-bar.visible { transform: translateY(0); }
.booking-bar-info {
  color: var(--color-cream);
  font-family: var(--font-ui);
  font-size: 0.85rem;
}
.booking-bar-info strong {
  font-size: 1.2rem;
  color: var(--color-gold);
  font-family: var(--font-display);
}
@media (max-width: 480px) {
  .booking-bar { flex-direction: column; align-items: stretch; gap: 0.6rem; padding: 0.85rem 1rem; }
  .booking-bar .btn { text-align: center; width: 100%; }
}

/* ══════════════════════════
   CHECKOUT MODAL / FLOW
   ══════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58,26,16,0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--color-cream);
  border: var(--border-gold-thick);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
@media (max-width: 600px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box {
    max-width: 100%;
    max-height: 95vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
  .modal-body { padding: 1.25rem; }
  .checkout-steps { gap: 0; }
  .step-line { width: 30px; }
  .step-circle { width: 28px; height: 28px; font-size: 0.72rem; }
  .payment-methods { flex-direction: column; }
  .payment-method { flex: none; }
}

.modal-header {
  background: var(--color-wine);
  padding: 1.5rem 2rem;
  border-radius: calc(var(--radius-lg) - 3px) calc(var(--radius-lg) - 3px) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 {
  color: var(--color-gold-pale);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.modal-close {
  background: none;
  border: none;
  color: var(--color-gold-pale);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 1; }
.modal-body { padding: 2rem; }

/* Steps */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-cream-dark);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}
.step-circle.active {
  background: var(--color-wine);
  color: var(--color-gold-pale);
  border-color: var(--color-wine);
}
.step-circle.done {
  background: var(--color-vine);
  color: white;
  border-color: var(--color-vine);
}
.step-line {
  width: 50px; height: 2px;
  background: var(--color-gold);
  opacity: 0.4;
}

.checkout-panel { display: none; }
.checkout-panel.active { display: block; }

/* Forms */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-wine);
  margin-bottom: 0.4rem;
}
.form-input, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus {
  border-color: var(--color-wine);
  box-shadow: 0 0 0 3px rgba(123,42,30,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* Payment methods */
.payment-methods { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.payment-method {
  flex: 1; min-width: 120px;
  padding: 0.9rem;
  background: var(--color-white);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-secondary);
}
.payment-method:hover { border-color: var(--color-wine); }
.payment-method.selected {
  background: var(--color-gold-pale);
  border-color: var(--color-wine);
  color: var(--color-wine);
}
.payment-method .pm-icon { display: block; font-size: 1.5rem; margin-bottom: 0.3rem; }

.order-summary {
  background: var(--color-white);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(196,162,74,0.2);
}
.order-row:last-child { border: none; }
.order-total {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-wine);
  padding-top: 0.5rem !important;
  border-top: var(--border-gold) !important;
  border-bottom: none !important;
}

/* Confirmation */
.confirmation-box {
  text-align: center;
  padding: 1rem;
}
.confirm-icon {
  width: 80px; height: 80px;
  background: var(--color-vine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(74,103,65,0.35);
}
.confirmation-box h3 {
  color: var(--color-vine);
  margin-bottom: 0.75rem;
}

/* ══════════════════════════
   FAQ
   ══════════════════════════ */
#faq { background: var(--color-cream); }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 0.9rem;
  background: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-gold); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-wine);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--color-gold-pale); }
.faq-arrow {
  font-size: 1.2rem;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}
.faq-answer p { font-size: 0.95rem; }

/* ══════════════════════════
   ANREISE
   ══════════════════════════ */
#anreise { background: var(--color-cream-dark); }

.anreise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.anreise-info h3 { margin-bottom: 1.5rem; }
.anreise-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(196,162,74,0.3);
}
.anreise-item:last-child { border: none; }
.anreise-item-icon {
  width: 44px; height: 44px;
  background: var(--color-wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.anreise-item-text strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-wine);
  margin-bottom: 0.3rem;
}
.anreise-item-text p { font-size: 0.9rem; margin: 0; }

.map-placeholder {
  background: var(--color-white);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-placeholder iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}

@media (max-width: 900px) {
  .anreise-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-placeholder iframe { height: 280px; }
}
@media (max-width: 480px) {
  .anreise-item { gap: 0.75rem; }
  .anreise-item-icon { width: 38px; height: 38px; font-size: 1rem; }
  .map-placeholder iframe { height: 240px; }
}

/* ══════════════════════════
   FOOTER
   ══════════════════════════ */
footer {
  background: var(--color-wine-dark);
  padding: 3rem 2rem 2rem;
  color: rgba(242,237,227,0.7);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand img {
  height: 70px;
  margin-bottom: 1rem;
  filter: brightness(0.9);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; color: rgba(242,237,227,0.6); }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(242,237,227,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--color-gold); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(196,162,74,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(242,237,227,0.6);
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(196,162,74,0.2);
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(196,162,74,0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(242,237,227,0.4);
}
.footer-bottom a { color: rgba(242,237,227,0.4); }
.footer-bottom a:hover { color: var(--color-gold); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  footer { padding: 2.5rem 1.25rem 1.5rem; }
}

/* ══════════════════════════
   LEGAL MODALS
   ══════════════════════════ */
.legal-modal-body {
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.legal-modal-body h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.legal-modal-body p { font-size: 0.9rem; margin-bottom: 0.75rem; }

/* ══════════════════════════
   ANIMATIONS
   ══════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll reveal */
/* Reveal animation – desktop only to avoid blank-page bug on mobile */
@media (min-width: 769px) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s 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; }
}
/* Mobile: always visible, no animation */
@media (max-width: 768px) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════════════
   GLOBAL RESPONSIVE – TABLET (768px–1024px)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner { padding: 0.75rem 1.5rem; }
  .hero-content { padding: 3rem 1.5rem; gap: 2.5rem; }
  .section { padding: 4rem 1.5rem; }
  .ticket-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

/* ══════════════════════════════════════════════
   GLOBAL RESPONSIVE – MOBILE (≤ 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav height adjust */
  .nav-inner { padding: 0.6rem 1rem; }
  .nav-logo img { height: 44px; }

  /* Typography scale down */
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  h3 { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }

  /* Buttons full-width in stacked contexts */
  .btn { font-size: 0.82rem; padding: 0.8rem 1.75rem; letter-spacing: 0.08em; }

  /* FAQ */
  .faq-question { font-size: 0.92rem; padding: 1rem 1.1rem; }
  .faq-answer { padding: 0 1.1rem; }
  .faq-item.open .faq-answer { padding: 0 1.1rem 1rem; }

  /* Stats */
  .stat-num { font-size: 2rem; }

  /* Feature cards */
  .feature-item { padding: 0.85rem; }
  .feature-text strong { font-size: 0.78rem; }

  /* Ticket counter */
  .ticket-counter { margin-bottom: 1rem; }

  /* Checkout buttons stacked */
  #panel2 [style*="display:flex;gap:1rem"] ,
  #panel3 [style*="display:flex;gap:1rem"] { flex-direction: column; }

  /* Form row collapse */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Ornament */
  .ornament { margin: 1rem 0; }

  /* Section header */
  .section-header { margin-bottom: 2rem; }
  .section-label { font-size: 0.68rem; letter-spacing: 0.15em; }
}

/* ══════════════════════════════════════════════
   GLOBAL RESPONSIVE – SMALL PHONE (≤ 400px)
   ══════════════════════════════════════════════ */
@media (max-width: 400px) {
  body { font-size: 0.9rem; }
  .nav-inner { padding: 0.55rem 0.85rem; }
  .nav-logo img { height: 40px; }
  .ticket-card { padding: 1.25rem 1rem; }
  .ticket-icon { font-size: 1.8rem; }
  .ticket-name { font-size: 1rem; }
  .ticket-price { font-size: 1.75rem; }
  .stats-card { padding: 1.25rem 1rem; }
  .stat-num { font-size: 1.75rem; }
  .anreise-item { flex-direction: column; gap: 0.5rem; }
  .anreise-item-icon { width: 36px; height: 36px; align-self: flex-start; }
  .hero-badge { font-size: 0.62rem; padding: 0.3rem 0.85rem; }
  .tl-content { padding: 0.85rem 0.9rem; }
  .checkout-steps { gap: 0; }
  .step-line { width: 20px; }
}