/* ============================================================
   Pure Events Saar — Mirror Booth Erlebnisse
   SaaS-Stil: Dark Theme, Champagner-Gold auf Anthrazit, Glasmorphismus
   Typo: Space Grotesk (Display) + Inter (Body)
   Signatur: Floating Glass Panels + Gradient Glow + Motion
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #1F2328;
  --bg-elevated: #262B31;
  --bg-elevated-2: #2E343B;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.24);
  --text: #F7F3EE;
  --text-muted: #B8BAC0;
  --text-dim: #7C7F87;
  --white: #FFFFFF;

  --violet: #D6B37A;
  --blue: #B8934F;
  --cyan: #F0DDB8;
  --gradient: linear-gradient(135deg, #E8CC9A, #B8934F);
  --gradient-text: linear-gradient(90deg, #EFD9AE, var(--blue));

  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --glow: 0 20px 70px -18px rgba(214, 179, 122, 0.5);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --max-w: 74rem;
  --space-section: clamp(4.5rem, 10vw, 8rem);
  --chamfer: 0px;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(60rem 40rem at 85% -10%, rgba(214, 179, 122, 0.16), transparent 60%),
    radial-gradient(50rem 36rem at -10% 30%, rgba(184, 147, 79, 0.12), transparent 60%);
  background-attachment: fixed;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

strong { font-weight: 600; color: var(--text); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(214, 179, 122, 0.4); color: var(--white); }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { padding-block: var(--space-section); }

.muted { color: var(--text-muted); }

/* ---------- Eyebrow (Gradient-Pill-Badge) / section headers / divider ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px 2px rgba(214, 179, 122, 0.7);
}

.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::after { content: none; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.gold-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  margin: 0 auto;
  border: 0;
  padding: 0;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: var(--border-strong);
}
.gold-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(214, 179, 122, 0.65);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(214, 179, 122, 0.85);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(184, 147, 79, 0.12); }

.btn-light {
  background: var(--surface-strong);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(12px);
}
.btn-light:hover { border-color: var(--cyan); background: rgba(240, 221, 184, 0.14); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(37, 211, 102, 0.7);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(37, 211, 102, 0.85);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn:active { transform: translateY(1px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: opacity 0.25s ease;
}
.text-link:hover { opacity: 0.75; }
.text-link::after { content: "→"; font-size: 0.9em; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(31, 35, 40, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
}

.brand {
  text-decoration: none;
  line-height: 1.05;
  display: block;
}
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.brand .brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-top: 0.2rem;
}

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-muted);
  padding-block: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.main-nav a:not(.btn):hover { color: var(--text); }
.main-nav a:not(.btn)[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--blue);
}
.main-nav .btn { padding: 0.75rem 1.5rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 80;
}
.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    background: var(--bg);
    transform: translateY(-104%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 70;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a:not(.btn) { font-size: 1.05rem; }
  .main-nav .btn { margin-top: 1rem; padding: 1rem 2.1rem; }
}

/* ---------- Floating Glass Panel (Signatur): abgerundet, Glow, Bewegung ---------- */

.arch {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  isolation: isolate;
  animation: floaty 6s ease-in-out infinite;
}
.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Glas-Overlay: leichter Verlauf für Tiefe */
.arch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(214, 179, 122, 0.22), transparent 45%);
  z-index: 2;
  pointer-events: none;
}
/* Glanz-Sweep beim Hover */
.arch::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -80%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  z-index: 3;
  pointer-events: none;
  transition: left 0.9s ease;
}
.arch:hover::after, a:hover > .arch::after { left: 160%; }

.arch-frame {
  padding: 3px;
  border-radius: 30px;
  background: var(--gradient);
}
.arch-frame .arch { animation: none; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Product Spotlight (freigestelltes Produktfoto) ---------- */

.product-spotlight {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: radial-gradient(120% 120% at 30% 10%, rgba(214, 179, 122, 0.25), transparent 55%), var(--bg-elevated-2);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem 1.5rem 0;
}
.product-spotlight::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(184, 147, 79, 0.5), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.product-spotlight img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 96%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.6));
  animation: floaty 7s ease-in-out infinite;
}

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5.5rem) var(--space-section);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: clamp(320px, 40vw, 620px);
  height: clamp(320px, 40vw, 620px);
  background: radial-gradient(circle, rgba(214, 179, 122, 0.35), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.4rem; }
