/* ==========================================================================
   KRIST ON TOUR (krist-on-tour.de) — LUXURY BRAND DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

:root {
  /* Color Palette — Original Warm Gold & Obsidian Charcoal */
  --bg-obsidian: #0e0a0a;
  --bg-card: rgba(22, 16, 16, 0.85);
  --bg-card-hover: rgba(32, 22, 22, 0.9);
  --bg-overlay: rgba(14, 10, 10, 0.85);

  --gold-primary: #D5B363;
  --gold-dark: #B88842;
  --gold-light: #d1c095;
  --gold-gradient: radial-gradient(at center center, #D5B363 0%, #B88842 80%);
  --gold-glow: 0 0 30px rgba(213, 179, 99, 0.35);

  --text-main: #ffffff;
  --text-gold: #d1c095;
  --text-muted: #d0c8c0;
  --text-dim: #908580;

  --border-gold: rgba(213, 179, 99, 0.3);
  --border-gold-strong: rgba(213, 179, 99, 0.7);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Layout & Spacing */
  --container-max: 1240px;
  --header-height: 100px;
  --radius-sm: 0px; /* Sharp luxury edges as in original */
  --radius-lg: 8px;

  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.5s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.65;
  background: var(--bg-obsidian);
}

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

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

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
}

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

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-card:hover {
  border-color: var(--border-gold-strong);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

/* Buttons — Warm Gold Radial Gradient */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  background-image: var(--gold-gradient);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(184, 136, 66, 0.4);
  transition: all var(--transition-fast);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(213, 179, 99, 0.6);
  filter: brightness(1.1);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0px;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-outline-gold:hover {
  background: rgba(213, 179, 99, 0.15);
  border-color: var(--gold-light);
  color: #ffffff;
}

.btn-disabled {
  background: rgba(30, 25, 25, 0.6) !important;
  color: var(--text-dim) !important;
  border: 1px solid rgba(213, 179, 99, 0.15) !important;
  cursor: not-allowed !important;
  opacity: 0.65;
  pointer-events: none;
  box-shadow: none !important;
}

/* =====================================================================
   LUXURY HEADER — Cartier / Rolex / Four Seasons Inspired
   ===================================================================== */

/* Thin Gold Accent Line — luxury hotel / maison signature */
.header-accent-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold-primary) 50%, var(--gold-dark) 80%, transparent 100%);
  z-index: 1002;
  opacity: 0.85;
}

/* Site Header — spacious, transparent-to-frosted on scroll */
.site-header {
  position: fixed;
  top: 2px; /* sits below the accent line */
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(14, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(213, 179, 99, 0.08);
  transition: background 0.6s ease, backdrop-filter 0.6s ease, border-color 0.6s ease, height 0.4s ease;
}

/* Scrolled state — denser, more frosted */
.site-header.scrolled {
  background: rgba(14, 10, 10, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(213, 179, 99, 0.2);
}

.nav-container {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo — generous sizing, the visual anchor */
.brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.85;
}

.brand-logo-img {
  height: 74px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(213, 179, 99, 0.35));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 18px rgba(213, 179, 99, 0.5));
}

/* Floating Bottom-Right Luxury Language Switcher Widget */
.lang-switcher-floating {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(18, 12, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(213, 179, 99, 0.35);
  border-radius: 30px;
  padding: 4px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), 0 0 20px rgba(213, 179, 99, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lang-switcher-floating:hover {
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.95), 0 0 30px rgba(213, 179, 99, 0.4);
}

.lang-divider {
  display: inline-block;
  color: rgba(213, 179, 99, 0.3);
  font-size: 0.75rem;
  user-select: none;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(213, 179, 99, 0.4);
}

.lang-btn:hover:not(.active) {
  color: #ffffff;
}

/* Floating Scroll Indicator & Back-to-Top Button (High Visibility Gold Glow) */
.scroll-toggle-floating {
  position: fixed;
  bottom: 28px;
  right: 142px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(38, 28, 20, 0.95), rgba(16, 11, 10, 0.98));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--gold-light);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(213, 179, 99, 0.45);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.scroll-toggle-floating:hover {
  background: var(--gold-gradient);
  color: #0d0806;
  border-color: #ffffff;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 215, 120, 0.7);
}

.scroll-toggle-floating.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
}

