@import url("fonts-montserrat.css");

/* Der Detailer – Premium Dark Studio */

:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --text: #f5f5f5;
  --text-muted: #a8a8a8;
  --white: #ffffff;
  --heading: #ffffff;
  --yellow: #ffea00;
  --yellow-btn: #dcc832;
  --yellow-btn-hover: #e8d44a;
  --yellow-btn-border: #c4b028;
  --yellow-dim: rgba(255, 234, 0, 0.12);
  --yellow-glow: rgba(255, 234, 0, 0.15);
  --hover-primary-bg: var(--yellow-btn-hover);
  --hover-primary-border: var(--yellow-btn-border);
  --hover-ghost-bg: rgba(255, 255, 255, 0.14);
  --hover-ghost-border: rgba(255, 255, 255, 0.55);
  --champagne: #d4c4a0;
  --border: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(255, 234, 0, 0.4);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --font: "Montserrat", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --surface-header: rgba(10, 10, 10, 0.92);
  --surface-marquee: #0d0d0d;
  --surface-band-dark: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  --surface-band-accent: linear-gradient(135deg, #141414 0%, #1f1a0a 100%);
  --surface-premium-band:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255, 234, 0, 0.08), transparent),
    linear-gradient(135deg, #121212, #0a0a0a);
  --surface-cta-band: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  --surface-footer: #050505;
  --surface-sticky-cta: linear-gradient(transparent, rgba(10, 10, 10, 0.95) 30%);
  --surface-carousel: #0d0d0d;
  --surface-carousel-img: #050505;
  --surface-nav-mobile: rgba(10, 10, 10, 0.98);
  --surface-popover: #121212;
  --overlay-hero-benefit: rgba(8, 8, 8, 0.78);
  --overlay-caption-end: rgba(12, 12, 12, 0.98);
  --overlay-cinematic-1: rgba(10, 10, 10, 0.85);
  --overlay-cinematic-2: rgba(10, 10, 10, 0.92);
  --overlay-salon-side: linear-gradient(90deg, transparent 40%, rgba(10, 10, 10, 0.85) 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 10001;
  background: linear-gradient(90deg, var(--yellow), #fff9a8);
  box-shadow: 0 0 12px var(--yellow);
  transition: width 0.1s linear;
}

.site-header.scrolled {
  border-bottom-color: var(--border-yellow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: var(--yellow); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--text); }

.container { width: min(1140px, 92vw); margin-inline: auto; }

/* ── Header ── */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10050;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10050;
  height: var(--header-h);
  background: var(--surface-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: min(1140px, 92vw);
  margin-inline: auto;
  gap: 0.75rem;
}

.header-inner .logo-link {
  flex-shrink: 0;
}

.logo { height: 52px; width: auto; transition: transform 0.3s var(--ease); }

.logo-processed {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-processed.is-ready {
  opacity: 1;
}

.logo-link:hover .logo { transform: scale(1.03); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.detailer-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.16rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.detailer-lang-switch__btn {
  min-width: 2rem;
  padding: 0.32rem 0.45rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.detailer-lang-switch__btn:hover,
.detailer-lang-switch__btn:focus-visible {
  background: rgba(255, 234, 0, 0.1);
  color: var(--heading);
  outline: none;
}

.detailer-lang-switch__btn.is-active {
  background: var(--yellow);
  color: #0a0a0a;
  box-shadow: 0 0 12px rgba(255, 234, 0, 0.22);
}

@media (min-width: 1101px) {
  .header-inner .main-nav {
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 1;
    min-width: 0;
  }

  .main-nav .nav-root,
  .main-nav ul {
    flex-wrap: nowrap;
    gap: 0.55rem 0.75rem;
  }

  .main-nav a,
  .nav-parent {
    font-size: 0.76rem;
    letter-spacing: 0.07em;
  }

  .main-nav .nav-cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .main-nav .nav-cta--academy {
    padding: 0.48rem 0.75rem;
    font-size: 0.66rem;
  }

  .nav-theme-li .theme-toggle {
    width: 36px;
    height: 36px;
  }
}

.nav-theme-li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .header-actions {
    margin-left: auto;
  }
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.theme-toggle:hover,
.theme-toggle:focus {
  outline: none;
  border-color: var(--border-yellow);
  background: var(--yellow-dim);
}

.theme-icon {
  display: none;
  line-height: 0;
}

html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.main-nav ul { display: flex; flex-wrap: wrap; gap: 0.9rem 1.55rem; list-style: none; justify-content: flex-end; align-items: center; }

.main-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.1rem;
}

.main-nav a:hover { color: var(--white); }

.nav-cta {
  padding: 0.58rem 1.1rem;
  font-size: 0.74rem;
  background: var(--yellow-btn);
  color: #0a0a0a !important;
  border: 1px solid var(--yellow-btn-border);
  border-radius: var(--radius);
  box-shadow: 0 1px 6px var(--yellow-glow);
}

.nav-cta:hover {
  background: var(--yellow-btn-hover);
  border-color: var(--yellow-btn-border);
  color: #0a0a0a !important;
  box-shadow: 0 2px 10px var(--yellow-glow);
}

/* Academy – Premium-CTA neben Termin */
.nav-item--academy {
  flex-shrink: 0;
}

.nav-cta--academy {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff !important;
  background: linear-gradient(155deg, rgba(28, 28, 32, 0.98) 0%, rgba(10, 10, 12, 1) 100%);
  border: 1px solid rgba(255, 234, 0, 0.38);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(255, 234, 0, 0.06),
    0 4px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.nav-cta-academy-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(255, 234, 0, 0.55);
  flex-shrink: 0;
}

.nav-cta--academy:hover {
  color: #ffffff !important;
  background: linear-gradient(155deg, rgba(36, 36, 40, 0.98) 0%, rgba(14, 14, 16, 1) 100%);
  border-color: rgba(255, 234, 0, 0.62);
  box-shadow:
    0 0 0 1px rgba(255, 234, 0, 0.12),
    0 6px 22px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 234, 0, 0.12);
  transform: translateY(-1px);
}

.nav-cta--academy:active {
  transform: translateY(0);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; padding: 10px;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
}

.nav-toggle span { display: block; height: 2px; background: var(--yellow); transition: 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.75rem;
  font-family: var(--font); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--yellow-btn);
  color: #0a0a0a;
  border-color: var(--yellow-btn-border);
  box-shadow: 0 1px 8px var(--yellow-glow);
}

.btn-primary:hover {
  background: var(--yellow-btn-hover);
  border-color: var(--yellow-btn-border);
  color: #0a0a0a;
  box-shadow: 0 2px 12px var(--yellow-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--hover-ghost-border);
  background: var(--hover-ghost-bg);
  color: var(--white);
  box-shadow: none;
}

.btn-outline {
  background: transparent; color: var(--white); border-color: var(--border-yellow);
}

.btn-outline:hover { background: var(--yellow-dim); border-color: var(--yellow); color: var(--yellow); }

.btn-block { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.5) 45%, rgba(10, 10, 10, 0.2) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 35%),
    radial-gradient(ellipse 80% 50% at 75% 20%, rgba(255, 234, 0, 0.1) 0%, transparent 55%);
}