.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hero-note::before { content: "✦"; color: var(--cyan); font-size: 0.7rem; }
.hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.8rem;
  margin-top: 1.6rem;
}
.hero-quicklinks-label { font-size: 0.85rem; color: var(--text-muted); }
.hero-quicklinks a {
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hero-quicklinks a:hover { border-color: var(--blue); background: rgba(184, 147, 79, 0.12); }

/* Sprungziele nicht hinter dem Sticky-Header verstecken */
main section[id] { scroll-margin-top: 100px; }

.hero-visual { position: relative; }
.hero-visual .arch { aspect-ratio: 3 / 4.1; }

.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slideshow .hero-slide.is-active { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide { transition: none; }
}
.hero-badge {
  position: absolute;
  bottom: clamp(1rem, 4vw, 2.5rem);
  left: clamp(-2.5rem, -3vw, -1rem);
  background: rgba(18, 18, 31, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 1.1rem 1.5rem;
  max-width: 15rem;
  box-shadow: var(--shadow);
}
.hero-badge .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-badge .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { max-width: 26rem; margin-inline: auto; }
  .hero-badge { left: -0.5rem; }
}

/* ---------- Trustbar ---------- */

.trustbar {
  border-block: 1px solid var(--border);
  padding-block: 1.8rem;
  background: var(--bg-elevated);
}
.trustbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.trustbar li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  box-shadow: 0 0 10px 1px rgba(214, 179, 122, 0.6);
}
@media (max-width: 920px) {
  .trustbar ul { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .trustbar ul { grid-template-columns: 1fr; gap: 0.9rem; }
}

/* ---------- Anlass-Karten (Glass Cards) ---------- */

.anlass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.anlass-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.4rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.anlass-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}
.anlass-card .arch { aspect-ratio: 3 / 3.4; margin-bottom: 1.4rem; animation: none; border-radius: 18px; }
.anlass-card h3 { margin-bottom: 0.5rem; transition: color 0.25s ease; }
.anlass-card p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 0.9rem; flex-grow: 1; }
.anlass-card .card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}
@media (max-width: 920px) { .anlass-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .anlass-grid { grid-template-columns: 1fr; max-width: 24rem; margin-inline: auto; } }

/* ---------- Dunkle Sektion (vertieft) ---------- */

.section-dark {
  background: var(--bg-elevated);
  color: var(--text);
  position: relative;
}
.section-dark .eyebrow { }
.section-dark .section-head p { color: var(--text-muted); }
.section-dark h2, .section-dark h3 { color: var(--text); }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
.compare-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.6rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.compare-item:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.compare-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.compare-item p {
  color: var(--text-muted);
  font-size: 0.97rem;
}
@media (max-width: 920px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .compare-grid { grid-template-columns: 1fr; } }

.dark-cta { margin-top: clamp(2.5rem, 5vw, 4rem); text-align: center; }

/* ---------- Galerie ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: end;
}
.gallery-grid .arch { aspect-ratio: 3 / 4; animation: none; }
.gallery-grid > figure { margin: 0; }
.gallery-grid > figure:nth-child(even) { transform: translateY(clamp(1rem, 3vw, 2.5rem)); }
.gallery-grid figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: center;
}
.gallery-cta { margin-top: clamp(3rem, 6vw, 4.5rem); text-align: center; }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Galerie-Seite: größeres Raster */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
.gallery-page-grid > figure { margin: 0; }
.gallery-page-grid .arch { aspect-ratio: 3 / 3.8; animation: none; }
.gallery-page-grid figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}
@media (max-width: 720px) { .gallery-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-page-grid { grid-template-columns: 1fr; } }

/* ---------- Ablauf / Steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 1.75rem);
  counter-reset: step;
}
.step {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.6rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.step:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }
@media (max-width: 920px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }

/* Ablauf-Seite: vertikale Timeline */
.timeline { max-width: 46rem; }
.timeline .step { margin-bottom: 1.25rem; }

/* ---------- Pakete ---------- */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
}
.package {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.package:hover { border-color: var(--border-strong); box-shadow: var(--glow); transform: translateY(-6px); }
.package.is-featured {
  background: linear-gradient(180deg, rgba(214, 179, 122, 0.18), rgba(184, 147, 79, 0.08));
  border-color: var(--violet);
  box-shadow: var(--glow);
}
.package.is-featured .package-name,
.package.is-featured h3 { color: var(--text); }
.package.is-featured .package-desc { color: var(--text-muted); }
.package.is-featured li { color: var(--text-muted); }
.package.is-featured li::before { color: var(--cyan); }

.package-flag {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  white-space: nowrap;
}
.package-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}
.package-name { font-size: 1.5rem; margin-bottom: 0.4rem; }
.package-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 0.9rem;
}
.package-desc { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.5rem; }
.package ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex-grow: 1;
}
.package li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.package li:last-child { border-bottom: 0; }
.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
}
.package .btn { width: 100%; }
@media (max-width: 920px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
}

.addons {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--border);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.addon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.addon:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.addon h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.addon p { font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 920px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .addons-grid { grid-template-columns: 1fr; } }

/* ---------- Bewertungen ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.review:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.review .stars {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
}
.review blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.5;
  flex-grow: 1;
}
.review cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.review cite strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
@media (max-width: 920px) { .reviews-grid { grid-template-columns: 1fr; max-width: 32rem; margin-inline: auto; } }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem 1rem;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1.1;
}
.stat .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 560px) { .stats-strip { grid-template-columns: 1fr; gap: 1rem; } }

/* ---------- FAQ (details/summary, Glass Cards) ---------- */

