/* ============================================
   VOCALPOWER — Design Tokens & Component Styles
   ============================================ */

/* --- DESIGN TOKENS --- */
:root, [data-theme="light"] {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces — warm near-white */
  --color-bg:         #FCFBF9;
  --color-surface:    #FFFFFF;
  --color-surface-2:  #F5F3EF;
  --color-divider:    #E8E6E2;

  /* Text */
  --color-text:       #1A1915;
  --color-text-muted: #6B6A68;
  --color-text-faint: #ACABA9;

  /* Accent — warm champagne */
  --color-accent:       #B8A48C;
  --color-accent-hover: #9E8B73;

  /* CTA */
  --color-cta:      #1A1915;
  --color-cta-text: #FCFBF9;

  /* Semantic */
  --color-urgency: #C0392B;
  --color-success: #27AE60;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 25, 21, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 25, 21, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 25, 21, 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* --- DARK MODE --- */
[data-theme="dark"] {
  --color-bg:         #141312;
  --color-surface:    #1C1B19;
  --color-surface-2:  #242320;
  --color-divider:    #333230;
  --color-text:       #E8E6E2;
  --color-text-muted: #A09E9A;
  --color-text-faint: #6B6A68;
  --color-accent:       #C4B09A;
  --color-accent-hover: #B8A48C;
  --color-cta:      #FCFBF9;
  --color-cta-text: #141312;
  --color-urgency: #E74C3C;
  --color-success: #2ECC71;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:         #141312;
    --color-surface:    #1C1B19;
    --color-surface-2:  #242320;
    --color-divider:    #333230;
    --color-text:       #E8E6E2;
    --color-text-muted: #A09E9A;
    --color-text-faint: #6B6A68;
    --color-accent:       #C4B09A;
    --color-accent-hover: #B8A48C;
    --color-cta:      #FCFBF9;
    --color-cta-text: #141312;
    --color-urgency: #E74C3C;
    --color-success: #2ECC71;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.4);
  }
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-hover); }

h1, h2, h3 { font-family: var(--font-display); color: var(--color-text); }
h1 { font-size: var(--text-3xl); font-weight: 400; }
h2 { font-size: var(--text-2xl); font-weight: 400; }
h3 { font-size: var(--text-xl); font-weight: 400; }

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

.section-pad {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.section-header h2 { margin-bottom: var(--space-3); }
.section-header p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 48ch;
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1.4;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-cta);
  color: var(--color-cta-text);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-divider);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background 300ms, backdrop-filter 300ms, box-shadow 300ms;
}
.site-header.scrolled {
  background: rgba(252, 251, 249, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--color-divider);
}
[data-theme="dark"] .site-header.scrolled {
  background: rgba(20, 19, 18, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .header-inner { padding-inline: var(--space-8); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
}
.nav-desktop a:hover { color: var(--color-text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: transparent;
}
.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text);
}
@media (min-width: 1024px) {
  .hamburger { display: none; }
}
.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta { display: inline-flex; }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: 5rem var(--space-6) var(--space-6);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-family: var(--font-display);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
  text-decoration: none;
}
.mobile-nav .btn {
  margin-top: var(--space-6);
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg) 15%, rgba(252,251,249,0.92) 40%, rgba(252,251,249,0.3) 100%);
}
[data-theme="dark"] .hero-overlay {
  background: linear-gradient(to right, var(--color-bg) 15%, rgba(20,19,18,0.92) 40%, rgba(20,19,18,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-32) var(--space-4) var(--space-16);
  width: 100%;
}
@media (min-width: 768px) {
  .hero-content {
    padding: var(--space-32) var(--space-8) var(--space-16);
    max-width: 60%;
    margin-left: max(var(--space-8), calc((100vw - var(--content-wide)) / 2));
    margin-right: auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(184, 164, 140, 0.12);
  border: 1px solid rgba(184, 164, 140, 0.30);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.trust-bar span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.trust-bar strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.proof-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-8) 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}
@media (min-width: 768px) {
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  font-weight: 400;
}
.proof-item span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   PROBLEM → SOLUTION
   ============================================ */
.problem-solution {
  background: var(--color-bg);
}
.ps-grid {
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .ps-grid { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
}
.ps-col h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}
.ps-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.ps-col li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  line-height: 1.6;
}
.ps-col li svg {
  flex-shrink: 0;
  margin-top: 4px;
}
.ps-problems li svg { color: var(--color-urgency); }
.ps-solutions li svg { color: var(--color-success); }

/* ============================================
   WORKSHOPS / PRICING
   ============================================ */
.workshops { background: var(--color-surface); }
.workshop-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .workshop-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Äußere Karten — etwas kleiner, zentriert, mit deutlicherem Rand */
.workshop-card {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 200ms, transform 200ms;
  text-align: center;
}
.workshop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Linke + rechte Karte: stärkerer Rand, leicht kompakter */
.workshop-grid > .workshop-card:not(.featured) {
  border: 2px solid #D8D4CE;
  transform: scale(0.96);
  transform-origin: center center;
}
.workshop-grid > .workshop-card:not(.featured):hover {
  transform: scale(0.96) translateY(-2px);
  box-shadow: var(--shadow-md);
}
[data-theme="dark"] .workshop-grid > .workshop-card:not(.featured) {
  border-color: #3A3832;
}

/* Featured / Mitte — hervorgehoben */
.workshop-card.featured {
  border: 2px solid var(--color-accent);
  background: var(--color-surface);
  text-align: center;
  z-index: 1;
}
[data-theme="dark"] .workshop-card {
  background: var(--color-surface);
}
[data-theme="dark"] .workshop-card.featured {
  background: var(--color-surface-2);
}