.hero-bg::after {
  display: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 780px; }

.hero .eyebrow {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.32em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 7.5vw, 4.75rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.text-accent { color: var(--yellow); display: block; margin-top: 0.15em; }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem; max-width: 38rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-benefits {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  list-style: none; margin-bottom: 2.5rem;
}

/* Nur dunkler/cinematic Hero: helle Schrift auf Glas-Pills */
.hero:not(.hero--light) .hero-benefits li {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 600;
  color: var(--white);
  padding: 0.65rem 1.1rem 0.65rem 1.35rem;
  background: var(--overlay-hero-benefit);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 234, 0, 0.35);
  border-radius: var(--radius);
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero:not(.hero--light) .hero-benefits li::before {
  content: ""; position: absolute; left: 0.65rem; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px; background: var(--yellow);
  border-radius: 50%;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1.25rem; }

.hero-cta .btn {
  padding: 1.15rem 2.25rem;
  font-size: 0.78rem;
}

.hero-cta .btn-primary {
  box-shadow: 0 2px 12px var(--yellow-glow);
  border: 1px solid var(--yellow-btn-border);
}

.hero-cta .btn-primary:hover {
  box-shadow: 0 3px 14px var(--yellow-glow);
}

.hero-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cta .btn-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll:hover { color: var(--yellow); }

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--yellow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 234, 0, 0.22);
  background: var(--surface-marquee);
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-track .dot { color: var(--yellow); font-size: 0.5rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats */
.stats {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-figure {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
}

.stat-value {
  display: inline;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.stat-suffix {
  display: inline;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  margin-left: 0.02em;
}

.stat-infinity { font-size: clamp(2.5rem, 6vw, 3.5rem); }

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Salon showcase */
.salon-showcase {
  padding: 0;
  overflow: hidden;
}

.salon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 0;
}

.salon-media {
  position: relative;
  overflow: hidden;
  width: min(100%, 520px);
  max-height: min(400px, 48vh);
  aspect-ratio: 4 / 3;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto;
  justify-self: center;
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.salon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 8s var(--ease);
}

.salon-showcase:hover .salon-media img { transform: scale(1.06); }

.salon-media-glow {
  position: absolute;
  inset: 0;
  background: var(--overlay-salon-side);
  pointer-events: none;
}

.salon-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--bg-alt);
  border-left: 3px solid var(--yellow);
}

