/* ==========================================
   GLOBAL STYLES
   Royal Bronze Theme - Literary & Sophisticated
   EXAKTE FARBPALETTE + CURSOR FIX
   ========================================== */

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================
   LIGHT MODE (Default) - Exakte Palette
   ========================================== */
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2C3E50;
  background: #f5f3f0;
  padding-top: 72px;
  transition: color 0.3s ease, background 0.3s ease;
  cursor: auto;
}

/* Headings - Literary Feel */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #2C3E50;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }

/* Links */
a {
  color: #B08D57;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer !important;
}

a:hover {
  color: #8a6d3f;
  cursor: pointer !important;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
  color: rgba(44, 62, 80, 0.85);
  transition: color 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
section {
  padding: 60px 0;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer !important;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
  font-family: 'Georgia', serif;
  letter-spacing: 0.03em;
}

button {
  cursor: pointer !important;
}

button:hover {
  cursor: pointer !important;
}

.button-primary {
  background: linear-gradient(135deg, #B08D57, #8a6d3f);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(176, 141, 87, 0.3);
  cursor: pointer !important;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176, 141, 87, 0.45);
  background: linear-gradient(135deg, #8a6d3f, #B08D57);
  cursor: pointer !important;
}

.button-secondary {
  background: rgba(44, 62, 80, 0.06);
  color: #2C3E50;
  border: 2px solid rgba(44, 62, 80, 0.15);
  cursor: pointer !important;
}

.button-secondary:hover {
  background: rgba(176, 141, 87, 0.08);
  border-color: #B08D57;
  color: #B08D57;
  cursor: pointer !important;
}

/* ==========================================
   SOCIAL BAR — position: fixed guard
   Stellt sicher dass keine andere Regel
   die fixed position überschreibt
   ========================================== */
.social-bar {
  position: fixed !important;
}

/* ==========================================
   DARK MODE - Exakte Palette
   ========================================== */
html[data-theme="dim"] body {
  color: #f5f2ed;
  background: #2C3E50;
}

html[data-theme="dim"] h1,
html[data-theme="dim"] h2,
html[data-theme="dim"] h3,
html[data-theme="dim"] h4,
html[data-theme="dim"] h5,
html[data-theme="dim"] h6 {
  color: #B08D57;
}

html[data-theme="dim"] p {
  color: rgba(245, 242, 237, 0.85);
}

html[data-theme="dim"] a {
  color: #B08D57;
  cursor: pointer !important;
}

html[data-theme="dim"] a:hover {
  color: #d4b07a;
  cursor: pointer !important;
}

html[data-theme="dim"] .button-primary {
  background: linear-gradient(135deg, #B08D57, #d4b07a);
  color: #2C3E50;
}

html[data-theme="dim"] .button-primary:hover {
  background: linear-gradient(135deg, #d4b07a, #B08D57);
  box-shadow: 0 6px 20px rgba(176, 141, 87, 0.4);
}

html[data-theme="dim"] .button-secondary {
  background: rgba(176, 141, 87, 0.1);
  color: #B08D57;
  border: 2px solid rgba(176, 141, 87, 0.3);
}

html[data-theme="dim"] .button-secondary:hover {
  background: rgba(176, 141, 87, 0.15);
  border-color: #B08D57;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 30px;
  opacity: 0.9;
  color: rgba(44, 62, 80, 0.8);
}

html[data-theme="dim"] .hero-subtitle {
  color: rgba(245, 242, 237, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
  background: rgba(176, 141, 87, 0.03);
}

html[data-theme="dim"] .features {
  background: rgba(176, 141, 87, 0.05);
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(176, 141, 87, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dim"] .feature-card {
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid rgba(176, 141, 87, 0.2);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(176, 141, 87, 0.2);
  border-color: #B08D57;
}

html[data-theme="dim"] .feature-card:hover {
  box-shadow: 0 12px 40px rgba(176, 141, 87, 0.25);
  border-color: #B08D57;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #B08D57;
}

html[data-theme="dim"] .feature-icon {
  color: #B08D57;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: #2C3E50;
}

html[data-theme="dim"] .feature-card h3 {
  color: #B08D57;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.08), rgba(44, 62, 80, 0.06));
}

html[data-theme="dim"] .cta {
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.12), rgba(44, 62, 80, 0.15));
}

.cta h2 {
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 40px 0;
  }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-primary  { color: #2C3E50; }
.text-accent   { color: #B08D57; }
.bg-primary    { background: #2C3E50; }
.bg-accent     { background: #B08D57; }
.bg-light      { background: #f5f3f0; }

html[data-theme="dim"] .text-primary { color: #f5f2ed; }
html[data-theme="dim"] .text-accent  { color: #B08D57; }
html[data-theme="dim"] .bg-light     { background: rgba(176, 141, 87, 0.05); }

/* ==========================================
   CURSOR FIX - UNIVERSAL
   ========================================== */
a,
a:hover,
a:active,
a:focus,
button,
button:hover,
button:active,
button:focus,
input[type="button"],
input[type="submit"],
input[type="reset"],
[onclick],
[role="button"],
label[for] {
  cursor: pointer !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea {
  cursor: text !important;
}

button:disabled,
button[disabled],
input:disabled,
input[disabled],
.disabled {
  cursor: not-allowed !important;
}

/* ==========================================
   FARBPALETTE REFERENZ
   ==========================================
   Deep Blue:    #2C3E50
   Bronze/Gold:  #B08D57
   Dark Bronze:  #8a6d3f
   Light Bronze: #d4b07a
   Cream/Beige:  #f5f3f0
   ========================================== */

   /* ── DEBUG: rote Rahmen um alle Elemente ── */
@media (max-width: 768px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
}/* ==========================================
   FIX 1: Grauer Balken in Reviews entfernen
   ========================================== */

/* Progress Bar verstecken */
.reviews-progress-bar,
.reviews-progress,
[class*="progress-bar"] {
  display: none !important;
}

/* Falls es ein anderes Element ist: */
.reviews-section hr,
.reviews-container hr,
.reviews-stack-wrapper hr {
  display: none !important;
}

/* Falls es ein Border ist: */
.reviews-stack-wrapper {
  border: none !important;
  border-bottom: none !important;
}

/* ==========================================
   FIX 2: Kein Bronze Hintergrund bei Button Hover
   NUR Text soll bronze werden
   ========================================== */

/* Alle Buttons: Kein Background bei Hover */
.hero-cta-subtle:hover,
.process-btn:hover,
.panel-btn:hover,
.konfig-showcase-cta:hover,
.news-cta-btn:hover,
button[class*="cta"]:hover,
a[class*="cta"]:hover {
  background: transparent !important; /* KEIN bronze Hintergrund */
  border-color: var(--color-primary, #B08D57) !important;
  color: var(--color-primary, #B08D57) !important;
}

/* Spezifisch für den "Lass uns sprechen" Button */
.news-cta-btn:hover,
.news-cta-primary:hover,
.news-cta-secondary:hover {
  background: transparent !important;
  color: #B08D57 !important;
  border-bottom-color: #B08D57 !important;
}

/* Alle anderen interaktiven Elemente */
button:hover,
a:hover {
  background: transparent !important;
}

/* ==========================================
   BONUS: Reviews Navigation Buttons Fix
   ========================================== */

/* Falls die Nav Buttons auch betroffen sind */
.reviews-nav-btn:hover {
  background: rgba(176, 141, 87, 0.05) !important; /* Nur sehr subtil */
}

/* ==========================================
   Dark Mode Anpassungen
   ========================================== */

html[data-theme="dim"] .hero-cta-subtle:hover,
html[data-theme="dim"] .process-btn:hover,
html[data-theme="dim"] .panel-btn:hover {
  color: #B08D57 !important;
  border-color: #B08D57 !important;
}

/* ==========================================
   ZUSAMMENFASSUNG
   ========================================== 
   
   ✅ FIX 1: Progress Bar / Grauer Balken versteckt
   ✅ FIX 2: Kein bronze Hintergrund bei Button Hover
   ✅ NUR Text wird bronze (#B08D57), Background bleibt transparent
   ✅ Dark Mode kompatibel
   
   🎨 NEUE FARBEN:
   Primary: #B08D57 (Bronze/Gold)
   Dark: #2C3E50 (Deep Blue)
   
   ========================================== *//* ==========================================
   ELEGANT PUBLISHING HOUSE BACKGROUND
   Royal Bronze Theme - Literary & Sophisticated
   ========================================== */

/* Base body styles */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background 0.3s ease;
}

/* ==========================================
   LIGHT MODE BACKGROUND - Warm Bronze & Cream
   ========================================== */
body {
  /* Warme Bronze-Textur mit subtilen Schatten */
  background: 
    /* Subtle bronze stains */
    radial-gradient(circle at 15% 20%, rgba(176, 141, 87, 0.04), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(176, 141, 87, 0.05), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(176, 141, 87, 0.03), transparent 50%),
    /* Warm cream gradient */
    linear-gradient(180deg, 
      #faf8f5 0%,    /* Helles Creme */
      #f5f2ed 40%,   /* Warmes Beige */
      #f0ece5 100%   /* Sanftes Beige */
    );
}

/* ==========================================
   DARK MODE BACKGROUND - Deep Blue Library Atmosphere
   ========================================== */
html[data-theme="dim"] body {
  /* Dunkle Bibliothek mit Bronze-Akzenten */
  background:
    /* Warm bronze glows */
    radial-gradient(1000px 600px at 20% 15%, rgba(176, 141, 87, 0.12), transparent 55%),
    radial-gradient(800px 500px at 80% 85%, rgba(176, 141, 87, 0.08), transparent 60%),
    radial-gradient(700px 450px at 50% 50%, rgba(176, 141, 87, 0.06), transparent 65%),
    /* Deep blue-grey atmosphere */
    linear-gradient(180deg, 
      #2C3E50 0%,    /* Royal Blue */
      #243442 50%,   /* Deep Blue-Grey */
      #1a2631 100%   /* Almost black with blue tint */
    );
}

/* ==========================================
   FLOATING BOOK PAGES CANVAS
   ========================================== */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4; /* 🎯 STELLSCHRAUBE 1: Sichtbarkeit der Pages (0.2-0.6) */
}

html[data-theme="dim"] #particle-canvas {
  opacity: 0.3; /* Etwas subtiler im Dark Mode */
}

/* ==========================================
   PAPER TEXTURE OVERLAY
   ========================================== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Subtile Papier-Textur */
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(44, 62, 80, 0.01) 2px,
      rgba(44, 62, 80, 0.01) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(44, 62, 80, 0.01) 2px,
      rgba(44, 62, 80, 0.01) 4px
    );
  pointer-events: none;
  z-index: 2;
  opacity: 0.3; /* 🎯 STELLSCHRAUBE 2: Papier-Textur Intensität (0.1-0.5) */
}

html[data-theme="dim"] body::before {
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(176, 141, 87, 0.015) 2px,
      rgba(176, 141, 87, 0.015) 4px
    );
  opacity: 0.15;
}

/* ==========================================
   SUBTLE BRONZE DIFFUSION EFFECT
   ========================================== */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(176, 141, 87, 0.025), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(176, 141, 87, 0.035), transparent 50%);
  animation: bronze-diffusion 12s ease-in-out infinite; /* 🎯 STELLSCHRAUBE 3: Animation Speed (8s-20s) */
  pointer-events: none;
  z-index: 2;
  opacity: 0.6; /* 🎯 STELLSCHRAUBE 4: Effect Intensität (0.3-0.8) */
}

html[data-theme="dim"] body::after {
  background: 
    radial-gradient(circle at 30% 40%, rgba(176, 141, 87, 0.08), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(176, 141, 87, 0.06), transparent 50%);
  opacity: 0.5;
}

@keyframes bronze-diffusion {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1) translate(0, 0);
  }
  25% {
    opacity: 0.5;
    transform: scale(1.02) translate(1%, -1%);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05) translate(-1%, 1%);
  }
  75% {
    opacity: 0.5;
    transform: scale(1.03) translate(0.5%, -0.5%);
  }
}

/* ==========================================
   VIGNETTE EFFECT - Library Feeling
   ========================================== */
.site-header::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    transparent 60%,
    rgba(44, 62, 80, 0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

html[data-theme="dim"] .site-header::before {
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* Ensure content is above effects */
.site-header,
.social-bar,
main,
.dv-footer {
  position: relative;
  z-index: 10;
}

/* ==========================================
   ALTERNATIVE: Falling Letters Animation
   Aktiviere dies für fallende Buchstaben statt Pages
   ========================================== */

/* 
#particle-canvas.letters-mode {
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ctext x='50' y='50' font-size='20' fill='rgba(176,141,87,0.1)' text-anchor='middle'%3EA%3C/text%3E%3C/svg%3E");
  animation: falling-letters 20s linear infinite;
}

@keyframes falling-letters {
  from { background-position: 0 0; }
  to { background-position: 0 100vh; }
}
*/

/* ==========================================
   RESPONSIVE - Performance Optimization
   ========================================== */
@media (max-width: 768px) {
  /* Reduziere Effekte auf Mobile */
  body::after {
    animation: bronze-diffusion 15s ease-in-out infinite;
    opacity: 0.3;
  }
  
  #particle-canvas {
    opacity: 0.25;
  }
  
  html[data-theme="dim"] #particle-canvas {
    opacity: 0.2;
  }
}

/* ==========================================
   STELLSCHRAUBEN ÜBERSICHT
   ========================================== 
   
   🎯 1. Floating Pages Sichtbarkeit:
      #particle-canvas { opacity: 0.4; }
      Werte: 0.2 = sehr subtil, 0.6 = deutlich sichtbar
   
   🎯 2. Papier-Textur Intensität:
      body::before { opacity: 0.3; }
      Werte: 0.1 = kaum sichtbar, 0.5 = stark sichtbar
   
   🎯 3. Animation Geschwindigkeit:
      animation: bronze-diffusion 12s ease-in-out infinite;
      Werte: 8s = schnell, 20s = sehr langsam
   
   🎯 4. Bronze Effect Intensität:
      body::after { opacity: 0.6; }
      Werte: 0.3 = subtil, 0.8 = stark
   
   🎨 FARBEN ÄNDERN:
   
   Light Mode Cream Color:
   linear-gradient(180deg, #faf8f5, #f5f2ed, #f0ece5)
   
   Dark Mode Deep Blue:
   linear-gradient(180deg, #2C3E50, #243442, #1a2631)
   
   Bronze Accents:
   rgba(176, 141, 87, 0.04) - Helleres Bronze
   rgba(176, 141, 87, 0.08) - Dunkleres Bronze
   
   ========================================== */ /* ==========================================
   CURTAIN SPLASH SCREEN
   Royal Bronze Theme
   ========================================== */

.curtain-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #2C3E50;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: curtainSlideUp 0.6s ease-in-out 2s forwards;
  pointer-events: none;
}

.curtain-overlay.hide { display: none; }

body.curtain-active { overflow: hidden; }

.curtain-text { text-align: center; }

/* Words — Cormorant Garamond */
.curtain-word {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: var(--weight-h1);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B08D57;
  opacity: 0;
  transform: translateY(20px);
  background: linear-gradient(135deg, #B08D57, #d4b07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.curtain-word:nth-child(1) { animation: wordReveal 0.4s ease-out 0.2s forwards; }
.curtain-word:nth-child(2) { animation: wordReveal 0.4s ease-out 0.7s forwards; }
.curtain-word:nth-child(3) { animation: wordReveal 0.4s ease-out 1.2s forwards; }

@keyframes wordReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes curtainSlideUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

@media (max-width: 768px) { .curtain-word { font-size: 2.5rem; } }
@media (max-width: 480px) { .curtain-word { font-size: 2rem; letter-spacing: 0.05em; } }/* ==========================================
   HEADER STYLES - WITHOUT LOGO
   Royal Bronze Theme
   ========================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
    background 0.2s ease,
    backdrop-filter 0.2s ease,
    border-color 0.2s ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 245, 0.7);
  border-bottom: 1px solid rgba(176, 141, 87, 0.15);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px 0 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.brand { display: none !important; }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

/* ── Search ── */
.search-wrapper { flex: 1; max-width: 420px; min-width: 0; }

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 10px 0 16px;
  gap: 10px;
  background: rgba(44, 62, 80, 0.06);
  border: 1px solid rgba(176, 141, 87, 0.15);
  border-radius: 18px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.search-form:hover {
  background: rgba(44, 62, 80, 0.08);
  border-color: rgba(176, 141, 87, 0.25);
}

.search-form:focus-within {
  background: rgba(176, 141, 87, 0.08);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
  border-color: #B08D57;
}

/* Input — Inter */
.search-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0; outline: 0;
  background: transparent;
  color: #2C3E50;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-body);
}

.search-input::placeholder {
  color: rgba(44, 62, 80, 0.5);
}

.search-btn {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #2C3E50;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.search-btn:hover {
  background: rgba(176, 141, 87, 0.1);
  color: #B08D57;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  max-height: 400px;
  overflow-y: auto;
  background: rgba(250, 248, 245, 0.95);
  border: 1px solid rgba(176, 141, 87, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(44, 62, 80, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px;
  display: none;
}

.search-dropdown.is-open { display: block; }

/* Result items — Inter */
.search-result {
  display: block;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  color: #2C3E50;
  transition: background 0.15s ease;
}

.search-result:hover { background: rgba(176, 141, 87, 0.1); }

.search-result-title {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-button);
  margin-bottom: 4px;
  color: #2C3E50;
}

.search-result-excerpt {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-body);
  color: rgba(44, 62, 80, 0.7);
  line-height: 1.5;
  max-height: 3em;
  overflow: hidden;
}

/* ── Theme Toggle ── */
.theme-toggle {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 141, 87, 0.2);
  background: rgba(176, 141, 87, 0.08);
  border-radius: 14px;
  cursor: pointer;
  font-size: 18px;
  color: #B08D57;
  transition: transform 0.15s ease, background 0.15s ease;
}

.theme-toggle:hover { transform: translateY(-1px); background: rgba(176, 141, 87, 0.15); }

.theme-icon      { display: none; }
.theme-icon-moon { display: block; }

html[data-theme="dim"] .theme-icon-moon { display: none; }
html[data-theme="dim"] .theme-icon-sun  { display: block; }

/* ── Language Switcher — Inter ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-link {
  font-family: var(--font-body);
  color: #2C3E50;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.lang-link:hover   { opacity: 1; color: #B08D57; }
.lang-link.is-active { opacity: 1; color: #B08D57; }
.lang-sep            { opacity: 0.3; color: #2C3E50; }

/* ── Mobile menu button ── */
.menu-toggle {
  width: 42px; height: 42px;
  display: flex;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-icon {
  width: 22px; height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  display: block;
  height: 2px;
  background: #2C3E50;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ── Mobile Menu ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 62, 80, 0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.25s ease;
}

.menu-overlay.is-open { opacity: 1; pointer-events: auto; }

.menu-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 90vw);
  background: rgba(250, 248, 245, 0.95);
  border-left: 1px solid rgba(176, 141, 87, 0.2);
  box-shadow: -16px 0 60px rgba(44, 62, 80, 0.2);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 20px;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.12, 1);
}