.workshop-badge {
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.workshop-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.workshop-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

/* Preis als Button — schwarz, original Farbschema */
.workshop-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-3) var(--space-6);
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-divider);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.workshop-card.featured .workshop-price-btn {
  border-color: var(--color-accent);
  background: rgba(184,164,140,.08);
}
[data-theme="dark"] .workshop-price-btn {
  background: var(--color-bg);
  border-color: var(--color-divider);
}

.workshop-features {
  list-style: none;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex: 1;
}
.workshop-features li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.workshop-features li svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.workshop-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ============================================
   ADVANTAGES / WHY VOCALPOWER
   ============================================ */
.advantages { background: var(--color-bg); }
.adv-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(3, 1fr); }
}
.adv-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: box-shadow 200ms, transform 200ms;
}
.adv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.adv-icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.adv-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
}
.adv-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--color-surface); }
.testimonial-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}
[data-theme="dark"] .testimonial-card {
  background: var(--color-surface-2);
}
.testimonial-stars {
  color: var(--color-accent);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text);
  flex: 1;
  margin-bottom: var(--space-4);
  font-style: italic;
}
.testimonial-author {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.testimonials-cta {
  text-align: center;
  margin-top: var(--space-8);
}
.testimonials-cta a {
  font-size: var(--text-sm);
  font-weight: 500;
}

/* ============================================
   WORKSHOP ABLAUF
   ============================================ */
.ablauf { background: var(--color-bg); }
.ablauf-steps {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .ablauf-steps { grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
}
.ablauf-step {
  text-align: center;
}
.ablauf-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}
.ablauf-step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
}
.ablauf-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 32ch;
  margin-inline: auto;
}

/* ============================================
   IMAGE BREAK
   ============================================ */
.image-break {
  position: relative;
  height: 50vh;
  min-height: 320px;
  max-height: 500px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 21, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-break-quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  text-align: center;
  padding: var(--space-4);
  max-width: 30ch;
}

/* ============================================
   ÜBER MISCHA
   ============================================ */
.about { background: var(--color-surface); }
.about-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.3fr; gap: var(--space-12); }
}
.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 2/3;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content h2 {
  margin-bottom: var(--space-4);
}
.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.about-cred {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
}
[data-theme="dark"] .about-cred {
  background: var(--color-bg);
}

/* ============================================
   NÄCHSTE TERMINE
   ============================================ */
.termine { background: var(--color-bg); }
.termine-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.termin-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2) var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  align-items: center;
  transition: box-shadow 200ms;
}
.termin-card:hover {
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .termin-card {
    grid-template-columns: max-content 1fr auto auto auto auto;
    gap: var(--space-4);
  }
}
.termin-date {
  font-family: var(--font-display);
  font-size: var(--text-base);
  white-space: nowrap;
}
.termin-title {
  font-weight: 600;
  font-size: var(--text-sm);
}
.termin-time {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.termin-price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  white-space: nowrap;
}
.termin-spots {
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
}
.termin-spots.urgent { color: var(--color-urgency); }
.termin-spots.available { color: var(--color-accent); }

.soldout-bar {
  text-align: center;
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
}
.soldout-bar span {
  text-decoration: line-through;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--color-surface); }
.faq-list {
  max-width: var(--content-default);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--color-divider);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 300ms;
  color: var(--color-text-faint);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1), padding 400ms;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   GESCHENKBUCHUNG
   ============================================ */
.gift-section {
  background: var(--color-surface-2);
  text-align: center;
  padding: var(--space-10) var(--space-4);
}
.gift-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.gift-section p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  margin-inline: auto;
}
.gift-section a {
  font-weight: 500;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--color-cta);
  color: var(--color-cta-text);
  text-align: center;
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-4);
}
.final-cta h2 {
  color: var(--color-cta-text);
  margin-bottom: var(--space-3);
}
.final-cta p {
  color: rgba(252, 251, 249, 0.7);
  margin-bottom: var(--space-8);
  margin-inline: auto;
  font-size: var(--text-lg);
}
[data-theme="dark"] .final-cta {
  background: var(--color-surface-2);
}
[data-theme="dark"] .final-cta h2 {
  color: var(--color-text);
}
[data-theme="dark"] .final-cta p {
  color: var(--color-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-12) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: var(--space-2); }
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer-bottom a {
  color: var(--color-text-faint);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--color-accent); }
.footer-links {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #fff;
}

@media (max-width: 1023px) {
  .whatsapp-float {
    bottom: calc(var(--space-6) + 64px);
  }
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    background: var(--color-surface);
    border-top: 1px solid var(--color-divider);
    padding: var(--space-3) var(--space-4);
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .mobile-sticky-cta .btn { width: 100%; max-width: 400px; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   VIDEO TESTIMONIALS
   ============================================ */
.video-testimonials { background: var(--color-bg); }

.vt-row {
  display: flex;
  gap: var(--space-5);
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}

.vt-card {
  width: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  transition: transform 220ms, box-shadow 220ms;
}
.vt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Middle card — slightly larger, accent border */
.vt-card.vt-featured {
  width: 220px;
  border: 2px solid var(--color-accent);
  transform: translateY(-8px);
}
.vt-card.vt-featured:hover { transform: translateY(-12px); }

/* Video container — 9:16 */
.vt-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #111;
  overflow: hidden;
}
/* Native controls sichtbar lassen */
.vt-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}
/* Meta below video */
.vt-meta {
  padding: var(--space-4) var(--space-5) var(--space-5);
}
.vt-stars {
  color: var(--color-accent);
  font-size: var(--text-xs);
  margin-bottom: var(--space-1);
  letter-spacing: .04em;
}
.vt-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}
.vt-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .vt-row { gap: var(--space-3); }
  .vt-card { width: 140px; }
  .vt-card.vt-featured { width: 156px; transform: translateY(-5px); }
}