@media (max-width: 600px) {
  .lang-switcher-floating {
    bottom: 20px;
    right: 20px;
  }
  .scroll-toggle-floating {
    bottom: 20px;
    right: 135px;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
}

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

/* Nav Link — refined uppercase with gold underline reveal */
.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-main);
  transition: color 0.35s ease;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Right-side Actions Group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* Language Switcher — minimal, refined */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.3s ease;
}

.lang-btn:hover {
  color: var(--text-muted);
}

.lang-btn.active {
  color: var(--gold-light);
}

.lang-divider {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* Nav CTA — prominent, elegant gold conversion button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-image: var(--gold-gradient);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(184, 136, 66, 0.35);
  transition: all 0.35s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(213, 179, 99, 0.5);
  filter: brightness(1.1);
}

/* =====================================================================
   HAMBURGER BUTTON — animated 3-bar to X
   ===================================================================== */
.hamburger {
  display: none; /* hidden on desktop, shown on mobile */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1003;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold-light);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.hamburger.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =====================================================================
   FULL-SCREEN MOBILE OVERLAY — premium theater curtain feel
   ===================================================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(14, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s 0.5s;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s 0s;
}

.mobile-overlay-nav {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 0 24px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Staggered animation for each nav item */
.mobile-nav-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-overlay.is-open .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay.is-open .mobile-nav-item:nth-child(1) { transition-delay: 0.08s; }
.mobile-overlay.is-open .mobile-nav-item:nth-child(2) { transition-delay: 0.14s; }
.mobile-overlay.is-open .mobile-nav-item:nth-child(3) { transition-delay: 0.20s; }
.mobile-overlay.is-open .mobile-nav-item:nth-child(4) { transition-delay: 0.26s; }
.mobile-overlay.is-open .mobile-nav-item:nth-child(5) { transition-delay: 0.32s; }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  display: inline-block;
  padding: 10px 0;
}

.mobile-nav-link:hover {
  color: var(--gold-light);
}

.mobile-overlay-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.38s, transform 0.5s ease 0.38s;
}

.mobile-overlay.is-open .mobile-overlay-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay-cta {
  padding: 16px 48px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
}

.mobile-lang-switcher .lang-btn {
  font-size: 0.8rem;
  padding: 8px 14px;
}

/* =====================================================================
   RESPONSIVE — Mobile breakpoint
   ===================================================================== */
@media (max-width: 960px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-desktop {
    display: none;
  }

  .nav-cta {
    padding: 9px 20px;
    font-size: 0.68rem;
  }

  .hamburger {
    display: flex;
  }

  .brand-logo-img {
    height: 44px;
  }
}

/* Hide lang switcher on very small screens — it's in the overlay */
@media (max-width: 600px) {
  .nav-actions > .lang-switcher {
    display: none;
  }
}

/* Multi-Layer Hero Composite Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 10px) 24px 20px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.60;
  pointer-events: none;
  filter: contrast(1.05) brightness(1.05);
}

.hero-stardust-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 10, 10, 0.15) 0%, rgba(14, 10, 10, 0.35) 50%, rgba(14, 10, 10, 0.92) 100%);
  z-index: 1;
}

/* Multi-layered Cutout Composite — Anchored to the RIGHT side (Larger Visual Impact) */
.hero-cutout-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  height: 92vh;
  pointer-events: none;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-delorean-cutout {
  position: absolute;
  bottom: 0;
  max-height: 65vh;
  width: auto;
  z-index: 2;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.95));
}

.hero-alexander-cutout {
  position: absolute;
  bottom: 0;
  max-height: 82vh;
  width: auto;
  z-index: 3;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.95));
}

/* Hero Content Grid — Text LEFT, Cutouts RIGHT (no overlap) */
.hero-content-grid {
  position: relative;
  z-index: 4;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text-block {
  text-align: left;
}

.hero-prominent-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7));
}

.hero-headline {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 600;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(to right, var(--gold-light) 0%, var(--gold-primary) 30%, #ffffff 50%, var(--gold-primary) 70%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  animation: shine 4s linear infinite;
  text-shadow: 0 0 20px rgba(213, 179, 99, 0.2);
}

@keyframes shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}