.menu-drawer.is-open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Drawer title — Cormorant Garamond */
.drawer-title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-h3);
  font-style: normal;
  color: #2C3E50;
}

.drawer-close {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 141, 87, 0.2);
  background: rgba(176, 141, 87, 0.1);
  border-radius: 14px;
  cursor: pointer;
  font-size: 20px;
  color: #B08D57;
  transition: background 0.15s ease;
}

.drawer-close:hover { background: rgba(176, 141, 87, 0.2); }

.drawer-nav { display: flex; flex-direction: column; gap: 6px; }

/* Drawer links — Inter */
.drawer-link {
  display: block;
  padding: 14px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-button);
  color: #2C3E50;
  transition: background 0.15s ease, color 0.15s ease;
}

.drawer-link:hover { background: rgba(176, 141, 87, 0.1); color: #B08D57; }
.drawer-link.is-active { color: #B08D57; }

/* ── Search badges — Inter ── */
.sh-match  { color: #B08D57; font-style: normal; font-weight: var(--weight-button); }

.sr-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--weight-label);
  padding: 2px 7px;
  border-radius: 99px;
  vertical-align: middle;
  margin-left: 6px;
}

.sr-badge--blog {
  background: rgba(176, 141, 87, 0.15);
  border: 1px solid rgba(176, 141, 87, 0.3);
  color: #8a6d3f;
}

.sr-badge--section {
  background: rgba(44, 62, 80, 0.08);
  border: 1px solid rgba(44, 62, 80, 0.15);
  color: rgba(44, 62, 80, 0.7);
}

.sr-meta-date {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--weight-body);
  color: rgba(44, 62, 80, 0.5);
}

.search-result.is-focused { background: rgba(176, 141, 87, 0.12); outline: none; }
.search-no-result         { cursor: default; pointer-events: none; }

.search-no-result .search-result-title {
  color: rgba(44, 62, 80, 0.6);
  font-weight: var(--weight-body);
}

/* ── Dark Mode ── */
html[data-theme="dim"] .site-header.is-scrolled {
  background: rgba(44, 62, 80, 0.85);
  border-bottom: 1px solid rgba(176, 141, 87, 0.2);
}