.salon-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.salon-list {
  list-style: none;
  margin-bottom: 2rem;
}

.salon-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--text);
}

.salon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

/* Card numbers */
.card-num {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--yellow);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.card-highlight {
  border-color: var(--border-yellow);
  background: linear-gradient(145deg, rgba(255, 234, 0, 0.06), var(--bg-card));
}

/* Premium band */
.premium-band {
  padding: 4rem 0;
  background: var(--surface-premium-band);
  border-block: 1px solid rgba(255, 234, 0, 0.22);
}

.premium-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.premium-band h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.premium-band p {
  color: var(--text-muted);
  max-width: 32rem;
}

/* Before/After slider */
.ba-slider { margin-bottom: 2rem; }

.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.ba-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--border-yellow);
  aspect-ratio: 16/9;
  cursor: ew-resize;
  user-select: none;
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before { position: relative; z-index: 1; }

.ba-after {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  width: 50%;
  border-right: 2px solid var(--yellow);
}

.ba-after .ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  margin-left: -2px;
  background: var(--yellow);
  z-index: 4;
  box-shadow: 0 0 20px var(--yellow);
  pointer-events: none;
}

.ba-handle::after {
  content: "◆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #0a0a0a;
  border-radius: 50%;
  font-size: 0.75rem;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

.ba-hint {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.compare-grid-mini {
  margin-top: 0;
}

.compare-grid-mini .compare { aspect-ratio: 16/10; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: var(--surface-sticky-cta);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta-btn {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  box-shadow: 0 -4px 32px rgba(255, 234, 0, 0.2);
}

@media (min-width: 901px) {
  .sticky-cta { display: none; }
}

.eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 1rem;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; text-align: center;
}

.trust-item strong {
  display: block; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.2rem;
}

.trust-item span { font-size: 0.8rem; color: var(--text-muted); }

/* ── Section heads (white on dark band) ── */
.section { padding: 0 0 4rem; }

.section-alt { background: var(--bg-alt); }

.section-head {
  padding: 3rem 0 2.5rem;
  margin-bottom: 2.5rem;
}

.band-dark,
.band-accent,
.cta-band,
.premium-band,
.marquee {
  position: relative;
}

.band-dark {
  background: var(--surface-band-dark);
  border-bottom: 3px solid rgba(255, 234, 0, 0.22);
}

.band-accent {
  background: var(--surface-band-accent);
  border-bottom: 3px solid rgba(255, 234, 0, 0.22);
}

/* Knight-Rider-Scanner auf gelben Linien */
.band-dark::after,
.band-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(22vw, 220px);
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 249, 168, 0.35) 18%,
    #fffef5 50%,
    rgba(255, 249, 168, 0.35) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 10px var(--yellow),
    0 0 22px rgba(255, 234, 0, 0.55),
    0 0 36px rgba(255, 234, 0, 0.25);
  pointer-events: none;
  z-index: 3;
  animation: knight-rider-sweep 2.75s ease-in-out infinite alternate;
  will-change: transform;
}

.cta-band {
  background: var(--surface-cta-band);
  border-block: 3px solid rgba(255, 234, 0, 0.22);
  padding: 4rem 0;
  text-align: center;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  width: min(22vw, 220px);
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 249, 168, 0.35) 18%,
    #fffef5 50%,
    rgba(255, 249, 168, 0.35) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 10px var(--yellow),
    0 0 22px rgba(255, 234, 0, 0.55);
  pointer-events: none;
  z-index: 3;
  will-change: transform;
}

.cta-band::before {
  top: -1px;
  animation: knight-rider-sweep 3.2s ease-in-out infinite alternate-reverse;
}

.cta-band::after {
  bottom: -1px;
  animation: knight-rider-sweep 2.75s ease-in-out infinite alternate;
}

.premium-band::before,
.premium-band::after,
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  left: 0;
  width: min(18vw, 180px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 234, 0, 0.5),
    #fffef0,
    rgba(255, 234, 0, 0.5),
    transparent
  );
  box-shadow: 0 0 8px var(--yellow), 0 0 16px rgba(255, 234, 0, 0.4);
  pointer-events: none;
  z-index: 2;
  will-change: transform;
}

.premium-band::before,
.marquee::before {
  top: 0;
  animation: knight-rider-sweep 3.4s ease-in-out infinite alternate-reverse;
}

.premium-band::after,
.marquee::after {
  bottom: 0;
  animation: knight-rider-sweep 3s ease-in-out infinite alternate;
}