.hero-tagline {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quote Banner */
.quote-banner {
  background: radial-gradient(at center center, rgba(32, 22, 22, 0.9), rgba(14, 10, 10, 0.98)), url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150vw;
  height: 150vw;
  background: radial-gradient(circle, rgba(213, 179, 99, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.quote-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: transparent;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-shadow: 0 10px 30px rgba(213,179,99,0.3);
}

.quote-sub {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Header Trust Badge — compact, high-impact conversion trigger */
.header-trust-badge {
  display: flex;
  align-items: center;
  margin-left: 8px;
  filter: drop-shadow(0 4px 12px rgba(213, 179, 99, 0.4));
  transition: transform var(--transition-fast);
  cursor: pointer;
}

.header-trust-badge:hover {
  transform: scale(1.08);
}

@media (max-width: 1150px) {
  .header-trust-badge {
    display: none;
  }
}

/* =====================================================================
   PENN & TELLER CREDIBILITY SHOWCASE (Dominant, Tight Spotlight)
   ===================================================================== */
.credibility-section {
  background: radial-gradient(ellipse at center, rgba(38, 28, 20, 0.95) 0%, rgba(14, 10, 10, 0.98) 80%);
  border-top: 1px solid rgba(213, 179, 99, 0.2);
  border-bottom: 1px solid rgba(213, 179, 99, 0.2);
  padding: 36px 24px;
}

.credibility-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.credibility-badge-wrap {
  flex-shrink: 0;
}

.video-trigger-wrap {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(213, 179, 99, 0.2);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: pointer;
}

.video-trigger-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(213, 179, 99, 0.4);
}

.credibility-badge-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  display: block;
}

.credibility-text-wrap {
  max-width: 640px;
}

.credibility-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.credibility-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.credibility-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

@media (max-width: 860px) {
  .credibility-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .credibility-badge-img {
    max-width: 260px;
  }
}

/* =====================================================================
   LUXURY LIGHTBOX MODAL — Full Size Image Zoom
   ===================================================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
  padding: 24px;
}

.lightbox-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s 0s;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 50px rgba(213, 179, 99, 0.2);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.lightbox-overlay.is-active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 16px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: rgba(22, 16, 16, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10000;
  border-radius: 50%;
}

.lightbox-close-btn:hover {
  background: var(--gold-primary);
  color: #000;
  transform: scale(1.1);
}

/* Lightbox Prev / Next Navigation Controls */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(22, 16, 16, 0.75);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10000;
  border-radius: 50%;
  user-select: none;
}

.lightbox-prev-btn {
  left: 24px;
}

.lightbox-next-btn {
  right: 24px;
}

.lightbox-nav-btn:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(213, 179, 99, 0.5);
}

.lightbox-counter {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.lightbox-close-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Lightbox cursor indicator on gallery & show images */
.gallery-item,
.gallery-item img,
.feature-photo-card,
.feature-photo-card img,
.instagram-action-poster img,
.bio-img {
  cursor: pointer;
}

/* Section Layouts */
.section {
  padding: 100px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-shadow: 0 5px 15px rgba(213, 179, 99, 0.15);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature 4-Card Photo Grid */
.feature-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-photo-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(145deg, rgba(22, 16, 16, 0.8), rgba(10, 8, 8, 0.9));
}

.feature-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  border-radius: inherit;
  pointer-events: none;
}

.feature-photo-card:hover::after {
  border-color: var(--gold-primary);
  box-shadow: inset 0 0 20px rgba(213, 179, 99, 0.3);
}

.feature-photo-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
  filter: brightness(0.85) contrast(1.1);
}

.feature-photo-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.1);
}

.feature-card-content {
  padding: 24px;
  flex-grow: 1;
}

/* Category Seating Tier Grid (VIP, Kat 1, Kat 2) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.tier-card {
  padding: 50px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(22, 16, 16, 0.9), rgba(10, 8, 8, 0.95));
  border: 1px solid rgba(213, 179, 99, 0.15);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(213, 179, 99, 0.1);
}

.tier-card.featured {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 60px rgba(213, 179, 99, 0.2), inset 0 0 20px rgba(213, 179, 99, 0.05);
  background: linear-gradient(145deg, rgba(30, 24, 20, 0.95), rgba(14, 10, 10, 0.98));
  transform: scale(1.05);
  z-index: 2;
}

.tier-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 70px rgba(213, 179, 99, 0.3), inset 0 0 30px rgba(213, 179, 99, 0.1);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-image: var(--gold-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  text-transform: uppercase;
}

.tier-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tier-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.tier-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.tier-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.tier-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tier-features li::before {
  content: '✦';
  color: var(--gold-primary);
  font-size: 0.8rem;
}

/* Tour Dates Calendar Table */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
}