.faq-list { max-width: 46rem; margin-inline: auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding-inline: 1.5rem;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.25s ease;
}
.faq-item summary:hover { color: var(--blue); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 2.5rem 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ---------- Formular ---------- */

.form-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 920px) { .form-section-grid { grid-template-columns: minmax(0, 1fr); } }

.form-aside .eyebrow { margin-bottom: 1rem; }
.form-aside ul { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.form-aside li {
  display: flex;
  gap: 0.8rem;
  padding-block: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.form-aside li::before { content: "✦"; color: var(--cyan); font-size: 0.72rem; padding-top: 0.2rem; }

.inquiry-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  backdrop-filter: blur(16px);
}
.inquiry-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.4rem;
}
.inquiry-form .field.full { grid-column: 1 / -1; }
@media (max-width: 600px) { .inquiry-form .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text);
  border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234F8CFF' fill='none' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(184, 147, 79, 0.25);
}
.field textarea { min-height: 8rem; resize: vertical; }

/* ---------- Pillen (Anlass- & Paket-Auswahl) ---------- */

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill-option {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.pill-option:hover { border-color: var(--blue); color: var(--text); }
.pill-option.is-selected {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 20px -8px rgba(214, 179, 122, 0.6);
}
.pill-option:active { transform: translateY(1px); }
.pill-option:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.form-footer { margin-top: 1.6rem; }
.form-footer .btn { width: 100%; }
.form-footer .form-hint {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

.form-success {
  display: none;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.4rem;
  font-size: 0.95rem;
}
.form-success.is-visible { display: block; }

.form-error {
  display: none;
  border: 1px solid rgba(220, 90, 90, 0.5);
  background: rgba(220, 90, 90, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--text);
}
.form-error.is-visible { display: block; }

/* ---------- Seiten-Hero (Unterseiten) ---------- */

.page-hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: clamp(280px, 36vw, 560px);
  height: clamp(280px, 36vw, 560px);
  background: radial-gradient(circle, rgba(184, 147, 79, 0.3), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.page-hero .lead {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.page-hero .hero-ctas { margin-bottom: 0; }
.page-hero .arch { aspect-ratio: 3 / 3.6; }
@media (max-width: 920px) {
  .page-hero-grid { grid-template-columns: minmax(0, 1fr); }
  .page-hero .arch { max-width: 24rem; margin-inline: auto; }
}
.page-hero.no-visual .page-hero-grid { grid-template-columns: 1fr; }
.page-hero.no-visual .lead { margin-inline: 0; }
.page-hero.centered { text-align: center; }
.page-hero.centered .lead { margin-inline: auto; }
.page-hero.centered .hero-ctas { justify-content: center; }

/* ---------- Duo (Text + Bild) ---------- */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.duo .arch { aspect-ratio: 3 / 3.7; }
.duo.reverse .duo-visual { order: -1; }
.duo h2 { margin-bottom: 1.2rem; }
.duo p { color: var(--text-muted); }
.duo ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.duo ul li {
  display: flex;
  gap: 0.8rem;
  padding-block: 0.45rem;
  font-size: 0.98rem;
}
.duo ul li::before { content: "✦"; color: var(--cyan); font-size: 0.72rem; padding-top: 0.2rem; }
@media (max-width: 920px) {
  .duo { grid-template-columns: minmax(0, 1fr); }
  .duo.reverse .duo-visual { order: 0; }
  .duo .arch { max-width: 24rem; margin-inline: auto; }
}

/* ---------- Feature-Liste (Mirror Booth Seite) ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 1.75rem);
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.feature p { font-size: 0.93rem; color: var(--text-muted); }
@media (max-width: 920px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- CTA-Banner ---------- */

.cta-banner {
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-elevated-2));
  color: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50rem 30rem at 50% 120%, rgba(214, 179, 122, 0.3), transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--text); max-width: 34rem; margin-inline: auto; }
.cta-banner p {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 auto 2.2rem;
}
.cta-banner .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.site-footer .footer-blurb { margin-top: 1.2rem; max-width: 20rem; font-size: 0.9rem; }
.site-footer h4 {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer a { color: var(--text-muted); text-decoration: none; transition: color 0.25s ease; }
.site-footer a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-seo-line {
  margin-top: 1rem;
  font-size: 0.74rem;
  color: var(--text-dim);
  max-width: 46rem;
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky Mobile CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 0.8rem 1.25rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(31, 35, 40, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .sticky-cta-inner { display: flex; gap: 0.7rem; }
.sticky-cta .btn { flex: 1; padding-inline: 1rem; }
@media (max-width: 920px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 0; }
}

/* ---------- Reveal-Animationen ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-inview { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .arch, .arch::after, .product-spotlight img { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Legal / Textseiten ---------- */

.legal-content { max-width: 44rem; padding-block: var(--space-section); }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; }