@keyframes knight-rider-sweep {
  0% {
    left: 0;
    transform: translateX(-100%);
  }
  100% {
    left: 100%;
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .band-dark::after,
  .band-accent::after,
  .cta-band::before,
  .cta-band::after,
  .premium-band::before,
  .premium-band::after,
  .marquee::before,
  .marquee::after {
    animation: none;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.85;
  }
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-head .eyebrow { margin-bottom: 0.75rem; }

.section-body { padding-bottom: 1rem; }

.section-cta-wrap { text-align: center; margin-top: 2.5rem; }

/* ── Cards ── */
.card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s,
    box-shadow 0.45s,
    background 0.35s;
}

.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 234, 0, 0.08) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-yellow);
  background: linear-gradient(180deg, rgba(255, 234, 0, 0.05) 0%, var(--bg-card-hover) 100%);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 0 20px var(--yellow-dim);
}

.card:hover::before { transform: scaleX(1); }
.card:hover::after { transform: translateX(120%); }

.card:active { transform: translateY(-6px) scale(1.01); }

.card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.6rem;
}

.card p { font-size: 0.9rem; color: var(--text-muted); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card-package { display: flex; flex-direction: column; position: relative; }

.card-package.card-featured {
  overflow: visible;
  margin-top: 0.75rem;
}

.card-featured {
  border-color: var(--yellow);
  background: linear-gradient(180deg, rgba(255, 234, 0, 0.06) 0%, var(--bg-card) 40%);
}

.pkg-tag {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 0.5rem;
}

.pkg-badge {
  position: absolute;
  top: -0.65rem;
  right: 1rem;
  z-index: 3;
  background: var(--yellow);
  color: #0a0a0a;
  -webkit-text-fill-color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  line-height: 1.2;
}

.card-package .pkg-badge {
  color: #0a0a0a;
}

.pkg-desc { margin-bottom: 1rem; flex-grow: 0; }

.pkg-list {
  list-style: none; margin-bottom: 1.25rem; flex-grow: 1;
}

.pkg-list li {
  font-size: 0.85rem; color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1rem;
  position: relative; border-bottom: 1px solid var(--border);
}

.pkg-list li::before {
  content: ""; position: absolute; left: 0; top: 0.85em;
  width: 4px; height: 4px; background: var(--yellow); border-radius: 50%;
}

.pkg-price {
  font-size: 0.8rem; font-weight: 600;
  color: var(--champagne); margin-bottom: 1rem;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.why-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-yellow);
  background: linear-gradient(180deg, rgba(255, 234, 0, 0.04) 0%, var(--bg-card-hover) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), 0 0 18px var(--yellow-dim);
}

.why-num {
  font-size: 2rem; font-weight: 800;
  color: var(--yellow); opacity: 0.5;
  line-height: 1; margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}

.why-card p { font-size: 0.88rem; color: var(--text-muted); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; list-style: none;
}

.step {
  text-align: center; padding: 2rem 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s;
}

.step:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--border-yellow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--yellow-dim);
}

.step-nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--yellow); color: #0a0a0a;
  font-size: 1.25rem; font-weight: 800;
  border-radius: 50%; margin-bottom: 1rem;
}

.step h3 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}

.step p { font-size: 0.85rem; color: var(--text-muted); }

/* Compare */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}

.compare {
  position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: border-color 0.35s, box-shadow 0.4s;
}

.compare:hover {
  border-color: var(--border-yellow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.zoomable-trigger {
  display: block; width: 100%; padding: 0; border: none;
  background: none; cursor: zoom-in; position: relative;
}

.compare img,
.zoomable-trigger img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.compare:hover img,
.zoomable:hover .zoomable-trigger img { transform: scale(1.06); }

.zoom-hint {
  position: absolute; bottom: 1rem; right: 1rem;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #0a0a0a; background: var(--yellow);
  padding: 0.35rem 0.65rem; border-radius: 3px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.zoomable:hover .zoom-hint {
  opacity: 1; transform: translateY(0);
}

.compare figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.15rem;
  align-items: start;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.35s, box-shadow 0.4s;
}

.gallery-item:hover {
  border-color: var(--border-yellow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.gallery-item .zoomable-trigger {
  display: block;
  width: 100%;
  line-height: 0;
}

.gallery-item .zoomable-trigger img,
.gallery-item video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.gallery-item:hover .zoomable-trigger img { transform: scale(1.06); }

/* Großes Tile nur Desktop: Bild füllt 2 Zeilen, sonst keine Leerfläche */
@media (min-width: 901px) {
  .gallery-item.g-large {
    grid-row: span 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .gallery-item.g-large .zoomable-trigger {
    flex: 1;
    display: flex;
    min-height: 0;
  }

  .gallery-item.g-large .zoomable-trigger img {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
  }
}

.gallery-item figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--overlay-caption-end) 100%);
  border-top: 1px solid var(--border);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review p {
  font-size: 0.95rem; font-style: italic;
  color: var(--text); margin-bottom: 1rem;
}

.review footer {
  font-size: 0.8rem; color: var(--text-muted);
}

.stars { color: var(--yellow); margin-left: 0.5rem; letter-spacing: 0.1em; }

/* FAQ */
.faq-list { max-width: none; }

.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq summary {
  padding: 1.15rem 1.25rem;
  font-size: 0.9rem; font-weight: 600;
  color: var(--white); cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+"; float: right;
  color: var(--yellow); font-size: 1.25rem; font-weight: 400;
}

.faq[open] summary::after { content: "−"; }

.faq p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.88rem; color: var(--text-muted);
}

.cta-band h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p { color: var(--text-muted); margin-bottom: 1.5rem; }

.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem; align-items: start;
}
.contact-grid .contact-verify-panel,
.contact-grid .contact-success {
  grid-column: 2;
}

.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }

.contact-list { list-style: none; }

.contact-list li { margin-bottom: 1.25rem; }

.contact-list strong {
  display: block; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 0.25rem;
}

.contact-list a, .contact-list span { color: var(--text); font-size: 1rem; }

.contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.field { margin-bottom: 1rem; }

.field label {
  display: block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%; padding: 0.85rem 1rem;
  font-family: var(--font); font-size: 0.95rem;
  color: var(--white); background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-dim);
}

.field textarea { resize: vertical; min-height: 100px; }

.checkbox {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 1.25rem; cursor: pointer;
}

.checkbox input { margin-top: 0.2rem; accent-color: var(--yellow); }

.form-msg { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; }
.form-msg.ok { color: #6fcf97; }
.form-msg.error { color: #f08080; }
.contact-verify-panel,
.contact-success { margin-top: 1.5rem; }
.contact-verify-title { font-size: 1.25rem; margin: 0 0 0.75rem; }
.contact-verify-intro { margin: 0 0 1.25rem; color: var(--text-muted, #b8b8b8); line-height: 1.5; }
.contact-verify-hint { margin-top: 1rem; font-size: 0.9rem; }
.link-btn {
  background: none; border: none; padding: 0;
  color: var(--accent, #f5c518); cursor: pointer;
  text-decoration: underline; font: inherit;
}
.is-hidden { display: none !important; }

/* E-Mail-Bestätigung – Kontakt & Terminplaner (einheitlich) */
.detailer-verify-title {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}
.detailer-verify-lead {
  margin: 0 0 1.25rem;
  line-height: 1.55;
  color: var(--text-muted, #b8b8b8);
}
.detailer-verify-lead strong {
  color: var(--yellow, #ffea00);
  font-weight: 700;
}
.detailer-verify-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.detailer-verify-field > span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow, #ffea00);
  margin-bottom: 0.35rem;
}
.detailer-verify-field em {
  font-style: normal;
  color: #e85d5d;
}
.detailer-verify-code {
  width: 100%;
  max-width: 16rem;
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  text-align: left;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
}
.detailer-verify-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.25rem;
}
.termin-planner .detailer-verify-lead {
  color: var(--tp-muted, rgba(255, 255, 255, 0.55));
}
.termin-planner .detailer-verify-field > span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--tp-muted, rgba(255, 255, 255, 0.55));
}
.termin-planner .detailer-verify-code {
  max-width: 14rem;
  background: #000;
  border-color: var(--tp-border, rgba(255, 255, 255, 0.2));
  color: var(--tp-text, #f5f5f5);
}

/* Date picker (Kontakt) */
/* Kalender-Popover darf nicht von .card { overflow: hidden } abgeschnitten werden */
.card.contact-form,
.contact-form.card {
  overflow: visible;
}

.field-date {
  position: relative;
  overflow: visible;
  z-index: 2;
}

.field-date .date-picker {
  position: relative;
}

.date-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--white);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.date-picker-trigger:hover,
.date-picker-trigger:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-dim);
}

.date-picker-value.is-placeholder {
  color: var(--text-muted);
}

.date-picker-icon {
  display: flex;
  color: var(--yellow);
  flex-shrink: 0;
}

.date-picker-popover {
  position: absolute;
  z-index: 300;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  min-width: 280px;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--surface-popover);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.date-picker-popover[hidden] {
  display: none !important;
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.date-picker-month {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}

.date-picker-nav {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--yellow);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.date-picker-nav:hover {
  background: var(--yellow-dim);
  border-color: var(--border-yellow);
}

.date-picker-weekdays,
.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.date-picker-weekdays {
  margin-bottom: 0.35rem;
}

.date-picker-weekdays span {
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.date-picker-day {
  aspect-ratio: 1;
  min-height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.date-picker-day:hover:not(:disabled):not(.is-empty) {
  background: var(--yellow-dim);
  color: var(--yellow);
}

.date-picker-day.is-today {
  border: 1px solid rgba(255, 234, 0, 0.45);
}

.date-picker-day.is-selected {
  background: var(--yellow);
  color: #0a0a0a;
}

.date-picker-day.is-disabled,
.date-picker-day:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.date-picker-day.is-empty {
  pointer-events: none;
}

/* Footer */
.footer {
  padding: 2rem 0; border-top: 1px solid var(--border);
  background: var(--surface-footer);
}

.footer-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem;
}

.footer-logo { height: 36px; opacity: 0.9; }

.footer:not(.footer-premium) p { font-size: 0.8rem; color: var(--text-muted); }

.footer nav { display: flex; gap: 1.5rem; }

.footer nav a {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}

/* Lightbox – über Header (10050), Mobile-Nav (10250) und Sticky-CTA (10100) */
.lightbox {
  position: fixed; inset: 0; z-index: 11000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute; inset: 0; z-index: 11000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 11002;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 12, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}

.lightbox-close span {
  display: block;
  margin-top: -0.12em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
  transform: scale(1.08);
}

.lightbox-inner {
  position: relative; z-index: 11001;
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  animation: lightboxIn 0.35s var(--ease);
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  max-width: 100%; max-height: 82vh;
  width: auto; height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  text-align: center; margin-top: 1rem;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow);
}

body.lightbox-open { overflow: hidden; }

/* Reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
}

.reveal.visible {
  animation: fadeUp 0.7s var(--ease) forwards;
}

.services-grid .card:nth-child(1) { animation-delay: 0.05s; }
.services-grid .card:nth-child(2) { animation-delay: 0.1s; }
.services-grid .card:nth-child(3) { animation-delay: 0.15s; }

/* Responsive */
@media (max-width: 900px) {
  .cinematic-band {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 0 2.5rem;
  }

  .cinematic-band-bg {
    grid-column: 1;
    grid-row: 1;
    max-height: min(220px, 38vh);
    aspect-ratio: 21 / 9;
    order: 1;
  }

  .cinematic-band-inner {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    order: 2;
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .salon-grid { grid-template-columns: 1fr; }
  .salon-media {
    max-height: min(320px, 42vh);
    margin: 0;
    border-radius: 0;
    aspect-ratio: 16 / 10;
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-large { grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-verify-panel,
  .contact-grid .contact-success {
    grid-column: 1;
  }
  .packages-grid { grid-template-columns: 1fr; }
  .premium-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 1101px) {
  .nav-toggle,
  .nav-backdrop { display: none !important; }

  .nav-item--home-mobile {
    display: none !important;
  }

  .header-inner .main-nav {
    display: block;
    position: static;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    width: auto;
    padding: 0;
    margin-left: auto;
    margin-right: 0.65rem;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    flex-shrink: 1;
    min-width: 0;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 0.5rem 1rem;
  }

  .header-actions {
    display: flex;
    align-items: center;
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }

  .site-header {
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--surface-header);
  }

  .header-inner {
    position: relative;
    z-index: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .header-actions {
    margin-left: auto;
    display: flex;
  }

  .logo-link {
    flex-shrink: 0;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 10053;
    flex-shrink: 0;
    min-width: 48px;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
  }

  #site-header .nav-backdrop,
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10040;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-backdrop[hidden] {
    display: none !important;
  }

  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 88vw);
    max-width: 100%;
    z-index: 10250;
    padding-top: calc(var(--header-h) + 1rem);
    background: var(--surface-nav-mobile);
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease), visibility 0.35s;
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.15);
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open #app,
  body.nav-open #site-main {
    z-index: 0;
    pointer-events: none;
  }

  body.nav-open .hero,
  body.nav-open .hero-bg,
  body.nav-open .hero-img,
  body.nav-open .hero-cinematic,
  body.nav-open .hero-overlay,
  body.nav-open .hero-inner {
    z-index: 0 !important;
    isolation: auto !important;
  }

  body.nav-open .hero-img {
    will-change: auto;
  }

  body.nav-open .scroll-progress {
    z-index: 10040;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav li { border-bottom: 1px solid var(--border); }

  .main-nav a {
    display: block;
    padding: 1.05rem 0;
    font-size: 1rem;
  }

  .main-nav .nav-cta {
    margin-top: 1rem;
    text-align: center;
    padding: 1.1rem !important;
    font-size: 0.95rem;
  }

  .nav-theme-li {
    border-bottom: none;
    display: flex;
    justify-content: center;
    padding: 0.75rem 0 0.25rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .logo { height: 44px; }

  .hero-benefits { flex-direction: column; }
  .hero-benefits li { width: 100%; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; min-height: 52px; }

  .contact-form .form-row { grid-template-columns: 1fr; }

  .packages-grid { grid-template-columns: 1fr; }

  .card:hover,
  .why-card:hover,
  .step:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .lightbox-close {
    top: 0.75rem; right: 0.75rem;
    width: 48px; height: 48px;
  }

  .zoom-hint { opacity: 1; transform: none; font-size: 0.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none !important; }
  .lux-benefit.reveal.visible::before,
  .lux-benefit:hover::before { transform: scaleX(1); }
  .lux-benefit.reveal.visible,
  .lux-benefit:hover { border-color: var(--border-yellow); }
  .card:hover, .step:hover, .why-card:hover { transform: none; }
}

/* —— Modulare Seiten / Navigation —— */
.main-nav a.is-active {
  color: var(--yellow);
}
.main-nav a.is-active::after {
  width: 100%;
  opacity: 1;
}

.section-intro {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-hero .section-head h1,
.page-hero-band h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.page-hero .section-head .section-intro,
.page-hero-band .section-intro {
  max-width: none;
}

#app > .section:first-child:not(.hero),
#app > .premium-band.page-hero-band:first-child,
#site-main > .section:first-child:not(.hero),
#site-main > .premium-band.page-hero-band:first-child {
  padding-top: calc(var(--header-h) + 2rem);
}

#gallery-albums-mount:empty {
  min-height: 0;
}

#gallery-albums-mount:not(:empty) {
  margin-bottom: 0;
}

.page-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.page-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-hub-card:hover {
  border-color: var(--border-yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.page-hub-card.page-hub-featured {
  border-color: var(--border-yellow);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(255, 234, 0, 0.06) 100%);
}

.page-hub-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
}

.page-hub-card h3 {
  font-size: 1.15rem;
  color: var(--white);
}

.page-hub-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.page-hub-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  margin-top: 0.25rem;
}