html[data-theme="dim"] .search-form         { background: rgba(176, 141, 87, 0.1); border-color: rgba(176, 141, 87, 0.25); }
html[data-theme="dim"] .search-form:hover   { background: rgba(176, 141, 87, 0.15); border-color: rgba(176, 141, 87, 0.35); }
html[data-theme="dim"] .search-form:focus-within { background: rgba(176, 141, 87, 0.15); border-color: #B08D57; }
html[data-theme="dim"] .search-input        { color: #f5f2ed; }
html[data-theme="dim"] .search-input::placeholder { color: rgba(245, 242, 237, 0.5); }
html[data-theme="dim"] .search-btn          { color: #B08D57; }
html[data-theme="dim"] .search-btn:hover    { background: rgba(176, 141, 87, 0.2); color: #d4b07a; }
html[data-theme="dim"] .search-dropdown     { background: rgba(44, 62, 80, 0.95); border-color: rgba(176, 141, 87, 0.25); }
html[data-theme="dim"] .search-result       { color: #f5f2ed; }
html[data-theme="dim"] .search-result:hover { background: rgba(176, 141, 87, 0.15); }
html[data-theme="dim"] .search-result-title  { color: #B08D57; }
html[data-theme="dim"] .search-result-excerpt { color: rgba(245, 242, 237, 0.6); }
html[data-theme="dim"] .search-result.is-focused { background: rgba(176, 141, 87, 0.2); }
html[data-theme="dim"] .search-no-result .search-result-title { color: rgba(245, 242, 237, 0.5); }
html[data-theme="dim"] .sr-meta-date        { color: rgba(245, 242, 237, 0.45); }
html[data-theme="dim"] .sr-badge--blog      { background: rgba(176, 141, 87, 0.2); border-color: rgba(176, 141, 87, 0.4); color: #B08D57; }
html[data-theme="dim"] .sr-badge--section   { background: rgba(245, 242, 237, 0.08); border-color: rgba(245, 242, 237, 0.15); color: rgba(245, 242, 237, 0.6); }

html[data-theme="dim"] .theme-toggle        { background: rgba(176, 141, 87, 0.15); border-color: rgba(176, 141, 87, 0.3); color: #B08D57; }
html[data-theme="dim"] .theme-toggle:hover  { background: rgba(176, 141, 87, 0.25); }
html[data-theme="dim"] .lang-link           { color: #f5f2ed; }
html[data-theme="dim"] .lang-link:hover,
html[data-theme="dim"] .lang-link.is-active { color: #B08D57; }
html[data-theme="dim"] .lang-sep            { color: rgba(245, 242, 237, 0.3); }
html[data-theme="dim"] .menu-icon span      { background: #B08D57; }
html[data-theme="dim"] .menu-drawer         { background: rgba(44, 62, 80, 0.95); border-left-color: rgba(176, 141, 87, 0.25); }
html[data-theme="dim"] .drawer-title        { color: #B08D57; }
html[data-theme="dim"] .drawer-close        { background: rgba(176, 141, 87, 0.15); border-color: rgba(176, 141, 87, 0.3); color: #B08D57; }
html[data-theme="dim"] .drawer-close:hover  { background: rgba(176, 141, 87, 0.25); }
html[data-theme="dim"] .drawer-link         { color: #f5f2ed; }
html[data-theme="dim"] .drawer-link:hover   { background: rgba(176, 141, 87, 0.15); color: #B08D57; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-header    { height: 60px; }
  .header-inner   { padding: 0 16px 0 60px; }
  .search-wrapper { max-width: 280px; }
  .search-form    { height: 40px; }
  .theme-toggle   { width: 38px; height: 38px; }
  .lang-switcher  { display: none; }
}

@media (max-width: 520px) {
  .site-header    { height: 56px; }
  .header-inner   { gap: 8px; padding: 0 16px 0 60px; }
  .search-wrapper { flex: 1; max-width: none; }
  .search-form    { height: 36px; padding: 0 8px 0 12px; }
  .search-input   { font-size: 13px; }
  .theme-toggle   { width: 36px; height: 36px; }
  .menu-toggle    { width: 36px; height: 36px; }
}

/* ── Disabled nav link (coming soon) ── */
.drawer-link--disabled {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
  color: inherit;
}

.drawer-link-soon {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.15);
  color: #B08D57;
}
.site-header {
  overflow: hidden;
}

.header-inner {
  overflow: hidden;
  max-width: 100%;
}

.search-dropdown {
  max-width: 100%;
}/* ==========================================
   FLOATING LOGO - INTELLIGENT RESPONSIVE (NO OVERLAP!)
   ========================================== */

.floating-brand {
  position: fixed;
  top: 0px;
  left: 20px;
  z-index: 1100;
  
  display: flex;
  align-items: center;
  gap: 10px;
  
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  font-size: 20px;
  
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-brand:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.floating-brand-logo {
  width: 110px;
  height: 33px;          /* 30% von 110px */
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.floating-brand:hover .floating-brand-logo {
  transform: scale(1.05);
}

.floating-brand-name {
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease;
}

/* Dark Mode */
html[data-theme="dim"] .floating-brand {
  color: #fff;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Sehr große Bildschirme >1200px */
@media (min-width: 1200px) {
  .floating-brand {
    left: 20px;
    top: 16px;
  }
  .floating-brand-logo {
    width: 110px;
    height: 33px; /* 30% von 110px */
  }
  .floating-brand-name {
    display: block;
    font-size: 18px;
  }
}

/* Mittlere Bildschirme 900–1199px */
@media (min-width: 900px) and (max-width: 1199px) {
  .floating-brand {
    left: 20px;
    top: 18px;
    font-size: 16px;
  }
  .floating-brand-logo {
    width: 95px;
    height: 29px;
  }
  .floating-brand-name {
    display: none; /* war: block */
  }
}

/* Tablet 769–899px */
@media (min-width: 769px) and (max-width: 899px) {
  .floating-brand {
    left: 16px;
    top: 18px; /* war: 0px */
    gap: 8px;
  }
  .floating-brand-logo {
    width: 80px;
    height: 24px;
  }
  .floating-brand-name {
    display: none;
  }
}
/* Kleine Tablets ≤768px */
@media (max-width: 768px) {
  .floating-brand {
    top: 18px; /* war: 0px */
    left: 16px;
    gap: 0;
  }
  .floating-brand-logo {
    width: 90px;
    height: 27px;
  }
  .floating-brand-name {
    display: none;
  }
}

/* Mobile ≤520px */
@media (max-width: 520px) {
  .floating-brand {
    top: 16px; /* war: 0px */
    left: -3px;
  }
  .floating-brand-logo {
    width: 80px;
    height: 24px;
  }
}/* ==========================================
   SOCIAL BAR STYLES
   ========================================== */

/* Desktop: Fixed right side vertical bar */
.social-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  
  width: 48px;
  padding: 16px 0;
  
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-right: none;
  border-radius: 999px 0 0 999px;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* "FOLLOW" label */
.social-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0f172a;
  margin-bottom: 12px;
  user-select: none;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Social links */
.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #0f172a;
  margin: 3px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover {
  transform: scale(1.1);
  opacity: 0.7;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Lang button + popup: hidden on desktop */
.sb-lang-wrapper {
  display: none;
}

/* ==========================================
   DARK MODE
   ========================================== */
html[data-theme="dim"] .social-bar {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.4);
}

html[data-theme="dim"] .social-label {
  color: rgba(255, 255, 255, 0.9);
}

html[data-theme="dim"] .social-link {
  color: #fff;
}

/* ==========================================
   MOBILE: Bottom pill design
   ========================================== */
@media (max-width: 768px) {
  .social-bar {
    position: fixed;
    left: 50%;
    bottom: 20px;
    top: auto;
    right: auto;
    
    transform: translateX(-50%);
    
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
    width: auto;
    height: auto;
    padding: 12px 20px;
    
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    
    gap: 12px;
  }
  
  /* Hide label on mobile */
  .social-label {
    display: none;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
    margin: 0;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }

  /* Hide when scrolling down */
  .social-bar.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
  }

  /* Dark mode on mobile */
  html[data-theme="dim"] .social-bar {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.14);
  }

  /* ── Language switcher ──────────────────── */
  .sb-lang-wrapper {
    display: block;
    position: relative;
    border-left: 1px solid rgba(15, 23, 42, 0.12);
    padding-left: 12px;
    margin-left: 2px;
  }

  html[data-theme="dim"] .sb-lang-wrapper {
    border-left-color: rgba(255, 255, 255, 0.15);
  }

  /* Globe button */
  .sb-lang-btn {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0f172a;
    border-radius: 50%;
    transition: background 0.2s ease;
  }

  .sb-lang-btn:hover {
    background: rgba(15, 23, 42, 0.06);
  }

  html[data-theme="dim"] .sb-lang-btn {
    color: #fff;
  }

  html[data-theme="dim"] .sb-lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  /* Language popup — expands upward */
  .sb-lang-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);

    flex-direction: row;
    gap: 2px;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 8px;
    white-space: nowrap;
  }

  .sb-lang-popup.is-open {
    display: flex;
  }

  html[data-theme="dim"] .sb-lang-popup {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  /* Language option links */
  .sb-lang-option {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(15, 23, 42, 0.45);
    text-decoration: none;
    padding: 5px 9px;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .sb-lang-option:hover {
    background: rgba(176, 141, 87, 0.1);
    color: #B08D57;
  }

  .sb-lang-option.is-active {
    background: rgba(176, 141, 87, 0.15);
    color: #B08D57;
    font-weight: 900;
  }

  html[data-theme="dim"] .sb-lang-option {
    color: rgba(255, 255, 255, 0.4);
  }

  html[data-theme="dim"] .sb-lang-option:hover,
  html[data-theme="dim"] .sb-lang-option.is-active {
    background: rgba(176, 141, 87, 0.2);
    color: #d4b07a;
  }
}

@media (max-width: 360px) {
  .social-bar {
    padding: 10px 16px;
    gap: 10px;
    bottom: 16px;
  }
  
  .social-link {
    width: 34px;
    height: 34px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
}/* ==========================================
   FOOTER BASE
   Royal Bronze Theme - With Softer Hero-Style Mask Fade
   ========================================== */

body { margin: 0; padding: 0; }

.dv-footer {
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(176, 141, 87, 0.2), transparent 60%),
    linear-gradient(180deg, #2C3E50, #1a2631);
  color: rgba(245, 242, 237, 0.88);
  font-family: var(--font-body);
  width: 100%;
  margin: 0; padding: 0;
  border: none;
  box-sizing: border-box;
  position: relative;

  mask-image: linear-gradient(
    to bottom,
    transparent 0%, rgba(0,0,0,0.05) 8%, rgba(0,0,0,0.1) 12%,
    rgba(0,0,0,0.2) 18%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.45) 32%,
    rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.88) 60%,
    rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%, rgba(0,0,0,0.05) 8%, rgba(0,0,0,0.1) 12%,
    rgba(0,0,0,0.2) 18%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.45) 32%,
    rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.88) 60%,
    rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%
  );
}

.dv-footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 56px 20px 26px;
}

@media (min-width: 769px) {
  .dv-footer-inner { padding-right: 70px; }
}

/* ── Grid ── */
.dv-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

/* Column title — Inter */
.dv-ftitle {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #B08D57;
}

/* Nav links — Inter */
.dv-flink {
  display: block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-body);
  color: rgba(245, 242, 237, 0.72);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dv-flink:hover { color: #B08D57; }

/* ── Contact column ── */
.dv-contact strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-button);
  color: #B08D57;
  margin-bottom: 6px;
}

.dv-contact span {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-body);
  opacity: 0.75;
  color: rgba(245, 242, 237, 0.75);
}

/* ── Social icons ── */
.dv-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.dv-social a {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.25);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.dv-social a:hover {
  transform: translateY(-1px);
  background: rgba(176, 141, 87, 0.2);
  border-color: #B08D57;
}

.dv-social img {
  width: 18px; height: 18px;
  object-fit: contain;
  filter: brightness(1.1);
}

/* ── Bottom bar ── */
.dv-footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(176, 141, 87, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-body);
  color: rgba(245, 242, 237, 0.55);
}

/* Brand — Cormorant Garamond */
.dv-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--weight-h3);
  font-style: normal;
  color: #B08D57;
}

/* ── Footer Logo — gleicher Crop wie floating logo ── */
.dv-footer-brand img {
  width: 80px;
  height: 24px;          /* 30% von 80px */
  object-fit: cover;
  object-position: 50% 40%;
}

/* Legal links — Inter */
.dv-footer-legal {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.dv-footer-legal span,
.dv-footer-legal #footer-year {
  font-family: var(--font-body);
  color: rgba(245, 242, 237, 0.55);
  white-space: nowrap;
}

.dv-footer-legal a {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-body);
  color: rgba(245, 242, 237, 0.7);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.dv-footer-legal a:hover { color: #B08D57; }

.dv-footer-legal a::before {
  content: '·';
  margin-right: 6px;
  color: rgba(245, 242, 237, 0.3);
  pointer-events: none;
}

/* ── CTA Button — Cormorant Garamond ── */
.dv-footer-cta {
  margin-bottom: 120px;
  margin-top: 80px;
  text-align: center;
  padding: 100px 20px;
}

.footer-talk-btn {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: var(--weight-h2);
  font-style: italic;
  color: #B08D57;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0; margin: 0;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.footer-talk-btn::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 0;
  width: 100%; height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-talk-btn:hover        { color: #d4b07a; transform: translateY(-4px); }
.footer-talk-btn:hover::after { transform: scaleX(1); }
.footer-talk-btn:active       { transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .dv-footer {
    mask-image: linear-gradient(
      to bottom,
      transparent 0%, rgba(0,0,0,0.5) 5%,
      rgba(0,0,0,0.85) 10%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%, rgba(0,0,0,0.5) 5%,
      rgba(0,0,0,0.85) 10%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%
    );
  }

  .dv-footer-cta   { padding: 80px 20px; margin-bottom: 100px; margin-top: 60px; }
  .dv-footer-grid  { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-talk-btn { font-size: clamp(3rem, 10vw, 6rem); }
  .dv-footer-legal { flex-wrap: wrap; gap: 4px; }

  .dv-footer-brand img {
    width: 70px;
    height: 21px; /* 30% von 70px */
  }
}

@media (max-width: 480px) {
  .dv-footer-cta    { padding: 60px 20px; margin-bottom: 80px; margin-top: 40px; }
  .dv-footer-grid   { grid-template-columns: 1fr; }
  .dv-footer-inner  { padding: 40px 20px 20px; }
  .dv-footer-bottom { flex-direction: column; align-items: flex-start; }
  .dv-footer-legal  { flex-wrap: wrap; }

  .dv-footer-brand img {
    width: 60px;
    height: 18px; /* 30% von 60px */
  }
}/* ==========================================
   HERO SECTION - MINIMALIST & CLEAN
   Royal Bronze Theme
   ========================================== */

.hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 1700px; height: 100%;
  background-image: url("../../images/index/library.webp");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -2;
  transition: opacity 0.3s ease;
  mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%,
    rgba(0,0,0,0.7) 75%, rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%,
    rgba(0,0,0,0.7) 75%, rgba(0,0,0,0) 100%
  );
}

html[data-theme="dim"] .hero::before { opacity: 0.4; }

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 1400px; height: 100%;
  z-index: -1;
  pointer-events: none;
  filter: drop-shadow(-40px 0 60px rgba(44,62,80,0.25))
          drop-shadow(40px 0 60px rgba(44,62,80,0.25));
  mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%,
    rgba(0,0,0,0.7) 75%, rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%,
    rgba(0,0,0,0.7) 75%, rgba(0,0,0,0) 100%
  );
  background: linear-gradient(to bottom, transparent, transparent);
}

html[data-theme="dim"] .hero::after {
  filter: drop-shadow(-40px 0 60px rgba(0,0,0,0.5))
          drop-shadow(40px 0 60px rgba(0,0,0,0.5));
}

.hero-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

/* Title — Cormorant Garamond */
.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--weight-h1);
  font-style: normal;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #2C3E50;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0.5px rgba(44, 62, 80, 0.2);
  paint-order: stroke fill;
}

html[data-theme="dim"] .hero-title {
  color: #e8c97a;
  -webkit-text-stroke: 0.5px rgba(232, 201, 122, 0.15);
}

/* Description — Inter */
.hero-description {
  font-family: var(--font-body);
  font-size: 1.3rem;  /* war var(--text-lead) */
  font-weight: var(--weight-lead);
  font-style: normal;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

html[data-theme="dim"] .hero-description { color: rgba(245, 242, 237, 0.9); }

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

/* Subtle CTA — Inter (kursiv erlaubt als Akzent) */
.hero-cta-subtle {
  display: inline-block;
  padding: 0 0 4px;
  background: none;
  border: none;
  border-bottom: 2px solid currentColor;
  color: #2C3E50;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: var(--weight-button);
  font-style: italic; /* erlaubt: seltener Akzent */
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

html[data-theme="dim"] .hero-cta-subtle { color: #e8c97a; }

.hero-cta-subtle:hover {
  color: #B08D57;
  border-bottom-color: #B08D57;
  transform: translateY(-1px);
}

html[data-theme="dim"] .hero-cta-subtle:hover {
  color: #d4b07a;
  border-bottom-color: #d4b07a;
}

/* Glass CTA — Inter */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(176, 141, 87, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(176, 141, 87, 0.3);
  color: #2C3E50;
  font-family: var(--font-body);
  font-size: var(--text-button);
  font-weight: var(--weight-button);
  font-style: normal;
  letter-spacing: 0.02em;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 24px rgba(176, 141, 87, 0.15),
    inset 0 1px 0 rgba(176, 141, 87, 0.2);
}

.hero-cta:hover {
  background: rgba(176, 141, 87, 0.25);
  border-color: #B08D57;
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(176, 141, 87, 0.35),
    0 0 0 1px rgba(176, 141, 87, 0.4),
    inset 0 1px 0 rgba(176, 141, 87, 0.3);
}

.hero-cta-secondary {
  background: rgba(44, 62, 80, 0.05);
  border: 1.5px solid rgba(44, 62, 80, 0.2);
  color: #2C3E50;
}

html[data-theme="dim"] .hero-cta-secondary {
  background: rgba(176, 141, 87, 0.08);
  border-color: rgba(176, 141, 87, 0.25);
  color: #B08D57;
}

.hero-cta-secondary:hover {
  background: rgba(176, 141, 87, 0.15);
  border-color: #B08D57;
  color: #B08D57;
  box-shadow:
    0 12px 40px rgba(176, 141, 87, 0.25),
    0 0 0 1px rgba(176, 141, 87, 0.3),
    inset 0 1px 0 rgba(176, 141, 87, 0.2);
}

html[data-theme="dim"] .hero-cta {
  background: rgba(176, 141, 87, 0.2);
  border-color: rgba(176, 141, 87, 0.35);
  color: #B08D57;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(176, 141, 87, 0.25);
}

html[data-theme="dim"] .hero-cta:hover {
  background: rgba(176, 141, 87, 0.3);
  border-color: #B08D57;
  color: #d4b07a;
}

html[data-theme="dim"] .hero-cta-secondary:hover {
  background: rgba(176, 141, 87, 0.2);
  color: #d4b07a;
}

.hero-cta::before { display: none; }

/* Features pill — Inter */
.hero-features {
  display: inline-flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: rgba(176, 141, 87, 0.08);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(176, 141, 87, 0.2);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(176, 141, 87, 0.1), inset 0 1px 0 rgba(176, 141, 87, 0.15);
}

html[data-theme="dim"] .hero-features {
  background: rgba(176, 141, 87, 0.12);
  border-color: rgba(176, 141, 87, 0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(176, 141, 87, 0.2);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-body);
  color: rgba(44, 62, 80, 0.85);
}

html[data-theme="dim"] .hero-feature { color: rgba(245, 242, 237, 0.85); }
.hero-feature-icon { font-size: 16px; color: #B08D57; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(2.5rem, 5vw, var(--text-h1)); }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 20px 80px; }
  .hero::before, .hero::after { max-width: 100%; }
  .hero-features { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta,
  .hero-cta-subtle { width: 100%; justify-content: center; }
}/* ==========================================
   CONTACT FORM POPUP
   Royal Bronze Theme
   ========================================== */

.contact-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(44, 62, 80, 0.8);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.contact-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.contact-popup {
    background: #faf8f5;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(44, 62, 80, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(176, 141, 87, 0.2);
}

html[data-theme="dim"] .contact-popup {
    background: #2C3E50;
    border-color: rgba(176, 141, 87, 0.3);
}

.contact-overlay.is-open .contact-popup { transform: scale(1); }

.contact-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    border: none;
    background: rgba(44, 62, 80, 0.08);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2C3E50;
}

html[data-theme="dim"] .contact-close {
    background: rgba(176, 141, 87, 0.15);
    color: #B08D57;
}

.contact-close:hover {
    background: rgba(176, 141, 87, 0.2);
    color: #B08D57;
    transform: rotate(90deg);
}

.contact-header { margin-bottom: 32px; }

/* Header title — Cormorant Garamond */
.contact-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: var(--weight-h2);
    font-style: normal;
    color: #2C3E50;
    margin: 0 0 8px;
}

html[data-theme="dim"] .contact-header h2 { color: #B08D57; }

/* Header subtitle — Inter */
.contact-header p {
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: var(--weight-body);
    color: rgba(44, 62, 80, 0.7);
    margin: 0;
}

html[data-theme="dim"] .contact-header p { color: rgba(245, 242, 237, 0.7); }

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Labels — Inter */
.form-group label {
    font-family: var(--font-body);
    font-size: var(--text-label);
    font-weight: var(--weight-label);
    color: #2C3E50;
}

html[data-theme="dim"] .form-group label { color: #B08D57; }

/* Inputs — Inter */
.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid rgba(44, 62, 80, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: var(--weight-body);
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    color: #2C3E50;
}

html[data-theme="dim"] .form-group input,
html[data-theme="dim"] .form-group textarea {
    border-color: rgba(176, 141, 87, 0.2);
    background: rgba(176, 141, 87, 0.08);
    color: #f5f2ed;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(44, 62, 80, 0.5); }

html[data-theme="dim"] .form-group input::placeholder,
html[data-theme="dim"] .form-group textarea::placeholder { color: rgba(176, 141, 87, 0.5); }

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B08D57;
    background: rgba(176, 141, 87, 0.05);
}

html[data-theme="dim"] .form-group input:focus,
html[data-theme="dim"] .form-group textarea:focus {
    border-color: #B08D57;
    background: rgba(176, 141, 87, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* Submit button — Inter */
.form-submit {
    background: linear-gradient(135deg, #B08D57, #8a6d3f);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: var(--text-button);
    font-weight: var(--weight-button);
    font-style: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(176, 141, 87, 0.4);
    background: linear-gradient(135deg, #8a6d3f, #B08D57);
}

html[data-theme="dim"] .form-submit {
    background: linear-gradient(135deg, #B08D57, #d4b07a);
    color: #2C3E50;
}

html[data-theme="dim"] .form-submit:hover {
    background: linear-gradient(135deg, #d4b07a, #B08D57);
}

/* Messages — Inter */
.form-message {
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: var(--weight-body);
    margin-top: 16px;
}

.form-message.success {
    background: rgba(176, 141, 87, 0.1);
    border: 1px solid #B08D57;
    color: #2C3E50;
}

html[data-theme="dim"] .form-message.success {
    background: rgba(176, 141, 87, 0.15);
    color: #B08D57;
}

.form-message.error {
    background: rgba(185, 28, 28, 0.1);
    border: 1px solid rgba(185, 28, 28, 0.3);
    color: #991b1b;
}

html[data-theme="dim"] .form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

/* ==========================================
   MOBILE
   ========================================== */
@media (max-width: 640px) {
    .contact-popup      { padding: 20px 14px; width: 92%; max-height: 80vh; border-radius: 12px; }
    .contact-header     { margin-bottom: 14px; }
    .contact-header h2  { font-size: 1.4rem; padding-right: 36px; }
    .contact-header p   { font-size: 0.8rem; }
    .contact-form       { gap: 10px; }
    .form-row           { grid-template-columns: 1fr; gap: 10px; }
    .form-group         { gap: 4px; }
    .form-group label   { font-size: 0.78rem; }

    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 16px; /* verhindert iOS auto-zoom */
    }

    .form-group textarea { min-height: 70px; }
    .form-submit        { padding: 11px 18px; font-size: 0.88rem; margin-top: 4px; }
    .contact-close      { width: 30px; height: 30px; font-size: 14px; top: 10px; right: 10px; }
}/* ==========================================
   ADD-ONS CAROUSEL
   ========================================== */

.addons-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0 80px;
  margin-top: -200px; /* Overlap hero slightly */
  z-index: 5;
}

/* Carousel Track - Contains all cards */
.carousel-track {
  display: flex;
  gap: 24px;
  animation: scroll-carousel 40s linear infinite;
  width: max-content;
}

/* Pause animation on hover */
.addons-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Scroll Animation */
@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Scroll through half (duplicated content) */
  }
}

/* Add-On Card - Glassmorphism */
.addon-card {
  flex-shrink: 0;
  width: 380px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

/* Hover Effect */
.addon-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 20px 60px rgba(139, 92, 246, 0.3),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Dark Mode Card */
html[data-theme="dim"] .addon-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

html[data-theme="dim"] .addon-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 
    0 20px 60px rgba(139, 92, 246, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Card Badge */
.addon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a78bfa;
  margin-bottom: 20px;
}

html[data-theme="dim"] .addon-badge {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

/* Icon */
.addon-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Title */
.addon-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
}

html[data-theme="dim"] .addon-title {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

/* Description */
.addon-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.8);
  margin-bottom: 16px;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.7);
}

html[data-theme="dim"] .addon-desc {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

/* "For" Tag */
.addon-for {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.7);
  position: absolute;
  bottom: 24px;
  left: 32px;
}

html[data-theme="dim"] .addon-for {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

/* Glow effect on hover */
.addon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(139, 92, 246, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.addon-card:hover::before {
  opacity: 1;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .addon-card {
    width: 320px;
    height: 260px;
    padding: 24px;
  }
  
  .addon-title {
    font-size: 1.25rem;
  }
  
  .addon-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .addons-carousel {
    padding: 40px 0 60px;
    margin-top: -80px;
  }
  
  .addon-card {
    width: 280px;
    height: 240px;
    padding: 20px;
  }
  
  .carousel-track {
    gap: 16px;
  }
}/* ==========================================
   KONFIGURATOR CTA OVERLAY
   ========================================== */

.konfigurator-cta {
  position: relative;
  margin-top: -100px; /* Overlaps carousel bottom third */
  z-index: 20;
  padding: 0 20px 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state when scrolled into view */
.konfigurator-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glass Container */
.konfigurator-container {
  max-width: 600px; /* Reduced from 700px */
  margin: 0 auto;
  padding: 48px 60px; /* Reduced from 60px 80px */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  box-shadow: 
    0 24px 80px rgba(139, 92, 246, 0.2),
    0 0 0 1px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

html[data-theme="dim"] .konfigurator-container {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 
    0 24px 80px rgba(139, 92, 246, 0.3),
    0 0 0 1px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Title */
.konfigurator-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px; /* Reduced from 24px */
  text-align: center;
  letter-spacing: -0.02em;
}

html[data-theme="dim"] .konfigurator-title {
  color: #fff;
}

/* Description */
.konfigurator-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.85);
  margin-bottom: 24px; /* Reduced from 32px */
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

html[data-theme="dim"] .konfigurator-description {
  color: rgba(255, 255, 255, 0.85);
}

/* Features List */
.konfigurator-features {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Reduced from 16px */
  margin-bottom: 24px; /* Reduced from 32px */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.konfigurator-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.8);
}

html[data-theme="dim"] .konfigurator-feature {
  color: rgba(255, 255, 255, 0.8);
}

.konfigurator-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #8b5cf6;
  font-weight: 700;
  margin-top: 2px;
}

html[data-theme="dim"] .konfigurator-feature-icon {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}

/* Meta Info */
.konfigurator-meta {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.6);
  margin-bottom: 32px; /* Reduced from 40px */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

html[data-theme="dim"] .konfigurator-meta {
  color: rgba(255, 255, 255, 0.6);
}

.konfigurator-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}

/* CTA Buttons */
.konfigurator-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.konfigurator-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Primary Button */
.konfigurator-btn-primary {
  background: rgba(139, 92, 246, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #fff;
  box-shadow: 
    0 8px 24px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.konfigurator-btn-primary:hover {
  background: rgba(139, 92, 246, 0.9);
  border-color: rgba(139, 92, 246, 0.7);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(139, 92, 246, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Secondary Button */
.konfigurator-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #000;
}

html[data-theme="dim"] .konfigurator-btn-secondary {
  color: #fff;
}

.konfigurator-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .konfigurator-cta {
    margin-top: -150px;
    padding: 0 20px 60px;
  }

  .konfigurator-container {
    padding: 40px 30px;
  }

  .konfigurator-title {
    font-size: 2rem;
  }

  .konfigurator-description {
    font-size: 1rem;
  }

  .konfigurator-buttons {
    flex-direction: column;
    width: 100%;
  }

  .konfigurator-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .konfigurator-container {
    padding: 30px 24px;
  }

  .konfigurator-title {
    font-size: 1.75rem;
  }
}/* ==========================================
   HORIZONTAL SCROLL SECTION
   Royal Bronze Theme
   ========================================== */

.horizontal-scroll-wrapper {
  position: relative;
  height: 300vh;
  overflow: visible;
}

.horizontal-scroll-container {
  position: sticky;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  will-change: transform;
}

.horizontal-scroll-track {
  display: flex;
  gap: 40px;
  will-change: transform;
  transition: none;
  padding: 0 10vw;
  align-items: center;
}

/* ── Panels ── */
.scroll-panel {
  flex-shrink: 0;
  width: 80vw; height: 80vh;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.scroll-panel.text-left  { flex-direction: row; }
.scroll-panel.text-right { flex-direction: row-reverse; }

.scroll-panel-text-only { justify-content: center; }

.panel-text-full { flex: none; width: 100%; max-width: 800px; }

.scroll-panel:nth-child(3) .panel-title,
.scroll-panel:nth-child(3) .panel-description {
  opacity: 0; transform: translateY(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-panel:nth-child(3) .panel-info {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.scroll-panel:nth-child(3).panel-visible .panel-title,
.scroll-panel:nth-child(3).panel-visible .panel-description { opacity: 1; transform: translateY(0); }

.scroll-panel:nth-child(3).panel-visible .panel-info { opacity: 1; transform: translateY(0); }

/* ── Image ── */
.panel-image {
  flex: 1; height: 100%;
  border-radius: 24px; overflow: hidden;
  position: relative;
  background: rgba(176, 141, 87, 0.05);
  border: 1px solid rgba(176, 141, 87, 0.15);
  box-shadow: 0 24px 60px rgba(44, 62, 80, 0.2), inset 0 1px 0 rgba(176, 141, 87, 0.1);
  z-index: 1;
}

.panel-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-image:hover img { transform: scale(1.05); }

/* ── Text ── */
.panel-text {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 32px; z-index: 2;
  position: relative;
  will-change: transform;
}

.text-left .panel-text  { margin-right: -120px; padding-right: 120px; }
.text-right .panel-text { margin-left: -120px;  padding-left: 120px; }

/* Panel title — Cormorant Garamond */
.panel-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: var(--weight-h1);
  font-style: normal;
  color: #2C3E50;
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: relative;
  background: linear-gradient(135deg, #2C3E50, #1a2631);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-title:hover {
  background: linear-gradient(135deg, #B08D57, #d4b07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(8px);
}

html[data-theme="dim"] .panel-title {
  background: linear-gradient(135deg, #B08D57, #d4b07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html[data-theme="dim"] .panel-title:hover {
  background: linear-gradient(135deg, #d4b07a, #e8c99a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Panel description — Inter */
.panel-description {
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: var(--weight-body);
  font-style: normal;
  line-height: 1.7;
  color: rgba(44, 62, 80, 0.85);
}

html[data-theme="dim"] .panel-description { color: rgba(245, 242, 237, 0.85); }

/* Info box */
.panel-info {
  padding: 28px;
  background: rgba(176, 141, 87, 0.08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(176, 141, 87, 0.25);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(176, 141, 87, 0.15), inset 0 1px 0 rgba(176, 141, 87, 0.2);
  margin-top: 12px;
}

html[data-theme="dim"] .panel-info {
  background: rgba(176, 141, 87, 0.12);
  border-color: rgba(176, 141, 87, 0.3);
}

/* Info title — Cormorant Garamond */
.panel-info-title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-h3);
  font-style: normal;
  color: #2C3E50;
  margin-bottom: 16px;
}

html[data-theme="dim"] .panel-info-title { color: #B08D57; }

/* Info text — Inter */
.panel-info-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  line-height: 1.6;
  color: rgba(44, 62, 80, 0.75);
  margin-bottom: 24px;
}

html[data-theme="dim"] .panel-info-text { color: rgba(245, 242, 237, 0.75); }

.panel-buttons { display: flex; justify-content: center; margin-top: 8px; }

/* Panel button — Inter (kursiv als Akzent erlaubt) */
.panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 4px;
  background: none; border: none;
  border-bottom: 2px solid currentColor;
  color: #2C3E50;
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: var(--weight-button);
  font-style: italic;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

html[data-theme="dim"] .panel-btn { color: #B08D57; }

.panel-btn:hover { color: #B08D57; border-bottom-color: #B08D57; transform: translateY(-1px); }
html[data-theme="dim"] .panel-btn:hover { color: #d4b07a; border-bottom-color: #d4b07a; }
.panel-btn svg { transition: transform 0.3s ease; }
.panel-btn:hover svg { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .scroll-panel { width: 85vw; gap: 40px; }
  .panel-title  { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .horizontal-scroll-wrapper   { height: auto; overflow: visible; }
  .horizontal-scroll-container { position: relative; height: auto; width: 100%; overflow: visible; }

  .horizontal-scroll-track {
    flex-direction: column;
    gap: 48px;
    padding: 60px 20px;
    transform: none !important;
    width: 100%;
  }

  .scroll-panel {
    width: 100%; height: auto;
    flex-direction: column !important;
    gap: 0;
    position: relative;
    border-radius: 20px;
    overflow: visible;
  }

  .scroll-panel.text-right { flex-direction: column !important; }

  .panel-image {
    width: 100%; height: 340px;
    border-radius: 20px; flex: none; order: 1;
  }

  .panel-text {
    order: 2;
    width: calc(100% - 32px);
    flex: none;
    margin-top: -60px;
    margin-left: auto; margin-right: auto;
    padding: 24px 20px;
    gap: 14px;
    border-radius: 16px;
    position: relative; z-index: 2;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(176, 141, 87, 0.2);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.12), inset 0 1px 0 rgba(176, 141, 87, 0.1);
    will-change: transform, opacity;
    transform: translateY(20px); opacity: 0;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html[data-theme="dim"] .panel-text {
    background: rgba(36, 52, 66, 0.95);
    border-color: rgba(176, 141, 87, 0.25);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(176, 141, 87, 0.12);
  }

  .scroll-panel.mobile-visible .panel-text { transform: translateY(0); opacity: 1; }

  .text-left .panel-text,
  .text-right .panel-text {
    margin-right: auto; margin-left: auto;
    padding-right: 20px; padding-left: 20px;
  }

  .panel-title       { font-size: 1.9rem; }
  .panel-description { font-size: var(--text-body); line-height: 1.65; }
  .panel-info        { padding: 20px; margin-top: 8px; }
  .panel-buttons     { flex-direction: column; }
  .panel-btn         { font-size: var(--text-body); justify-content: center; }

  .scroll-panel-text-only { overflow: visible; border-radius: 0; gap: 0; }
  .scroll-panel-text-only .panel-image { display: none; }

  .scroll-panel-text-only .panel-text,
  .scroll-panel-text-only .panel-text-full {
    order: 1; width: 100%;
    margin-top: 0 !important; margin-left: 0 !important; margin-right: 0 !important;
    padding: 20px 0 !important;
    background: transparent !important; backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important; box-shadow: none !important;
    opacity: 1 !important; transform: none !important; transition: none !important;
  }

  html[data-theme="dim"] .scroll-panel-text-only .panel-text,
  html[data-theme="dim"] .scroll-panel-text-only .panel-text-full {
    background: transparent !important; border: none !important; box-shadow: none !important;
  }
}

@media (max-width: 480px) {
  .panel-title  { font-size: 1.6rem; }
  .panel-image  { height: 280px; }
  .panel-text   { margin-top: -80px; padding: 22px 18px; }
}/* ==========================================
   PROCESS STEPS SECTION
   Royal Bronze Theme
   ========================================== */

.process-steps-section {
  position: relative;
  padding: 80px 20px 120px;
  margin-top: -120px;
  overflow: hidden; background: transparent; z-index: 3;
}

.process-container { max-width: 1400px; margin: 0 auto; }

.process-header {
  text-align: center; margin-bottom: 80px;
  padding-top: 28px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s ease;
}

.process-header.visible { opacity: 1; transform: translateY(0); }

/* Kicker — Inter */
.process-kicker {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(44, 62, 80, 0.6);
  margin-bottom: 16px;
}

html[data-theme="dim"] .process-kicker { color: rgba(176, 141, 87, 0.7); }

/* Title — Cormorant Garamond */
.process-title {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--weight-h1);
  font-style: normal;
  line-height: 1.1;
  color: #2C3E50; margin-bottom: 16px;
  letter-spacing: -0.02em;
}

html[data-theme="dim"] .process-title { color: #B08D57; }

/* Subtitle — Inter */
.process-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: var(--weight-lead);
  color: rgba(44, 62, 80, 0.7);
  max-width: 600px; margin: 0 auto;
}

html[data-theme="dim"] .process-subtitle { color: rgba(245, 242, 237, 0.7); }

/* Timeline */
.process-timeline { position: relative; padding: 60px 0; }

.timeline-book-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; max-width: 10000px; aspect-ratio: 3 / 2;
  z-index: -1; pointer-events: none;
  background-repeat: no-repeat; background-position: center; background-size: contain;
  opacity: 0.12;
}

html[data-theme="dim"] .timeline-book-bg { opacity: 0.15; }

.timeline-line {
  position: absolute; top: 115px; left: 0;
  height: 3px; width: 100%; z-index: 0;
  background: linear-gradient(90deg, rgba(176,141,87,0.15) 0%, rgba(176,141,87,0.08) 100%);
}

.timeline-line-progress {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, #B08D57, #d4b07a);
  width: 0%; transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(176,141,87,0.35);
}

.timeline-line.visible .timeline-line-progress { width: 100%; }

.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 40px; position: relative; z-index: 1;
}

.process-step {
  text-align: center;
  opacity: 0; transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step.visible { opacity: 1; transform: translateY(0); }

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }
.process-step:nth-child(5) { transition-delay: 0.5s; }

.step-icon-wrapper {
  position: relative; width: 120px; height: 120px;
  margin: 0 auto 24px; cursor: pointer;
  animation: float 3s ease-in-out infinite;
}

.step-icon-wrapper:nth-child(1) { animation-delay: 0s; }
.step-icon-wrapper:nth-child(2) { animation-delay: 0.2s; }
.step-icon-wrapper:nth-child(3) { animation-delay: 0.4s; }
.step-icon-wrapper:nth-child(4) { animation-delay: 0.6s; }
.step-icon-wrapper:nth-child(5) { animation-delay: 0.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.step-icon-bg {
  position: absolute; inset: 0;
  background: rgba(176,141,87,0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 2px solid rgba(176,141,87,0.2); border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(176,141,87,0.12), inset 0 1px 0 rgba(176,141,87,0.15);
}

html[data-theme="dim"] .step-icon-bg { background: rgba(176,141,87,0.12); border-color: rgba(176,141,87,0.25); }

.process-step:hover .step-icon-bg {
  background: rgba(176,141,87,0.15); border-color: #B08D57;
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(176,141,87,0.25), 0 0 0 4px rgba(176,141,87,0.1), inset 0 1px 0 rgba(176,141,87,0.25);
}

.step-icon {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}

.step-icon img { width: 60%; height: 60%; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(176,141,87,0.2)); }

html[data-theme="dim"] .step-icon img { filter: invert(1) drop-shadow(0 4px 12px rgba(176,141,87,0.2)); }

/* Step number — Inter */
.step-number {
  position: absolute; top: -8px; right: -8px;
  width: 32px; height: 32px;
  background: #B08D57; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-button);
  color: #fff;
  box-shadow: 0 4px 12px rgba(176,141,87,0.4); z-index: 2;
}

/* Step title — Cormorant Garamond */
.step-title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-h3);
  font-style: normal;
  color: #2C3E50; margin-bottom: 12px;
}

html[data-theme="dim"] .step-title { color: #B08D57; }

/* Step description — Inter */
.step-description {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-body);
  line-height: 1.6;
  color: rgba(44, 62, 80, 0.7);
}

html[data-theme="dim"] .step-description { color: rgba(245, 242, 237, 0.7); }

.process-cta-wrapper {
  margin-top: 80px; text-align: center;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s ease 0.8s;
}

.process-cta-wrapper.visible { opacity: 1; transform: translateY(0); }

/* Process button — Inter */
.process-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: var(--text-button);
  font-weight: var(--weight-button);
  font-style: normal;
  letter-spacing: 0.02em;
  border-radius: 10px; text-decoration: none;
  transition: all 0.3s ease; cursor: pointer;
  background: rgba(176,141,87,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(176,141,87,0.3); color: #fff;
  box-shadow: 0 8px 24px rgba(176,141,87,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.process-btn:hover {
  background: #B08D57; border-color: rgba(176,141,87,0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(176,141,87,0.4), 0 0 0 1px rgba(176,141,87,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 1200px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 768px) {
  .process-steps-section { padding: 60px 20px 100px; margin-top: -60px; }
  .process-header { padding-top: 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 60px; }

  .timeline-line {
    left: 50%; top: 0; width: 3px; height: 100%; transform: translateX(-50%);
  }

  .timeline-line-progress {
    width: 100% !important; height: 0%;
    transition: height 2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .timeline-line.visible .timeline-line-progress { height: 100%; }
  .process-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .step-icon-wrapper { width: 100px; height: 100px; }
}/* ==========================================
   KONFIGURATOR SHOWCASE SECTION
   Royal Bronze Theme
   ========================================== */

.konfig-showcase {
  position: relative;
  padding: 120px 20px;
  background: transparent;
  overflow: hidden;
}

.konfig-showcase-container {
  max-width: 2100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Video side ── */
.konfig-showcase-media {
  position: relative; z-index: 1;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.konfig-video-wrapper {
  position: relative;
  width: 100%; aspect-ratio: 870 / 490; max-width: 870px;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(44,62,80,0.25), 0 0 0 1px rgba(176,141,87,0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.konfig-video-wrapper:hover {
  box-shadow: 0 32px 100px rgba(176,141,87,0.3), 0 0 0 1px rgba(176,141,87,0.4);
  transform: scale(1.02);
}

.konfig-video { width: 100%; height: 100%; object-fit: cover; display: block; }

.konfig-accent-image {
  position: absolute; width: 180px; height: 140px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(44,62,80,0.3);
  border: 3px solid rgba(176,141,87,0.2);
  will-change: transform;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.konfig-accent-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.konfig-accent-image:hover img { transform: scale(1.1); }
.konfig-accent-top    { top: -100px; left: -40px; transform: rotate(-8deg); }
.konfig-accent-bottom { bottom: -20px; right: -40px; transform: rotate(6deg); }

/* ── Text side ── */
.konfig-showcase-content {
  position: relative; z-index: 2;
  will-change: transform, opacity;
  transition: transform 0.1s ease-out;
}

/* Title — Cormorant Garamond */
.konfig-showcase-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--weight-h1);
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #2C3E50;
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

html[data-theme="dim"] .konfig-showcase-title { color: #B08D57; }

/* Subtitle — Inter */
.konfig-showcase-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(44,62,80,0.6);
  margin: 0 0 32px;
  opacity: 0; transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

html[data-theme="dim"] .konfig-showcase-subtitle { color: rgba(176,141,87,0.7); }

/* Description — Inter */
.konfig-showcase-description {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  font-style: normal;
  line-height: 1.7;
  color: rgba(44,62,80,0.85);
  margin: 0 0 40px; max-width: 560px;
  opacity: 0; transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

html[data-theme="dim"] .konfig-showcase-description { color: rgba(245,242,237,0.85); }

.konfig-showcase-features {
  display: flex; flex-direction: column;
  gap: 16px; margin-bottom: 48px;
}

/* Feature items — Inter */
.konfig-feature-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-button);
  font-style: normal;
  color: rgba(44,62,80,0.9);
  opacity: 0; transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.konfig-feature-item:nth-child(1) { animation-delay: 0.6s; }
.konfig-feature-item:nth-child(2) { animation-delay: 0.7s; }
.konfig-feature-item:nth-child(3) { animation-delay: 0.8s; }
.konfig-feature-item:nth-child(4) { animation-delay: 0.9s; }

html[data-theme="dim"] .konfig-feature-item { color: rgba(245,242,237,0.9); }

.konfig-feature-icon {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(176,141,87,0.15); color: #B08D57;
  font-size: 14px; transition: all 0.3s ease;
}

.konfig-feature-item:hover .konfig-feature-icon {
  background: rgba(176,141,87,0.25);
  transform: scale(1.15) rotate(10deg);
}

/* CTA — Inter (kursiv als Akzent erlaubt) */
.konfig-showcase-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 0 4px;
  background: none; border: none;
  border-bottom: 2px solid currentColor;
  color: #2C3E50;
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: var(--weight-button);
  font-style: italic;
  letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0; transform: translateY(20px);
  animation: fadeInUp 0.8s ease 1s forwards;
}

html[data-theme="dim"] .konfig-showcase-cta { color: #B08D57; }

.konfig-showcase-cta:hover { color: #B08D57; border-bottom-color: #B08D57; transform: translateY(-1px); }
html[data-theme="dim"] .konfig-showcase-cta:hover { color: #d4b07a; border-bottom-color: #d4b07a; }
.konfig-showcase-cta svg { transition: transform 0.3s ease; }
.konfig-showcase-cta:hover svg { transform: translateX(4px); }

@keyframes fadeInUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { to { opacity: 1; transform: translateX(0); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .konfig-showcase-container { grid-template-columns: 1fr; gap: 60px; }
  .konfig-showcase-media    { order: 2; }
  .konfig-showcase-content  { order: 1; text-align: center; }
  .konfig-showcase-description { margin-left: auto; margin-right: auto; }
  .konfig-showcase-features { align-items: center; }
  .konfig-video-wrapper     { max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  .konfig-showcase            { padding: 80px 20px; }
  .konfig-video-wrapper       { width: 100%; border-radius: 16px; }
  .konfig-accent-image        { width: 120px; height: 90px; }
  .konfig-accent-top          { left: -20px; }
  .konfig-accent-bottom       { right: -20px; }
}

@media (max-width: 480px) {
  .konfig-video-wrapper  { border-radius: 12px; }
  .konfig-accent-image   { display: none; }
  .konfig-showcase-cta   { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .konfig-showcase-media, .konfig-showcase-content,
  .konfig-accent-image, .konfig-video-wrapper,
  .konfig-showcase-title, .konfig-showcase-subtitle,
  .konfig-showcase-description, .konfig-feature-item,
  .konfig-showcase-cta {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important;
  }
}/* ==========================================
   LOGO CAROUSEL SECTION - BIGGER LOGOS
   ========================================== */

.logo-carousel-section {
  position: relative;
  padding: 80px 0 40px 0;
  overflow: hidden;
  background: transparent;
  max-width: 100vw; /* ← FIX */
}

.logo-carousel-container {
  width: 100%;
  max-width: 100%; /* ← FIX */
  margin: 0 auto;
  overflow: hidden; /* ← FIX */
}

.logo-carousel-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.logo-carousel-header.logo-visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-carousel-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

html[data-theme="dim"] .logo-carousel-title { color: #fff; }

.logo-carousel-subtitle {
  font-size: 1.15rem;
  color: rgba(15, 23, 42, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

html[data-theme="dim"] .logo-carousel-subtitle { color: rgba(255, 255, 255, 0.7); }

/* Carousel Wrapper */
.logo-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: paint; /* ← KEY FIX: hard-clips animated track regardless of transform */
  padding: 60px 0;
}

/* Carousel Track – intentionally wider than viewport, clipped by wrapper */
.logo-carousel-track {
  display: flex;
  gap: 100px;
  animation: scrollLogos 30s linear infinite;
  width: max-content; /* wide by design – clipped by overflow:hidden above */
}

.logo-carousel-wrapper:hover .logo-carousel-track {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-carousel-item {
  flex-shrink: 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.logo-carousel-item:hover {
  opacity: 1;
  transform: scale(1.15);
}

.logo-carousel-item img {
  height: 100%;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: brightness(0) saturate(100%);
}

html[data-theme="dim"] .logo-carousel-item img {
  filter: brightness(0) saturate(100%) invert(1);
}

/* Fade edges */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.logo-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

html[data-theme="dim"] .logo-carousel-wrapper::before {
  background: linear-gradient(90deg, rgba(15,23,42,1) 0%, rgba(15,23,42,0) 100%);
}

html[data-theme="dim"] .logo-carousel-wrapper::after {
  background: linear-gradient(90deg, rgba(15,23,42,0) 0%, rgba(15,23,42,1) 100%);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .logo-carousel-title { font-size: 2rem; }
  .logo-carousel-track { gap: 70px; }
  .logo-carousel-item { height: 90px; }
  .logo-carousel-item img { max-width: 220px; }
  .logo-carousel-wrapper::before,
  .logo-carousel-wrapper::after { width: 80px; }
}

@media (max-width: 480px) {
  .logo-carousel-title { font-size: 1.75rem; }
  .logo-carousel-track { gap: 50px; }
  .logo-carousel-item { height: 70px; }
  .logo-carousel-item img { max-width: 180px; }
}/* ==========================================
   BRIDGE SECTION (Between Logo Carousel & Reviews)
   ========================================== */

.bridge-section {
  position: relative;
  padding: 40px 20px 20px; /* Reduced bottom padding */
  text-align: center;
  overflow: hidden;
}

.bridge-container {
  max-width: 900px;
  margin: 0 auto;
}

.bridge-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.bridge-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.bridge-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  margin: 0 auto 32px;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.bridge-text {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

html[data-theme="dim"] .bridge-text {
  color: rgba(255, 255, 255, 0.8);
}

.bridge-arrow {
  font-size: 2rem;
  color: #8b5cf6;
  margin-top: 32px;
  animation: bounce 2s infinite;
}

html[data-theme="dim"] .bridge-arrow {
  color: #a78bfa;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .bridge-section {
    padding: 40px 20px;
  }

  .bridge-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .bridge-text {
    font-size: 1.1rem;
  }
}/* ==========================================
   COMBINED STATS SECTION
   Royal Bronze Theme
   ========================================== */

.stats-combined-section { position: relative; padding: 120px 20px; background: transparent; overflow: hidden; }

.stats-combined-container {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: stretch; position: relative;
}

/* ── Stat panels ── */
.stats-panel-left,
.stats-panel-right {
  text-align: center; padding: 60px 40px;
  position: relative; display: flex; flex-direction: column;
  justify-content: center; min-height: 500px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 24px; border: 1px solid rgba(44,62,80,0.08);
  box-shadow: 0 8px 32px rgba(44,62,80,0.05), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.1s linear;
  will-change: transform;
}

html[data-theme="dim"] .stats-panel-left,
html[data-theme="dim"] .stats-panel-right {
  background: rgba(255,255,255,0.01); border-color: rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.02);
}

.stats-panel-left:hover,
.stats-panel-right:hover {
  background: rgba(176,141,87,0.05); border-color: rgba(176,141,87,0.2);
  box-shadow: 0 0 30px rgba(176,141,87,0.15), 0 12px 40px rgba(44,62,80,0.12), inset 0 1px 0 rgba(176,141,87,0.1);
}

html[data-theme="dim"] .stats-panel-left:hover,
html[data-theme="dim"] .stats-panel-right:hover {
  background: rgba(176,141,87,0.08); border-color: rgba(176,141,87,0.25);
  box-shadow: 0 0 35px rgba(176,141,87,0.2), 0 12px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(176,141,87,0.15);
}

/* Kicker — Inter */
.stats-panel-kicker {
  font-family: var(--font-body);
  font-size: var(--text-label); font-weight: var(--weight-label);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(44,62,80,0.5); margin-bottom: 24px;
  transition: color 0.3s ease;
}

html[data-theme="dim"] .stats-panel-kicker { color: rgba(245,242,237,0.4); }

.stats-panel-left:hover .stats-panel-kicker,
.stats-panel-right:hover .stats-panel-kicker { color: #B08D57; }

html[data-theme="dim"] .stats-panel-left:hover .stats-panel-kicker,
html[data-theme="dim"] .stats-panel-right:hover .stats-panel-kicker { color: #B08D57; }

/* Counter — Cormorant Garamond */
.stats-panel-counter {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: var(--weight-h1);
  font-style: normal;
  background: linear-gradient(135deg, rgba(44,62,80,0.9), rgba(44,62,80,0.6));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 24px;
  display: inline-block; cursor: pointer;
  transition: all 0.4s ease; position: relative;
}

html[data-theme="dim"] .stats-panel-counter {
  background: linear-gradient(135deg, rgba(245,242,237,0.95), rgba(245,242,237,0.7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.stats-panel-left:hover .stats-panel-counter,
.stats-panel-right:hover .stats-panel-counter {
  background: linear-gradient(135deg, #B08D57, #d4b07a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.stats-panel-counter::after {
  content: ''; position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%; height: 4px;
  background: linear-gradient(135deg, #B08D57, #d4b07a);
  border-radius: 2px; transition: transform 0.4s ease;
}

.stats-panel-counter:hover { transform: scale(1.05); }
.stats-panel-counter:hover::after { transform: translateX(-50%) scaleX(1); }

/* Title — Cormorant Garamond */
.stats-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: var(--weight-h2);
  font-style: normal;
  color: #2C3E50; line-height: 1.3; margin-bottom: 20px;
  transition: color 0.3s ease;
}

html[data-theme="dim"] .stats-panel-title { color: #f5f2ed; }

.stats-panel-left:hover .stats-panel-title,
.stats-panel-right:hover .stats-panel-title { color: #B08D57; }

html[data-theme="dim"] .stats-panel-left:hover .stats-panel-title,
html[data-theme="dim"] .stats-panel-right:hover .stats-panel-title { color: #B08D57; }

/* Subtitle — Inter */
.stats-panel-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body); font-weight: var(--weight-body);
  line-height: 1.7; color: rgba(44,62,80,0.7);
  max-width: 500px; margin: 0 auto 20px;
}

html[data-theme="dim"] .stats-panel-subtitle { color: rgba(245,242,237,0.65); }

/* Description — Inter */
.stats-panel-description {
  font-family: var(--font-body);
  font-size: var(--text-small); font-weight: var(--weight-body);
  line-height: 1.7; color: rgba(44,62,80,0.6);
  max-width: 500px; margin: 0 auto;
}

html[data-theme="dim"] .stats-panel-description { color: rgba(245,242,237,0.55); }

/* Accent line */
.stats-panel-accent {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 2px; height: 60%;
  background: linear-gradient(to bottom, transparent 0%, rgba(176,141,87,0.1) 20%, rgba(176,141,87,0.15) 50%, rgba(176,141,87,0.1) 80%, transparent 100%);
  pointer-events: none; z-index: 1;
}

html[data-theme="dim"] .stats-panel-accent {
  background: linear-gradient(to bottom, transparent 0%, rgba(176,141,87,0.15) 20%, rgba(176,141,87,0.2) 50%, rgba(176,141,87,0.15) 80%, transparent 100%);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .stats-combined-container { gap: 40px; }
  .stats-panel-left, .stats-panel-right { padding: 50px 30px; }
}

@media (max-width: 768px) {
  .stats-combined-section { padding: 80px 20px; }
  .stats-combined-container { grid-template-columns: 1fr; gap: 40px; }
  .stats-panel-left, .stats-panel-right { padding: 40px 30px; }
  .stats-panel-accent { display: none; }
}

@media (max-width: 480px) {
  .stats-panel-left, .stats-panel-right { padding: 30px 20px; }
}/* ==========================================
   REVIEWS SECTION - TRUE HORIZONTAL SCROLL
   Royal Bronze Theme
   ========================================== */

.reviews-section { position: relative; padding: 100px 20px 120px; overflow: hidden; }
.reviews-container { max-width: 1400px; margin: 0 auto; }

.reviews-header {
  text-align: left; margin-bottom: 60px;
  opacity: 1; transform: translateY(0);
  transition: all 0.8s ease;
}

.reviews-header.reviews-visible { opacity: 1; transform: translateY(0); }

/* Kicker — Inter */
.reviews-kicker {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(176, 141, 87, 0.7); margin-bottom: 12px;
}

html[data-theme="dim"] .reviews-kicker { color: #B08D57; }

.reviews-counter { display: none; }

/* Title — Cormorant Garamond */
.reviews-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--weight-h1);
  font-style: normal;
  color: #2C3E50; margin-bottom: 12px;
  letter-spacing: -0.02em; line-height: 1.1;
}

html[data-theme="dim"] .reviews-title { color: #B08D57; }

/* Subtitle — Inter */
.reviews-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  line-height: 1.6;
  color: rgba(44, 62, 80, 0.7); max-width: 700px; margin: 0;
}

html[data-theme="dim"] .reviews-subtitle { color: rgba(245, 242, 237, 0.7); }
.reviews-description { display: none; }

.reviews-stack-wrapper { position: relative; max-width: 100%; margin: 0 auto; padding: 0; overflow: hidden; }

.reviews-stack {
  display: flex; gap: 30px;
  overflow-x: auto; overflow-y: hidden;
  scroll-behavior: smooth; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 20px 0; min-height: 350px;
}

.reviews-stack::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc(50% - 15px); min-width: calc(50% - 15px);
  scroll-snap-align: start; scroll-snap-stop: always;
  background: rgba(176,141,87,0.05);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(176,141,87,0.15);
  border-radius: 20px; padding: 36px;
  box-shadow: 0 8px 32px rgba(176,141,87,0.12), inset 0 1px 0 rgba(176,141,87,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; display: block; position: relative;
}

html[data-theme="dim"] .review-card {
  background: rgba(176,141,87,0.08); border-color: rgba(176,141,87,0.2);
  box-shadow: 0 8px 32px rgba(176,141,87,0.15), inset 0 1px 0 rgba(176,141,87,0.12);
}

#reviewCard1, #reviewCard2, #reviewCard3, #reviewCard4, #reviewCard5,
#reviewCard6, #reviewCard7, #reviewCard8, #reviewCard9, #reviewCard10 {
  opacity: 1 !important; visibility: visible !important;
  pointer-events: auto !important; position: relative !important;
  left: auto !important; top: auto !important; transform: none !important;
}

.review-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(176,141,87,0.1); border-color: #B08D57;
  box-shadow: 0 12px 48px rgba(176,141,87,0.25), inset 0 1px 0 rgba(176,141,87,0.15) !important;
}

html[data-theme="dim"] .review-card:hover {
  background: rgba(176,141,87,0.12); border-color: #B08D57;
  box-shadow: 0 12px 48px rgba(176,141,87,0.3), inset 0 1px 0 rgba(176,141,87,0.18) !important;
}

.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: nowrap; }
.review-author { display: flex; align-items: center; gap: 12px; flex: 1; }

/* Avatar — Cormorant Garamond initial */
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #B08D57, #d4b07a);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px; font-weight: var(--weight-h2);
  color: #fff; flex-shrink: 0; overflow: hidden;
}

/* Author name — Cormorant Garamond */
.review-author-info h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-h3);
  font-style: normal;
  color: #2C3E50; margin-bottom: 2px;
}

html[data-theme="dim"] .review-author-info h3 { color: #B08D57; }

/* Book title — Inter */
.review-book-title {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-body);
  color: rgba(44, 62, 80, 0.6);
}

html[data-theme="dim"] .review-book-title { color: rgba(176, 141, 87, 0.7); }

.review-stars { display: flex; gap: 2px; font-size: 16px; color: #B08D57; flex-shrink: 0; }

/* Review text — Inter */
.review-text {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-body);
  line-height: 1.6; color: rgba(44, 62, 80, 0.8); margin-bottom: 16px;
  display: block; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

html[data-theme="dim"] .review-text { color: rgba(245, 242, 237, 0.8); }

/* Meta — Inter */
.review-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(176,141,87,0.15);
  font-family: var(--font-body);
  font-size: var(--text-label); font-weight: var(--weight-body);
  color: rgba(44, 62, 80, 0.6); gap: 12px;
}

html[data-theme="dim"] .review-meta { color: rgba(245,242,237,0.6); border-top-color: rgba(176,141,87,0.2); }

/* Badge — Inter */
.review-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; background: rgba(176,141,87,0.1);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: var(--text-label); font-weight: var(--weight-label);
  color: #B08D57; white-space: nowrap;
}

html[data-theme="dim"] .review-badge { background: rgba(176,141,87,0.15); color: #d4b07a; }

.review-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* Navigation */
.reviews-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; gap: 30px;
}

.reviews-dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; margin-bottom: 20px; }

.reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(176,141,87,0.2); transition: all 0.3s ease; cursor: pointer;
}

.reviews-dot:hover { background: rgba(176,141,87,0.4); transform: scale(1.2); }
.reviews-dot.active { width: 32px; border-radius: 4px; background: linear-gradient(90deg, #B08D57, #d4b07a); box-shadow: 0 0 10px rgba(176,141,87,0.5); }

html[data-theme="dim"] .reviews-dot       { background: rgba(176,141,87,0.25); }
html[data-theme="dim"] .reviews-dot:hover { background: rgba(176,141,87,0.45); }

.reviews-nav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(176,141,87,0.08); backdrop-filter: blur(12px);
  border: 1.5px solid rgba(176,141,87,0.2);
  color: #2C3E50; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
}

html[data-theme="dim"] .reviews-nav-btn { color: #B08D57; background: rgba(176,141,87,0.1); border-color: rgba(176,141,87,0.25); }
.reviews-nav-btn:hover:not(:disabled) { background: rgba(176,141,87,0.15); border-color: #B08D57; transform: scale(1.05); }
.reviews-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.reviews-progress { flex: 1; display: flex; gap: 12px; align-items: center; margin-left: 20px; }

.reviews-progress-bar {
  flex: 1; height: 4px; background: rgba(176,141,87,0.2); border-radius: 10px; overflow: hidden; position: relative;
}

html[data-theme="dim"] .reviews-progress-bar { background: rgba(176,141,87,0.25); }

.reviews-progress-fill {
  height: 100%; background: linear-gradient(90deg, #B08D57, #d4b07a);
  border-radius: 10px; transition: width 0.3s ease; width: 0%;
  box-shadow: 0 0 10px rgba(176,141,87,0.5);
}

/* Progress text — Inter */
.reviews-progress-text {
  font-family: var(--font-body);
  font-size: var(--text-label); font-weight: var(--weight-button);
  color: rgba(44, 62, 80, 0.7); white-space: nowrap; min-width: 60px; text-align: right;
}

html[data-theme="dim"] .reviews-progress-text { color: rgba(176,141,87,0.8); }

/* ── Responsive ── */
@media (max-width: 1024px) { .review-card { flex: 0 0 100%; min-width: 100%; } }

@media (max-width: 768px) {
  .reviews-section       { padding: 80px 20px; overflow: hidden; }
  .reviews-stack-wrapper { overflow: hidden; }
  .review-card           { flex: 0 0 calc(100vw - 40px); min-width: calc(100vw - 40px); padding: 28px; }

  .reviews-nav    { flex-wrap: wrap; gap: 16px; margin-top: 32px; }
  .reviews-progress { order: 1; flex: 0 0 100%; width: 100%; margin-left: 0; }
  .reviews-nav-btn  { order: 2; flex: 1; width: auto; height: 48px; border-radius: 14px; }
}

@media (max-width: 480px) {
  .review-card { padding: 24px; }
  .review-text { font-size: 0.9rem; -webkit-line-clamp: 5; }
  .review-top  { flex-wrap: wrap; }
  .review-stars { width: 100%; margin-top: 8px; }
}/* ==========================================
   NEWS SECTION — ACCORDION CARDS
   Royal Bronze Theme · Hover Expand
   ========================================== */

.news-section {
  position: relative;
  padding: 80px 0 100px;
  background: transparent;
  overflow: visible;
}

.news-container {
  position: relative;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.news-header {
  text-align: center;
  padding: 0 20px 56px;
}

.news-kicker {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--weight-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(44, 62, 80, 0.5);
  margin-bottom: 12px;
}

html[data-theme="dim"] .news-kicker { color: rgba(176, 141, 87, 0.65); }

/* Title — Cormorant Garamond */
.news-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: var(--weight-h1);
  font-style: normal;
  line-height: 1.08;
  color: #2C3E50;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

html[data-theme="dim"] .news-title { color: #B08D57; }

.news-title::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: #B08D57;
  transition: width 0.35s ease;
}

.news-title:hover { color: #B08D57; }
html[data-theme="dim"] .news-title:hover { color: #d4b07a; }
.news-title:hover::after { width: 100%; }

/* Subtitle — Inter */
.news-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  line-height: 1.6;
  color: rgba(44, 62, 80, 0.65);
  max-width: 620px;
  margin: 0 auto 32px;
}

html[data-theme="dim"] .news-subtitle { color: rgba(245, 242, 237, 0.65); }

/* ── CTA Row ── */
.news-cta-buttons {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.news-cta-btn,
.news-cta-primary,
.news-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 3px;
  background: none; border: none;
  border-bottom: 2px solid currentColor;
  color: #2C3E50;
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: var(--weight-button);
  font-style: italic;
  letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

html[data-theme="dim"] .news-cta-btn,
html[data-theme="dim"] .news-cta-primary,
html[data-theme="dim"] .news-cta-secondary { color: #B08D57; }

.news-cta-btn:hover,
.news-cta-primary:hover,
.news-cta-secondary:hover {
  color: #B08D57; border-bottom-color: #B08D57; transform: translateY(-1px);
}

html[data-theme="dim"] .news-cta-btn:hover,
html[data-theme="dim"] .news-cta-primary:hover,
html[data-theme="dim"] .news-cta-secondary:hover { color: #d4b07a; border-bottom-color: #d4b07a; }

.news-cta-btn svg,
.news-cta-primary svg,
.news-cta-secondary svg { transition: transform 0.3s ease; }

.news-cta-btn:hover svg,
.news-cta-primary:hover svg,
.news-cta-secondary:hover svg { transform: translateX(4px); }

/* ── Accordion Grid ── */
.news-grid {
  display: flex;
  gap: 12px;
  height: 520px;
  padding: 0;
}

/* ── Card Wrapper ── */
.news-card-wrapper {
  flex: 1;
  min-width: 80px;
  transition: flex 1s cubic-bezier(0.22, 1, 0.36, 1); /* war: 0.6s */
  position: relative;
}

/* Expand on hover */
.news-card-wrapper:hover {
  flex: 4;
}

/* Shrink siblings when any card is hovered */
.news-grid:has(.news-card-wrapper:hover) .news-card-wrapper:not(:hover) {
  flex: 0.4;
}

/* ── Card ── */
.news-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(176, 141, 87, 0.18);
  box-shadow: 0 6px 24px rgba(176, 141, 87, 0.10);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  background: #1b1712;
}

html[data-theme="dim"] .news-card {
  border-color: rgba(176, 141, 87, 0.22);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

.news-card:hover {
  border-color: #B08D57;
  box-shadow: 0 12px 40px rgba(176, 141, 87, 0.22);
}

/* ── Card Image ── */
.news-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1); /* war: 0.6s */
  will-change: transform;
}

.news-card:hover .news-card-image {
  transform: scale(1.05);
}

/* Dark overlay — always present, stronger at bottom */
.news-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
  transition: opacity 0.4s ease;
}

/* ── Card Content — hidden until hover ── */
.news-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(12px);
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),   /* war: 0.5s */
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);  /* war: 0.5s */
}

.news-card-wrapper:hover .news-card-content {
  opacity: 1;
  transform: translateY(0);
}

/* Meta — Inter */
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(245, 242, 237, 0.7);
}

.news-card-date {
  font-weight: var(--weight-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Tag — Inter */
.news-card-tag {
  padding: 3px 8px;
  background: rgba(176, 141, 87, 0.25);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--weight-button);
  color: #d4b07a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Card title — Cormorant Garamond */
.news-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: var(--weight-h3);
  font-style: normal;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

/* Card text — Inter */
.news-card-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: var(--weight-body);
  line-height: 1.55;
  color: rgba(245, 242, 237, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA — Inter */
.news-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: var(--weight-button);
  color: #B08D57;
  margin-top: 4px;
  transition: gap 0.3s ease;
}

.news-card:hover .news-card-cta { gap: 12px; }

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {
  .news-grid {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .news-card-wrapper {
    flex: none;
    height: 180px;
    min-width: unset;
    transition: height 1s cubic-bezier(0.22, 1, 0.36, 1); /* war: 0.6s */
  }

  .news-card-wrapper:hover {
    height: 340px;
    flex: none;
  }

  .news-grid:has(.news-card-wrapper:hover) .news-card-wrapper:not(:hover) {
    flex: none;
    height: 100px;
  }

  .news-card { border-radius: 14px; }
  .news-card-content { padding: 20px 16px; }
  .news-card-title { font-size: 1rem; }
  .news-card-text { -webkit-line-clamp: 2; font-size: 0.8rem; }

  .news-header { padding: 0 16px 40px; }
  .news-title  { font-size: 1.75rem; }
  .news-subtitle { font-size: 0.9rem; margin-bottom: 18px; }
  .news-cta-buttons { gap: 18px; }
}

/* ── Very small ≤ 480px ── */
@media (max-width: 480px) {
  .news-card-wrapper { height: 160px; }
  .news-card-wrapper:hover { height: 300px; }
  .news-card-content { padding: 16px 12px; }
  .news-card-title { font-size: 0.95rem; }
}/* ==========================================
   CURSOR FOLLOWER (Non-invasive)
   Royal Bronze Theme
   Base color: bronze gold (#B08D57)
   ========================================== */

/* Cursor Follower - does NOT hide default cursor */
.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;

  /* Small dot: warm bronze + subtle glow */
  background: rgba(176, 141, 87, 0.15);
  border: 2px solid rgba(176, 141, 87, 0.45);

  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease,
    border 0.3s ease,
    opacity 0.3s ease;

  opacity: 0;
}

.cursor-follower.active {
  opacity: 1;
}

/* Dim theme — warmer, elegant bronze glow */
html[data-theme="dim"] .cursor-follower {
  background: rgba(176, 141, 87, 0.20);
  border: 2px solid rgba(176, 141, 87, 0.55);
}

/* Hover State - Bigger & Bronze */
.cursor-follower.hover {
  width: 50px;
  height: 50px;

  /* Stronger bronze presence */
  background: rgba(176, 141, 87, 0.12);
  border: 2px solid rgba(176, 141, 87, 0.75);
}

html[data-theme="dim"] .cursor-follower.hover {
  background: rgba(176, 141, 87, 0.15);
  border: 2px solid rgba(176, 141, 87, 0.85);
}

/* Hide on touch devices */
@media (hover: none) {
  .cursor-follower {
    display: none !important; 
  }
}

/* ==========================================
   FARBPALETTE
   ========================================== 
   
   🎨 BRONZE CURSOR:
   Base:            rgba(176, 141, 87, 0.15)
   Border:          rgba(176, 141, 87, 0.45)
   Hover:           rgba(176, 141, 87, 0.75)
   
   ========================================== */