.schedule-row {
  background: linear-gradient(90deg, rgba(22, 16, 16, 0.6), rgba(32, 22, 22, 0.8));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(213, 179, 99, 0.1);
  transition: all var(--transition-smooth);
}

.schedule-row:hover {
  background: linear-gradient(90deg, rgba(32, 22, 22, 0.8), rgba(42, 32, 32, 0.9));
  border-color: rgba(213, 179, 99, 0.4);
  transform: translateX(10px);
  box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
}

.schedule-row td {
  padding: 30px 40px;
  vertical-align: middle;
}

.schedule-date {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.schedule-city {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.schedule-venue {
  color: var(--text-muted);
  font-size: 1rem;
}

/* =====================================================================
   LUXURY REDESIGN ADDITIONS
   ===================================================================== */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  gap: 20px;
  opacity: 0.8;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.gold-divider-icon {
  color: var(--gold-primary);
  font-size: 1.4rem;
}
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.schedule-row td:first-child {
  border-left: 1px solid var(--border-gold);
}

.schedule-row td:last-child {
  border-right: 1px solid var(--border-gold);
}

.schedule-date {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
}

.schedule-city {
  font-size: 1.1rem;
  font-weight: 600;
}

.schedule-venue {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =====================================================================
   INSTAGRAM FOTO-AKTION — Follower Growth Campaign Section
   ===================================================================== */
.instagram-action-section {
  position: relative;
}

.instagram-action-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Steps Column */
.instagram-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instagram-steps-title,
.instagram-prizes-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.instagram-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(22, 16, 16, 0.6);
  border: 1px solid rgba(213, 179, 99, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.instagram-step:hover {
  border-color: rgba(213, 179, 99, 0.4);
  background: rgba(32, 22, 22, 0.7);
}

.instagram-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #ffffff;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
}

.instagram-step strong {
  color: var(--text-main);
  font-size: 0.95rem;
}

.instagram-step p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* Follow Button */
.instagram-follow-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  font-size: 0.85rem;
}

/* Center Poster */
.instagram-action-poster {
  position: relative;
}

.instagram-action-poster img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(213, 179, 99, 0.15);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.instagram-action-poster img:hover {
  transform: scale(1.02);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.9), 0 0 60px rgba(213, 179, 99, 0.25);
}

/* Prizes Column */
.instagram-prizes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instagram-prize {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(22, 16, 16, 0.6);
  border: 1px solid rgba(213, 179, 99, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.instagram-prize:hover {
  border-color: rgba(213, 179, 99, 0.4);
}

.instagram-prize-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
  color: #ffffff;
}

.instagram-prize-badge.gold {
  background: var(--gold-gradient);
  box-shadow: 0 0 20px rgba(213, 179, 99, 0.4);
}

.instagram-prize-badge.silver {
  background: linear-gradient(135deg, #c0c0c0, #8a8a8a);
}

.instagram-prize-badge.bronze {
  background: linear-gradient(135deg, #cd7f32, #8b5a2b);
  font-size: 0.7rem;
}

.instagram-prize p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* =====================================================================
   ÜBER MICH (BIOGRAFIE) & BÜHNEN-GALERIE
   ===================================================================== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.bio-img-wrap {
  position: relative;
}

.bio-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--gold-glow);
  transition: transform var(--transition-smooth);
}

.bio-img:hover {
  transform: scale(1.03);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(213, 179, 99, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  background: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Responsive Rules */
@media (max-width: 960px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text-block {
    text-align: center;
  }
  .hero-prominent-logo {
    margin: 0 auto 20px;
    max-width: 220px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-cutout-container {
    width: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 50vh;
    opacity: 0.6;
  }
  .hero-delorean-cutout {
    max-height: 32vh;
  }
  .hero-alexander-cutout {
    max-height: 40vh;
  }

  .schedule-row td {
    display: block;
    padding: 12px 20px;
    border: none !important;
  }
  .delorean-showcase-grid {
    grid-template-columns: 1fr !important;
  }
  .instagram-action-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .instagram-action-poster {
    order: -1; /* Show poster first on mobile */
  }
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