.section-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.legal-page {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4rem;
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-page h1 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  color: var(--heading);
}

.legal-page .eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.legal-content {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.legal-content p,
.legal-content li {
  font-size: inherit;
  color: inherit;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content a {
  color: var(--yellow);
}

.legal-content a:hover {
  color: var(--text);
}

.legal-intro {
  font-size: inherit;
  color: inherit;
  margin: -0.5rem 0 1.25rem;
}

.legal-hint-top {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.legal-list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.legal-list li {
  margin-bottom: 0.35rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.legal-content h2 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 1.75rem 0 0.5rem;
  color: var(--heading);
}

.legal-content h3 {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  margin: 1rem 0 0.4rem;
}

.legal-hint {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--yellow);
  background: var(--yellow-dim);
  font-size: inherit;
  color: inherit;
}

.contact-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* —— Foto-Alben (Arbeit / Raumduft) —— */
.photo-album-section {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.photo-carousel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-main {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--surface-carousel);
}

.carousel-slide {
  margin: 0;
  min-width: 0;
}

.carousel-slide .zoomable-trigger {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-main-img {
  width: 100%;
  max-height: min(72vh, 640px);
  object-fit: contain;
  background: var(--surface-carousel-img);
  display: block;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-yellow);
  background: rgba(0, 0, 0, 0.5);
  color: var(--yellow);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-btn:hover {
  background: var(--yellow);
  color: #0a0a0a;
  transform: scale(1.06);
}

.carousel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--border);
}

.carousel-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.carousel-counter {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.carousel-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--border);
}

.carousel-thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 58px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
  scroll-snap-align: start;
  background: none;
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-thumb.is-active,
.carousel-thumb:hover {
  opacity: 1;
  border-color: var(--yellow);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.album-grid-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.album-grid-item:hover {
  border-color: var(--border-yellow);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.album-grid-item .zoomable-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  position: relative;
  line-height: 0;
}

.album-grid-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  vertical-align: top;
  transition: transform 0.35s var(--ease);
}

.album-grid-item:hover img {
  transform: scale(1.05);
}

.home-gallery-teaser {
  padding: 4.5rem 0;
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.home-gallery-teaser-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.home-gallery-teaser-copy {
  max-width: 40rem;
}

.home-gallery-teaser h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.home-gallery-teaser p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.home-gallery-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.home-gallery-strip a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  min-height: clamp(160px, 22vw, 280px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.home-gallery-strip a:hover {
  border-color: var(--border-yellow);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--yellow-dim);
}

.home-gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 11002;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.lightbox-nav:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-counter {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}

/* ── Cinematic „Veredelt“-Band (Startseite) ── */
.cinematic-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  width: min(1140px, 92vw);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  overflow: hidden;
  background: var(--bg);
}

.cinematic-band-bg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 0;
  width: 100%;
  max-height: min(300px, 42vh);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.cinematic-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.85;
}

.cinematic-band-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
}

.cinematic-band-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 65% 35%, rgba(255, 234, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cinematic-band-inner {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  max-width: 640px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.cinematic-band h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cinematic-band-text {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.35rem;
  max-width: 36rem;
}

.cinematic-band-actions {
  margin-bottom: 1.25rem;
}

.cinematic-band-actions .btn-primary {
  padding: 1rem 2rem;
  box-shadow: 0 4px 24px rgba(255, 234, 0, 0.2);
}

.cinematic-video-placeholder {
  margin-top: 0.5rem;
  aspect-ratio: 2 / 1;
  max-width: 360px;
  max-height: 150px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 234, 0, 0.35);
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-video-placeholder span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-before-after .ba-slider,
.gallery-before-after .ba-slider {
  max-width: 900px;
  margin-inline: auto;
}

.home-before-after .section-cta-wrap {
  margin-top: 1.5rem;
  text-align: center;
}

.gallery-before-after {
  padding-bottom: 4rem;
}

.gallery-before-after .section-head {
  margin-bottom: 2rem;
}

/* ── Footer Erweiterung ── */
.footer-contact {
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.footer-contact a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.footer-social-placeholder {
  pointer-events: none;
  opacity: 0.65;
}

/* Stationen – YouTube-Embeds */
.stationen-videos {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: 1rem;
}

.station-video-title {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.station-video-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.video-fallback-link {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.video-fallback-link a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.video-fallback-link a:hover {
  color: var(--heading);
}

.station-spotify-banner {
  display: block;
  max-width: 960px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}

.station-spotify-banner:hover {
  transform: translateY(-2px);
  border-color: var(--border-yellow);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.station-spotify-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.spotify-embed {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #121212;
  box-shadow: var(--shadow);
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: 0;
}

.station-spotify-profile-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  text-align: center;
}

.station-spotify-profile-cta .btn.btn-primary {
  color: #0a0a0a;
  text-decoration: none;
  background: var(--yellow-btn);
  border-color: var(--yellow-btn-border);
}

.station-spotify-profile-cta .btn.btn-primary:hover {
  color: #0a0a0a;
  text-decoration: none;
  background: var(--yellow-btn-hover);
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #0a0a0a;
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed--placeholder {
  padding-bottom: 56.25%;
  background: var(--bg-alt);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-card) 100%);
}

.video-placeholder-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.video-placeholder-hint {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Partner-Bereich (Common Ninja) */
.partner-section.commonninja-wrap {
  padding: 0 0 3.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.partner-section .section-head {
  margin-bottom: 0;
}

.partner-section .commonninja-inner {
  padding-top: 2rem;
}

/* Common Ninja Widget (Seitenende) */
.commonninja-wrap {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.commonninja-inner {
  max-width: 100%;
}

.commonninja_component {
  min-height: 120px;
  width: 100%;
}

/* Projektpartner-Seite */
.partner-page .section-body {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.partner-page .partner-group {
  margin-bottom: 3rem;
}

.partner-page .partner-group:last-of-type {
  margin-bottom: 0;
}

.partner-page .partner-group-head h2 {
  font-family: var(--font);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.partner-page .partner-group + .partner-group {
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.partner-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.partner-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 234, 0, 0.04) 0%, var(--bg-card) 38%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s,
    box-shadow 0.35s,
    background 0.3s;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-yellow);
  background: linear-gradient(180deg, rgba(255, 234, 0, 0.07) 0%, var(--bg-card-hover) 42%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem;
  text-decoration: none;
  color: var(--text);
}

.partner-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  margin-bottom: 1.1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.partner-card-logo img {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card-logo img.is-broken,
.partner-card-logo img[hidden] {
  display: none !important;
}

.partner-card-logo:not(:has(img:not(.is-broken):not([hidden]))) {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.partner-card h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
  color: var(--heading);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.partner-card p {
  flex: 1;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.partner-card-url {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.48rem 0.9rem;
  background: var(--yellow-btn);
  color: #0a0a0a;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid var(--yellow-btn-border);
  border-radius: 6px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.partner-card:hover .partner-card-url {
  background: var(--yellow-btn-hover);
  border-color: var(--yellow-btn-border);
}

.partner-grid--compact .partner-card h3 {
  margin-bottom: 0.85rem;
}

.partner-page .section-cta-wrap {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.geschichte-partners {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.geschichte-partners-head {
  margin-bottom: 2rem;
}

.geschichte-partners-head .section-intro {
  margin-top: 0.75rem;
}

.geschichte-partners-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.partner-page--embedded .partner-group:first-child {
  padding-top: 0;
  border-top: none;
}

.partner-page--embedded .partner-group + .partner-group {
  padding-top: 0.25rem;
}

.partner-cards-mount[aria-busy="true"]:empty {
  min-height: 12rem;
}

@media (max-width: 640px) {
  .partner-page .partner-group {
    margin-bottom: 2.25rem;
  }

  .partner-card-link {
    padding: 1.15rem;
  }

  .partner-card-logo {
    min-height: 76px;
    padding: 0.75rem 0.85rem;
  }
}
