/**
 * Kay Maik Fotografie - Built CSS
 * Generated: 2026-02-14T21:41:35.725Z
 * Source: main.css + 15 imports + Tailwind utilities
 * DO NOT EDIT - run "node scripts/build-css.js" to regenerate
 */

/* ============================================================
 * Source: utilities/animations.css
 * ============================================================ */
/**
 * Animations
 * ==========
 * Scroll-Animationen und Übergangseffekte
 */

/* ===== Fade In Animations ===== */

/* Basis-Zustand für animierte Elemente */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
}

/* Fade In Up */
[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-up"].is-visible {
  transform: translateY(0);
}

/* Fade In Down */
[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="fade-down"].is-visible {
  transform: translateY(0);
}

/* Fade In Left */
[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"].is-visible {
  transform: translateX(0);
}

/* Fade In Right */
[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate="fade-right"].is-visible {
  transform: translateX(0);
}

/* Fade In Scale */
[data-animate="fade-scale"] {
  transform: scale(0.95);
}

[data-animate="fade-scale"].is-visible {
  transform: scale(1);
}

/* ===== Animation Delays ===== */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }
[data-delay="600"] { transition-delay: 600ms; }
[data-delay="700"] { transition-delay: 700ms; }
[data-delay="800"] { transition-delay: 800ms; }

/* ===== Keyframe Animations ===== */

/* Pulse */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Bounce */
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Spin */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Shimmer (for loading states) */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-shimmer {
  background: linear-gradient(
    90deg,
    var(--color-background) 25%,
    var(--color-background-alt) 50%,
    var(--color-background) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ===== Preloader Animation ===== */
@keyframes preloader-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.preloader-hidden {
  animation: preloader-fade 0.5s ease-out forwards;
  pointer-events: none;
}

/* Logo Animation in Preloader */
@keyframes logo-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.preloader-logo {
  animation: logo-pulse 1.5s ease-in-out infinite;
}

/* ===== Hover Animations ===== */

/* Image Zoom */
.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

.hover-zoom:hover img {
  transform: scale(1.08);
}

/* Lift Effect */
.hover-lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Glow Effect */
.hover-glow {
  transition: box-shadow var(--transition-normal);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(201, 168, 108, 0.3);
}

/* ===== Page Transition ===== */
.page-transition-enter {
  opacity: 0;
  transform: translateY(10px);
}

.page-transition-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-transition-exit {
  opacity: 1;
}

.page-transition-exit-active {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
 * Source: utilities/view-transitions.css
 * ============================================================ */
/* ============================================================
 * View Transitions – Cinematic Page Transitions
 * ============================================================
 * Nutzt die native CSS View Transitions API fuer cinematische
 * Seitenuebergaenge zwischen pages. Funktioniert in Chrome/Edge 111+.
 * Fuer nicht-unterstuetzte Browser gibt es keinen sichtbaren Effekt
 * (Progressive Enhancement).
 *
 * Referenz: https://developer.chrome.com/docs/web-platform/view-transitions
 * ============================================================ */

/* ===== MPA View Transition aktivieren ===== */
@view-transition {
    navigation: auto;
}

/* ===== Globale Transition-Animationen ===== */

/* Standard Crossfade (Fallback fuer alle Elemente) */
::view-transition-old(root) {
    animation: vt-fade-out 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

::view-transition-new(root) {
    animation: vt-fade-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ===== Cinematic Slide fuer den Main-Content ===== */

::view-transition-old(main-content) {
    animation: vt-slide-out-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

::view-transition-new(main-content) {
    animation: vt-slide-in-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ===== Hero-Bereich: Scale + Fade ===== */

::view-transition-old(hero-section) {
    animation: vt-hero-out 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

::view-transition-new(hero-section) {
    animation: vt-hero-in 0.5s cubic-bezier(0.0, 0, 0.2, 1) 0.1s both;
}

/* ===== Navigation: Sofort stehen bleiben ===== */

::view-transition-old(site-nav),
::view-transition-new(site-nav) {
    animation: none;
}

/* ===== Footer: Sanfter Crossfade ===== */

::view-transition-old(site-footer) {
    animation: vt-fade-out 0.25s ease both;
}

::view-transition-new(site-footer) {
    animation: vt-fade-in 0.25s ease 0.15s both;
}

/* ===== Keyframes ===== */

@keyframes vt-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes vt-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes vt-slide-out-left {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-60px);
    }
}

@keyframes vt-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vt-hero-out {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes vt-hero-in {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Reduced Motion: Alles ausklinken ===== */

@media (prefers-reduced-motion: reduce) {

    ::view-transition-old(root),
    ::view-transition-new(root),
    ::view-transition-old(main-content),
    ::view-transition-new(main-content),
    ::view-transition-old(hero-section),
    ::view-transition-new(hero-section),
    ::view-transition-old(site-footer),
    ::view-transition-new(site-footer) {
        animation: none !important;
    }
}

/* ===== view-transition-name Zuweisungen ===== */
/* Nutzt bestehende Selektoren, um HTML-Dateien nicht einzeln aendern zu muessen */

/* Navigation: bleibt stehen beim Seitenwechsel */
.nav {
    view-transition-name: site-nav;
}

/* Hauptinhalt: cinematischer Slide */
#main-content {
    view-transition-name: main-content;
}

/* Footer: sanfter Crossfade */
footer[role="contentinfo"]:not(.portal-footer):not(.admin-footer) {
    view-transition-name: site-footer;
}

/* ============================================================
 * Source: utilities/glassmorphism.css
 * ============================================================ */
/**
 * Glassmorphism Effects
 * =====================
 * Moderne Glass-UI Effekte mit Blur und Transparenz
 */

/* ===== Base Glass Effect ===== */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== Glass Variants ===== */

/* Light Glass - für helle Hintergründe */
.glass-light {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Dark Glass - für dunkle Hintergründe */
.glass-dark {
  background: rgba(45, 45, 45, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

/* Subtle Glass - weniger auffällig */
.glass-subtle {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Strong Glass - mehr Deckkraft */
.glass-strong {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ===== Glass Cards ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

/* ===== Glass Navigation ===== */
.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* ===== Glass Hero Overlay ===== */
.glass-hero {
  background: rgba(255, 251, 245, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
}

/* ===== Glass Button ===== */
.glass-btn {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition-normal);
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ===== Glass Input ===== */
.glass-input {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition-normal);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

/* ===== Glass Modal ===== */
.glass-modal {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

/* ===== Glass Badge ===== */
.glass-badge {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===== Colored Glass ===== */
.glass-primary {
  background: rgba(201, 168, 108, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 108, 0.2);
}

.glass-success {
  background: rgba(124, 154, 124, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 154, 124, 0.2);
}

/* ===== Fallback for browsers without backdrop-filter ===== */
@supports not (backdrop-filter: blur(10px)) {
  .glass,
  .glass-light,
  .glass-subtle,
  .glass-strong,
  .glass-card,
  .glass-nav,
  .glass-hero {
    background: rgba(255, 255, 255, 0.95);
  }

  .glass-dark {
    background: rgba(45, 45, 45, 0.95);
  }
}

/* ============================================================
 * Source: components/navigation.css
 * ============================================================ */
/**
 * Navigation Component
 * ====================
 * Desktop Navigation, Mobile Menu, Sticky Header
 */

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--spacing-md) 0;
  /* Disable transition on initial load - JS enables it after */
  transition: none;
}

.header--loaded {
  transition: padding var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
}

/* Initial State - Solid background at top */
.header--transparent {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

/* Scrolled State - More transparent with blur */
.header--scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: var(--spacing-sm) 0;
}

/* ===== Navigation Container ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
  .nav {
    padding: 0 var(--spacing-xl);
  }
}

/* ===== Logo ===== */
.nav__logo {
  display: flex;
  align-items: center;
  z-index: calc(var(--z-modal) + 1);
}

.nav__logo img {
  height: 50px;
  width: auto;
  /* Disable transition on initial load - JS enables it after */
  transition: none;
}

.header--loaded .nav__logo img {
  transition: height var(--transition-normal);
}

.header--scrolled .nav__logo img {
  height: 40px;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

/* Logo always dark for readability */
.header--transparent .nav__logo-text {
  color: var(--color-text);
}

/* ===== Desktop Menu ===== */
.nav__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .nav__menu {
    display: flex;
  }
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: var(--spacing-sm) 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.025em;
  transition: color var(--transition-fast);
}

/* Nav links always dark for readability */
.header--transparent .nav__link {
  color: var(--color-text);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.header--transparent .nav__link:hover,
.header--transparent .nav__link--active {
  color: var(--color-primary);
}

/* Underline Effect */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* ===== Dropdown ===== */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: var(--spacing-sm) 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.025em;
  transition: color var(--transition-fast);
}

.nav__dropdown-toggle:hover {
  color: var(--color-primary);
}

.nav__dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform 300ms ease;
}

.nav__item--dropdown.nav__item--open .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 108, 0.15);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  list-style: none;
  margin: 8px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 200ms ease;
  z-index: var(--z-dropdown);
}

@media (hover: hover) {
  .nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__item--dropdown:hover .nav__dropdown-icon {
    transform: rotate(180deg);
  }
}

.nav__item--dropdown.nav__item--open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text);
  transition: background 150ms ease, color 150ms ease;
}

.nav__dropdown-link:hover {
  background: rgba(201, 168, 108, 0.08);
  color: var(--color-primary);
}

/* Underline-Effekt nicht auf Dropdown-Toggle */
.nav__dropdown-toggle::after {
  display: none;
}

/* ===== CTA Button in Nav ===== */
.nav__cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav__cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }
}

.nav__cta .btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 0.8rem;
}

/* Portal Login Icon */
.nav__portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text-muted);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.nav__portal-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(201, 168, 108, 0.08);
}

/* ===== Mobile Menu Toggle ===== */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-modal) + 1);
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Mobile toggle always dark */
.header--transparent .nav__toggle-bar {
  background-color: var(--color-text);
}

.nav__toggle-bar + .nav__toggle-bar {
  margin-top: 6px;
}

/* Toggle Active State */
.nav__toggle--active .nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle--active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav__toggle--active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 251, 245, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  overflow-y: auto;
  padding: 5rem 1rem 2rem;
}

.mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ===== Mobile Menu List ===== */
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-menu__item {
  margin: 0.6rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.mobile-menu--open .mobile-menu__item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation */
.mobile-menu--open .mobile-menu__item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu--open .mobile-menu__item:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu--open .mobile-menu__item:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu--open .mobile-menu__item:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu--open .mobile-menu__item:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu--open .mobile-menu__item:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu--open .mobile-menu__item:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu--open .mobile-menu__item:nth-child(8) { transition-delay: 0.45s; }
.mobile-menu--open .mobile-menu__item:nth-child(9) { transition-delay: 0.5s; }
.mobile-menu--open .mobile-menu__item:nth-child(10) { transition-delay: 0.55s; }
.mobile-menu--open .mobile-menu__item:nth-child(11) { transition-delay: 0.6s; }
.mobile-menu--open .mobile-menu__item:nth-child(12) { transition-delay: 0.65s; }

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

@media (min-height: 700px) {
  .mobile-menu__link {
    font-size: 1.75rem;
  }
  .mobile-menu__item {
    margin: 0.85rem 0;
  }
}

.mobile-menu__link:hover {
  color: var(--color-primary);
}

/* ===== Mobile Menu CTA ===== */
.mobile-menu__cta {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  transition-delay: 0.7s;
}

.mobile-menu--open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Menu Social ===== */
.mobile-menu__social {
  margin-top: 1.5rem;
  display: flex;
  gap: var(--spacing-lg);
  flex-shrink: 0;
}

.mobile-menu__social a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.mobile-menu__social a:hover {
  color: var(--color-primary);
}

.mobile-menu__social svg {
  width: 24px;
  height: 24px;
}

/* ============================================================
 * Source: components/hero.css
 * ============================================================ */
/**
 * Hero Section
 * ============
 * Fullscreen Hero mit Parallax und Glassmorphismus
 */

/* ===== Hero Container ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ===== Hero Background ===== */
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  will-change: transform;
}

/* Overlay Gradient */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 251, 245, 0.85) 0%,
    rgba(255, 251, 245, 0.6) 40%,
    rgba(255, 251, 245, 0.2) 70%,
    transparent 100%
  );
}

@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 251, 245, 0.9) 0%,
      rgba(255, 251, 245, 0.7) 50%,
      rgba(255, 251, 245, 0.5) 100%
    );
  }
}

/* ===== Hero Content ===== */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: var(--spacing-4xl) var(--spacing-lg);
  padding-top: calc(80px + var(--spacing-4xl)); /* Account for fixed header */
}

@media (min-width: 768px) {
  .hero__content {
    padding: var(--spacing-4xl) var(--spacing-xl);
    padding-top: calc(80px + var(--spacing-4xl));
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding-left: calc((100vw - 1280px) / 2 + var(--spacing-xl));
    max-width: 700px;
  }
}

/* ===== Hero Text ===== */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
}

.hero__description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-2xl);
  max-width: 480px;
}

/* ===== Hero CTA ===== */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.hero__cta .btn {
  padding: var(--spacing-md) var(--spacing-2xl);
}

.hero__cta-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===== Hero Scroll Indicator ===== */
.hero__scroll {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-text-muted);
  animation: float 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll-icon {
  width: 24px;
  height: 36px;
  border: 2px solid var(--color-text-muted);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 2px;
  animation: scroll-indicator 1.5s ease-in-out infinite;
}

@keyframes scroll-indicator {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(8px);
  }
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

/* ===== Alternative Hero Layout (Centered) ===== */
.hero--centered {
  text-align: center;
}

.hero--centered .hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

.hero--centered .hero__cta {
  align-items: center;
}

.hero--centered .hero__description {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Hero with Glass Card ===== */
.hero__glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
  .hero__glass-card {
    padding: var(--spacing-3xl);
  }
}

/* ============================================================
 * Source: components/cards.css
 * ============================================================ */
/**
 * Cards Component
 * ===============
 * Service Cards, Portfolio Cards mit Glassmorphismus
 */

/* ===== Cards Grid ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Service Card ===== */
.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.95);
}

/* Service Card Icon */
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-md);
  color: var(--color-accent-green);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

/* Checkmark Circle */
.service-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent-green-light);
  border-radius: 50%;
  color: var(--color-accent-green);
  margin-bottom: var(--spacing-md);
}

.service-card__check svg {
  width: 20px;
  height: 20px;
}

/* Service Card Title */
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

/* Service Card Description */
.service-card__description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

/* Service Card Button */
.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--color-text);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.service-card__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ===== Portfolio Card ===== */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.portfolio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.08);
}

/* Portfolio Card Overlay */
.portfolio-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
}

.portfolio-card__subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Portfolio Grid (Masonry-like) ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

/* Middle card slightly larger */
.portfolio-grid .portfolio-card:nth-child(2) {
  aspect-ratio: 4/5;
}

@media (min-width: 769px) {
  .portfolio-grid .portfolio-card:nth-child(1),
  .portfolio-grid .portfolio-card:nth-child(3) {
    margin-top: var(--spacing-xl);
  }
}

/* ===== Feature Card ===== */
.feature-card {
  text-align: center;
  padding: var(--spacing-xl);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary);
}

.feature-card__icon svg {
  width: 32px;
  height: 32px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.feature-card__description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== Services Container ===== */
.services-container {
  display: flex;
  justify-content: center;
}

.services-wrapper {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .services-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* ===== Portfolio Link ===== */
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-2xl);
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.portfolio-link:hover {
  color: var(--color-primary);
  gap: var(--spacing-md);
}

.portfolio-link svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.portfolio-link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
 * Source: components/timeline.css
 * ============================================================ */
/**
 * Timeline Component
 * ==================
 * Prozess-Timeline für "So läuft's ab" Sektion
 */

/* ===== Process Section ===== */
.process {
  padding: var(--spacing-4xl) 0;
}

.process__title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.process__title h2 {
  font-style: italic;
}

/* ===== Timeline Container ===== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-lg);
  }
}

/* ===== Timeline Step ===== */
.timeline__step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.timeline__step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 767px) {
  .timeline__step {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ===== Timeline Icon ===== */
.timeline__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-muted);
}

.timeline__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

/* ===== Timeline Number ===== */
.timeline__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

/* ===== Timeline Title ===== */
.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

/* ===== Timeline Description ===== */
.timeline__description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== Timeline Connector (Desktop) ===== */
@media (min-width: 768px) {
  .timeline__step {
    position: relative;
  }

  .timeline__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(-1 * var(--spacing-lg) / 2 - 20px);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-light), transparent);
    transform: translateY(-50%);
  }
}

/* ===== Vertical Timeline (Alternative) ===== */
.timeline--vertical {
  flex-direction: column;
  position: relative;
  padding-left: var(--spacing-3xl);
}

.timeline--vertical::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-primary),
    var(--color-primary-light)
  );
}

.timeline--vertical .timeline__step {
  position: relative;
  text-align: left;
  max-width: none;
}

.timeline--vertical .timeline__step::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--spacing-3xl) + 8px);
  top: var(--spacing-xl);
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
}

.timeline--vertical .timeline__step:not(:last-child)::after {
  display: none;
}

/* ===== Process Steps (Horizontal Cards) ===== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.process-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-muted);
}

.process-step__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.process-step__description {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================================
 * Source: components/forms.css
 * ============================================================ */
/**
 * Forms Component
 * ===============
 * Kontaktformular mit eleganten Focus-States
 */

/* ===== Contact Section ===== */
.contact {
  padding: var(--spacing-4xl) 0;
}

.contact__title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.contact__title h2 {
  font-style: italic;
}

/* ===== Form Container ===== */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Form ===== */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* ===== Form Row (Two Columns) ===== */
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 640px) {
  .form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Form Group ===== */
.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

/* ===== Form Label ===== */
.form__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.form__label--required::after {
  content: ' *';
  color: var(--color-primary);
}

/* ===== Form Input & Textarea ===== */
.form__input,
.form__textarea {
  width: 100%;
  padding: var(--spacing-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

/* Focus State */
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

/* Hover State */
.form__input:hover:not(:focus),
.form__textarea:hover:not(:focus) {
  border-color: rgba(0, 0, 0, 0.2);
}

/* ===== Textarea ===== */
.form__textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== Form Select ===== */
.form__select {
  width: 100%;
  padding: var(--spacing-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232D2D2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacing-md) center;
  background-size: 16px;
  padding-right: calc(var(--spacing-md) * 2 + 16px);
  transition: all var(--transition-normal);
}

.form__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

/* ===== Form Checkbox ===== */
.form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.form__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form__checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.form__checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ===== reCAPTCHA Placeholder ===== */
.form__captcha {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--color-background-alt);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
}

.form__captcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form__captcha-checkbox:hover {
  border-color: var(--color-primary);
}

.form__captcha-text {
  font-size: 0.9rem;
  color: var(--color-text);
}

.form__captcha-logo {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* ===== Form Submit Button ===== */
.form__submit {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-text);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.form__submit:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form__submit:active {
  transform: translateY(0);
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== Form Messages ===== */
.form__message {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
}

.form__message--success {
  background: rgba(124, 154, 124, 0.15);
  color: var(--color-accent-green);
  border: 1px solid rgba(124, 154, 124, 0.3);
}

.form__message--error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* ===== Form Validation States ===== */
.form__input--error,
.form__textarea--error {
  border-color: #dc3545;
}

.form__input--error:focus,
.form__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form__error-text {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: var(--spacing-xs);
}

/* ===== Floating Label (Optional) ===== */
.form__group--floating {
  position: relative;
}

.form__group--floating .form__input,
.form__group--floating .form__textarea {
  padding-top: calc(var(--spacing-md) + 8px);
}

.form__group--floating .form__label {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.form__group--floating .form__input:focus ~ .form__label,
.form__group--floating .form__input:not(:placeholder-shown) ~ .form__label,
.form__group--floating .form__textarea:focus ~ .form__label,
.form__group--floating .form__textarea:not(:placeholder-shown) ~ .form__label {
  top: 6px;
  font-size: 0.75rem;
  color: var(--color-primary);
}

/* ===== Gold Submit Button (Anfrage Page) ===== */
.form__submit--gold {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.form__submit--gold:hover:not(:disabled) {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form__submit--gold:disabled {
  background: #ccc;
  border-color: #ccc;
  color: #888;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ===== Date & Time Inputs ===== */
.form__input[type="date"],
.form__input[type="time"] {
  cursor: pointer;
}

.form__input[type="date"]::-webkit-calendar-picker-indicator,
.form__input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: opacity(0.6);
  transition: filter var(--transition-fast);
}

.form__input[type="date"]:hover::-webkit-calendar-picker-indicator,
.form__input[type="time"]:hover::-webkit-calendar-picker-indicator {
  filter: opacity(1);
}

/* ===== Select Error State ===== */
.form__select--error {
  border-color: #dc3545;
}

.form__select--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

/* ===== Checkbox Error State ===== */
.form__checkbox-group--error {
  padding: var(--spacing-sm);
  background: rgba(220, 53, 69, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* ===== Loading Spinner Animation ===== */
/* @keyframes spin ist in animations.css definiert */

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ===== Success State (After Form Submission) ===== */
.form--success {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.form--success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: rgba(124, 154, 124, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-green);
}

.form--success__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.form--success__message {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

/* ===== Privacy Notice ===== */
.form__privacy-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-lg);
}

.form__privacy-notice svg {
  color: var(--color-accent-green);
  flex-shrink: 0;
}

/* ===== reCAPTCHA Container ===== */
.form__recaptcha {
  display: flex;
  justify-content: center;
}

.form__recaptcha > div {
  transform-origin: center;
}

@media (max-width: 400px) {
  .form__recaptcha > div {
    transform: scale(0.9);
  }
}

/* ============================================================
 * Source: components/side-images.css
 * ============================================================ */
/**
 * Side Images
 * ===========
 * Fixierte Seitenbilder mit Gradient-Overlays (Desktop only)
 */

/* Fixed side images */
.side-image-left,
.side-image-right {
  position: fixed;
  top: 56px;
  bottom: 0;
  width: 28%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.side-image-left {
  left: 0;
}
.side-image-right {
  right: 0;
}
.side-image-left img,
.side-image-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-image-left img {
  object-position: right center;
}
.side-image-right img {
  object-position: left center;
}

/* Fade overlay on images */
.side-image-left .overlay,
.side-image-right .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.side-image-left .overlay {
  background: linear-gradient(to right, rgba(255,251,245,0) 0%, rgba(255,251,245,0.7) 60%, rgba(255,251,245,1) 100%);
}
.side-image-right .overlay {
  background: linear-gradient(to left, rgba(255,251,245,0) 0%, rgba(255,251,245,0.7) 60%, rgba(255,251,245,1) 100%);
}

/* Hide side images on mobile */
@media (max-width: 1024px) {
  .side-image-left,
  .side-image-right {
    display: none;
  }
}

/* ============================================================
 * Source: components/cookie-consent.css
 * ============================================================ */
/**
 * Cookie Consent Banner
 * =====================
 * DSGVO-konformer Cookie-Consent im Glassmorphism-Stil
 */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  padding: var(--spacing-lg);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-consent.is-visible {
  transform: translateY(0);
}

.cookie-consent__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
  }
}

.cookie-consent__text {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.cookie-consent__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__text a:hover {
  color: var(--color-primary-dark);
}

.cookie-consent__actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.cookie-consent__btn--accept {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.cookie-consent__btn--accept:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cookie-consent__btn--necessary {
  background-color: transparent;
  color: var(--color-text-light);
  border-color: var(--color-text-muted);
}

.cookie-consent__btn--necessary:hover {
  border-color: var(--color-text);
  color: var(--color-text);
  transform: translateY(-1px);
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
  .cookie-consent__inner {
    background: rgba(255, 255, 255, 0.98);
  }
}

@media (max-width: 480px) {
  .cookie-consent {
    padding: var(--spacing-sm);
  }

  .cookie-consent__inner {
    padding: var(--spacing-lg);
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
 * Source: components/lightbox.css
 * ============================================================ */
/**
 * Lightbox Component
 * ==================
 * Fullscreen-Bildansicht mit Navigation und Touch-Swipe
 */

/* Dialog Reset */
.lightbox-dialog {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  overflow: hidden;
}

.lightbox-dialog::backdrop {
  background: rgba(0, 0, 0, 0.95);
}

/* Container */
.lightbox__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

/* Image */
.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: default;
}

.lightbox__image--loaded {
  opacity: 1;
}

/* Navigation Buttons */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox__nav:focus-visible {
  outline: 2px solid var(--color-primary, #C9A86C);
  outline-offset: 2px;
}

.lightbox__nav--prev {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

.lightbox__nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Close Button */
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--color-primary, #C9A86C);
  outline-offset: 2px;
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Counter */
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  z-index: 10;
}

/* Loading Spinner */
.lightbox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-primary, #C9A86C);
  border-radius: 50%;
  animation: lightbox-spin 0.8s linear infinite;
}

@keyframes lightbox-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile */
@media (max-width: 768px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .lightbox__nav--prev {
    left: 8px;
  }

  .lightbox__nav--next {
    right: 8px;
  }

  .lightbox__image {
    max-width: 96vw;
    max-height: 80vh;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .lightbox__image {
    transition: none;
  }

  .lightbox__spinner {
    animation: none;
  }
}

/* Clickable portfolio images */
[data-lightbox-group] img,
.lightbox-trigger {
  cursor: zoom-in;
}

/* ============================================================
 * Source: components/portal.css
 * ============================================================ */
/**
 * Portal Component (Customer Portal)
 * ====================================
 * Kundenportal: Login, Sidebar, Topbar, Dashboard,
 * Anfragen, Dokumente, Galerien, Profil, Modals
 *
 * Uses CSS custom properties defined in main.css :root
 */

/* ==========================================================================
   LOGIN SCREEN
   ========================================================================== */

.portal-login {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-background);
  padding: var(--spacing-lg);
  overflow: hidden;
}

/* Decorative radial gold circles (CSS only, no images) */
.portal-login::before,
.portal-login::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.portal-login::before {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle,
      rgba(201, 168, 108, 0.12) 0%,
      rgba(201, 168, 108, 0.04) 40%,
      transparent 70%);
}

.portal-login::after {
  width: 600px;
  height: 600px;
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle,
      rgba(212, 188, 142, 0.10) 0%,
      rgba(212, 188, 142, 0.03) 45%,
      transparent 70%);
}

/* Third decorative circle via child element */
.portal-login__bg-circle {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(184, 149, 106, 0.08) 0%,
      rgba(184, 149, 106, 0.02) 50%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Login Card */
.portal-login__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--spacing-3xl) var(--spacing-2xl);
  text-align: center;
}

.portal-login__logo {
  width: 80px;
  height: auto;
  margin: 0 auto var(--spacing-lg);
  display: block;
}

.portal-login__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.portal-login__subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* Login Form */
.portal-login__form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.portal-login__input {
  width: 100%;
  padding: var(--spacing-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(201, 168, 108, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  outline: none;
}

.portal-login__input::placeholder {
  color: var(--color-text-muted);
}

.portal-login__input:hover {
  border-color: rgba(201, 168, 108, 0.4);
}

.portal-login__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
  background: rgba(255, 255, 255, 0.85);
}

/* Login Submit */
.portal-login__submit {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-top: var(--spacing-sm);
}

.portal-login__submit:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.portal-login__submit:active {
  transform: translateY(0) scale(0.98);
}

.portal-login__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Login Error */
.portal-login__error {
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.25);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.5;
  display: none;
  margin-bottom: var(--spacing-md);
}

.portal-login__error.is-visible {
  display: block;
}

/* Forgot Password Link */
.portal-login__forgot {
  display: inline-block;
  margin-top: var(--spacing-lg);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.portal-login__forgot:hover {
  color: var(--color-primary);
}

/* Login Divider */
.portal-login__divider {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(201, 168, 108, 0.15);
}

/* Back to Home Link */
.portal-login__back {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.portal-login__back:hover {
  color: var(--color-primary);
}

.portal-login__back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* ==========================================================================
   LOADING STATE
   ========================================================================== */

.portal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4xl) var(--spacing-lg);
  min-height: 200px;
}

.portal-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201, 168, 108, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: portal-spin 0.8s linear infinite;
}

@keyframes portal-spin {
  to {
    transform: rotate(360deg);
  }
}


/* ==========================================================================
   DASHBOARD LAYOUT WRAPPER
   ========================================================================== */

.portal-dashboard {
  display: none;
  min-height: 100vh;
  background-color: var(--color-background);
}

.portal-dashboard.is-active {
  display: flex;
  flex-direction: column;
}

.portal-layout {
  display: flex;
  flex: 1;
  min-height: 0;
}


/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.portal-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-right: 1px solid rgba(201, 168, 108, 0.12);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.04);
  z-index: var(--z-fixed);
  transition: width var(--transition-normal);
  overflow: hidden;
}

/* Sidebar Logo Area */
.portal-sidebar__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 var(--spacing-sm) 8px;
  border-bottom: 1px solid rgba(201, 168, 108, 0.1);
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
}

.portal-sidebar__logo img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
  margin: -10px 0 -15px;
}

.portal-sidebar__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  transition: opacity var(--transition-normal);
}

/* Sidebar Navigation */
.portal-sidebar__nav {
  flex: 1;
  padding: var(--spacing-md) 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.portal-sidebar__nav-group {
  list-style: none;
  margin: 0;
  padding: 0;
}

.portal-sidebar__nav-item {
  position: relative;
}

.portal-sidebar__nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-xl);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-light);
  text-decoration: none;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
  white-space: nowrap;
  min-height: 44px;
}

.portal-sidebar__nav-link:hover {
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.06);
}

.portal-sidebar__nav-link.is-active {
  color: var(--color-primary);
  font-weight: 500;
  border-left-color: var(--color-primary);
  background: rgba(201, 168, 108, 0.08);
}

.portal-sidebar__nav-link svg,
.portal-sidebar__nav-link i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.portal-sidebar__nav-label {
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity var(--transition-normal);
}

/* Sidebar Sub-items */
.portal-sidebar__sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-normal);
}

.portal-sidebar__nav-item.is-expanded .portal-sidebar__sub-list {
  max-height: 200px;
}

.portal-sidebar__sub-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-xs) var(--spacing-xl);
  padding-left: calc(var(--spacing-xl) + 20px + var(--spacing-md));
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
  min-height: 36px;
}

.portal-sidebar__sub-link:hover {
  color: var(--color-primary);
}

.portal-sidebar__sub-link.is-active {
  color: var(--color-primary);
  font-weight: 500;
}

/* Sidebar Chevron for expandable items */
.portal-sidebar__nav-chevron {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.portal-sidebar__nav-item.is-expanded .portal-sidebar__nav-chevron {
  transform: rotate(180deg);
}

/* Sidebar Logout */
.portal-sidebar__logout {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-top: 1px solid rgba(201, 168, 108, 0.1);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  width: 100%;
  text-align: left;
  flex-shrink: 0;
  white-space: nowrap;
}

.portal-sidebar__logout:hover {
  color: var(--color-primary);
}

.portal-sidebar__logout svg,
.portal-sidebar__logout i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.portal-sidebar__logout-label {
  overflow: hidden;
  transition: opacity var(--transition-normal);
}


/* ==========================================================================
   TOP HEADER BAR
   ========================================================================== */

.portal-topbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-xl);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 108, 0.1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  min-height: 60px;
}

.portal-topbar__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
}

.portal-topbar__right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.portal-topbar__welcome {
  font-size: 0.85rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.portal-topbar__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 108, 0.15);
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.portal-topbar__logout {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.portal-topbar__logout:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
  background: rgba(201, 168, 108, 0.08);
}

.portal-topbar__logout svg,
.portal-topbar__logout i {
  width: 16px;
  height: 16px;
}

/* Mobile sidebar toggle in topbar */
.portal-topbar__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.portal-topbar__menu-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.portal-topbar__menu-toggle svg,
.portal-topbar__menu-toggle i {
  width: 20px;
  height: 20px;
}


/* ==========================================================================
   MAIN CONTENT AREA
   ========================================================================== */

.portal-main {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Admin Preview Banner (shown when admin views portal as customer) */
.portal-admin-preview {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-xl);
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.12), rgba(201, 168, 108, 0.06));
  border-bottom: 1px solid rgba(201, 168, 108, 0.2);
  font-size: 0.82rem;
  color: var(--color-primary-dark);
}

.portal-admin-preview svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.portal-admin-preview__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.1);
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.portal-admin-preview__back:hover {
  background: rgba(201, 168, 108, 0.2);
  border-color: var(--color-primary);
}

.portal-admin-preview__back svg {
  width: 14px;
  height: 14px;
}

.portal-content {
  flex: 1;
  padding: var(--spacing-2xl);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* Section visibility: only one visible at a time */
.portal-section {
  display: none;
}

.portal-section.is-active {
  display: block;
}


/* ==========================================================================
   OVERVIEW SECTION
   ========================================================================== */

/* Welcome Card */
.portal-welcome {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-xl) var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
  overflow: hidden;
}

.portal-welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--color-primary),
      var(--color-primary-light));
  border-radius: 4px 0 0 4px;
}

.portal-welcome__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.portal-welcome__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Quick Stats Row */
.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.portal-stat {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.portal-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.portal-stat:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.portal-stat:hover::after {
  opacity: 1;
}

.portal-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto var(--spacing-md);
  background: rgba(201, 168, 108, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
}

.portal-stat__icon svg,
.portal-stat__icon i {
  width: 22px;
  height: 22px;
}

.portal-stat__value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--spacing-xs);
}

.portal-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

/* Recent Activity List */
.portal-activity {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-xl);
}

.portal-activity__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
}

.portal-activity__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.portal-activity__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.portal-activity__item:hover {
  background: rgba(201, 168, 108, 0.04);
}

.portal-activity__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary-light);
  flex-shrink: 0;
}

.portal-activity__text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  flex: 1;
}

.portal-activity__date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}


/* ==========================================================================
   SECTION HEADER (reused across all content tabs)
   ========================================================================== */

.portal-section__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(201, 168, 108, 0.15);
}

.portal-section__header svg,
.portal-section__header i {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}


/* ==========================================================================
   INQUIRY CARDS (Meine Anfragen)
   ========================================================================== */

.portal-inquiries {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.inquiry-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-xl);
  transition: all var(--transition-normal);
}

.inquiry-card:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.inquiry-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.inquiry-card__theme {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
}

.inquiry-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm) var(--spacing-lg);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.inquiry-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.inquiry-card__meta svg,
.inquiry-card__meta i {
  width: 14px;
  height: 14px;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.status-badge--neu {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.status-badge--kontaktiert {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-badge--gebucht {
  background: rgba(124, 154, 124, 0.12);
  color: #4d7c4d;
  border: 1px solid rgba(124, 154, 124, 0.3);
}

.status-badge--archiviert {
  background: rgba(107, 107, 107, 0.08);
  color: var(--color-text-muted);
  border: 1px solid rgba(107, 107, 107, 0.2);
}

/* Legacy status aliases (for JS compatibility) */
.status-badge--new {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.status-badge--contacted {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-badge--booked {
  background: rgba(124, 154, 124, 0.12);
  color: #4d7c4d;
  border: 1px solid rgba(124, 154, 124, 0.3);
}

.status-badge--archived {
  background: rgba(107, 107, 107, 0.08);
  color: var(--color-text-muted);
  border: 1px solid rgba(107, 107, 107, 0.2);
}


/* ==========================================================================
   DOCUMENTS (Angebote + Rechnungen)
   ========================================================================== */

/* Tabs for Angebote / Rechnungen */
.portal-doc-tabs {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.portal-doc-tab {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.portal-doc-tab:hover {
  color: var(--color-primary);
  border-color: var(--color-primary-light);
}

.portal-doc-tab.is-active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.portal-doc-panel {
  display: none;
}

.portal-doc-panel.is-active {
  display: block;
}

/* Document List */
.document-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.document-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.document-item:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 168, 108, 0.2);
  box-shadow: var(--shadow-sm);
}

.document-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.document-item__icon svg,
.document-item__icon i {
  width: 20px;
  height: 20px;
}

.document-item__info {
  flex: 1;
  min-width: 0;
}

.document-item__title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.document-item__meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.document-item__amount {
  font-weight: 600;
  color: var(--color-text);
}

.document-item__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-normal);
  flex-shrink: 0;
  text-decoration: none;
}

.document-item__action:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(201, 168, 108, 0.08);
}

.document-item__action svg,
.document-item__action i {
  width: 18px;
  height: 18px;
}

/* Invoice-specific status badges */
.status-badge--offen {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-badge--bezahlt {
  background: rgba(124, 154, 124, 0.12);
  color: #4d7c4d;
  border: 1px solid rgba(124, 154, 124, 0.3);
}

.status-badge--ueberfaellig {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.25);
}


/* ==========================================================================
   GALLERY GRID (Meine Galerien)
   ========================================================================== */

.portal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.portal-gallery-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.portal-gallery-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.portal-gallery-card__image-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.portal-gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portal-gallery-card:hover .portal-gallery-card__image {
  transform: scale(1.06);
}

.portal-gallery-card__count-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 500;
}

.portal-gallery-card__count-badge svg,
.portal-gallery-card__count-badge i {
  width: 12px;
  height: 12px;
}

.portal-gallery-card__body {
  padding: var(--spacing-md) var(--spacing-lg);
}

.portal-gallery-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.portal-gallery-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.portal-gallery-card__link:hover {
  color: var(--color-primary-dark);
  gap: var(--spacing-sm);
}

.portal-gallery-card__link svg,
.portal-gallery-card__link i {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.portal-gallery-card__link:hover svg,
.portal-gallery-card__link:hover i {
  transform: translateX(2px);
}


/* ==========================================================================
   PROFILE SECTION (Mein Profil)
   ========================================================================== */

.portal-profile {
  max-width: 600px;
}

.portal-profile__card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-2xl);
}

.portal-profile__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 108, 0.15);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xl);
}

.portal-profile__row {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.portal-profile__row:last-child {
  border-bottom: none;
}

.portal-profile__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.portal-profile__value {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* Editable Profile Inputs */
.portal-profile__input {
  width: 100%;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.portal-profile__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.12);
}

/* Profile Action Buttons */
.portal-profile__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.portal-profile__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: var(--spacing-xs) var(--spacing-lg);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.portal-profile__btn svg {
  width: 14px;
  height: 14px;
}

.portal-profile__btn--edit {
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.1);
  border: 1px solid rgba(201, 168, 108, 0.25);
}

.portal-profile__btn--edit:hover {
  background: rgba(201, 168, 108, 0.18);
  border-color: var(--color-primary);
}

.portal-profile__btn--save {
  color: var(--color-white);
  background: var(--color-primary);
}

.portal-profile__btn--save:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.portal-profile__btn--save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.portal-profile__btn--cancel {
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.portal-profile__btn--cancel:hover {
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Portal Toast Notification */
.portal-toast {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
}

.portal-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.portal-toast--success {
  border-left: 4px solid var(--color-primary);
}

.portal-toast--error {
  border-left: 4px solid #C47C7C;
}

.portal-toast__message {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  flex: 1;
}

.portal-toast__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.portal-toast__close:hover {
  color: var(--color-text);
}


/* ==========================================================================
   EMPTY STATES
   ========================================================================== */

.portal-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
  text-align: center;
}

.portal-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 50%;
  color: var(--color-primary-light);
  margin-bottom: var(--spacing-lg);
}

.portal-empty__icon svg,
.portal-empty__icon i {
  width: 28px;
  height: 28px;
}

.portal-empty__message {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 320px;
}


/* ==========================================================================
   PASSWORD RESET MODAL
   ========================================================================== */

.portal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal-backdrop);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.portal-modal-overlay[hidden] {
  display: none;
}

.portal-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.portal-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--spacing-2xl);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  transition: transform var(--transition-normal);
}

.portal-modal-overlay.is-open .portal-modal {
  transform: translateY(0) scale(1);
}

.portal-modal__close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.portal-modal__close:hover {
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.04);
}

.portal-modal__close svg,
.portal-modal__close i {
  width: 20px;
  height: 20px;
}

.portal-modal__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.portal-modal__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.portal-modal__success {
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(124, 154, 124, 0.12);
  color: #4d7c4d;
  border: 1px solid rgba(124, 154, 124, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: var(--spacing-md);
  display: none;
}

.portal-modal__success.is-visible {
  display: block;
}

.portal-modal__error {
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.25);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: var(--spacing-md);
  display: none;
}

.portal-modal__error.is-visible {
  display: block;
}

.portal-modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.portal-footer {
  border-top: 1px solid rgba(201, 168, 108, 0.1);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.5);
}

.portal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-xs) var(--spacing-md);
  max-width: 1100px;
  margin: 0 auto;
  font-size: 11px;
  color: var(--color-text-muted);
}

.portal-footer__social {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.portal-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.portal-footer__social a:hover {
  color: var(--color-primary);
}

.portal-footer__social a svg,
.portal-footer__social a i {
  width: 16px;
  height: 16px;
}

.portal-footer__divider {
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1;
}

.portal-footer__links {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.portal-footer__links a {
  font-size: 11px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.portal-footer__links a:hover {
  color: var(--color-primary);
}

.portal-footer__copy {
  font-size: 11px;
  color: var(--color-text-muted);
}


/* ==========================================================================
   MOBILE BOTTOM NAVIGATION
   ========================================================================== */

.portal-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 168, 108, 0.12);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.06);
  padding: var(--spacing-xs) 0;
  padding-bottom: env(safe-area-inset-bottom, var(--spacing-xs));
}

.portal-bottom-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}

.portal-bottom-nav__item {
  flex: 1;
}

.portal-bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--spacing-xs) var(--spacing-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.portal-bottom-nav__link.is-active {
  color: var(--color-primary);
}

.portal-bottom-nav__link:hover {
  color: var(--color-primary);
}

.portal-bottom-nav__link svg,
.portal-bottom-nav__link i {
  width: 22px;
  height: 22px;
}


/* ==========================================================================
   RESPONSIVE: TABLET (768px - 1023px) — Collapsed sidebar
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1023px) {
  .portal-sidebar {
    width: 64px;
  }

  .portal-sidebar__logo-text,
  .portal-sidebar__nav-label,
  .portal-sidebar__nav-chevron,
  .portal-sidebar__logout-label {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
  }

  .portal-sidebar__logo {
    justify-content: center;
    padding: var(--spacing-xs) var(--spacing-xs) var(--spacing-xs);
  }

  .portal-sidebar__logo img {
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .portal-sidebar__nav-link {
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-sm);
    border-left-width: 0;
  }

  .portal-sidebar__nav-link.is-active {
    border-left-width: 0;
    background: rgba(201, 168, 108, 0.12);
    border-radius: var(--radius-md);
    margin: 0 var(--spacing-xs);
  }

  .portal-sidebar__sub-list {
    display: none;
  }

  .portal-sidebar__logout {
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .portal-main {
    margin-left: 64px;
  }

}

/* Gallery grid: 2 columns on tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .portal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   RESPONSIVE: DESKTOP (1024px+) — Full sidebar
   ========================================================================== */

@media (min-width: 1024px) {
  .portal-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portal-topbar__menu-toggle {
    display: none;
  }
}


/* ==========================================================================
   RESPONSIVE: MOBILE (<768px) — No sidebar, bottom nav
   ========================================================================== */

@media (max-width: 767px) {

  /* Sidebar als Overlay auf Mobile (standardmaessig versteckt) */
  .portal-sidebar {
    transform: translateX(-100%);
    width: 280px;
    z-index: calc(var(--z-fixed) + 1);
  }

  .portal-sidebar.is-open {
    transform: translateX(0);
  }

  /* Show bottom navigation */
  .portal-bottom-nav {
    display: block;
  }

  /* Show menu toggle in topbar */
  .portal-topbar__menu-toggle {
    display: flex;
  }

  /* Remove sidebar margin from main and footer */
  .portal-main {
    margin-left: 0;
  }

  .portal-footer {
    padding-bottom: calc(var(--spacing-xl) + 60px + env(safe-area-inset-bottom, 0px));
  }

  /* Topbar adjustments */
  .portal-topbar {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .portal-topbar__welcome {
    display: none;
  }

  /* Content padding */
  .portal-content {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  /* Stats stack on small screens */
  .portal-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  /* Gallery single column */
  .portal-gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Inquiry card header stacks */
  .inquiry-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }

  /* Document items stack */
  .document-item {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }

  .document-item__meta {
    flex-wrap: wrap;
  }

  /* Touch-Targets: Minimum 44px */
  .document-item__action {
    width: 44px;
    height: 44px;
  }

  .portal-profile__btn {
    min-height: 44px;
    padding: 10px 20px;
  }

  .portal-topbar__menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  /* Bottom-Nav: Lesbare Schriftgroesse + Touch-Targets */
  .portal-bottom-nav__link {
    font-size: 0.72rem;
    min-height: 44px;
    justify-content: center;
  }

  .portal-bottom-nav__link svg,
  .portal-bottom-nav__link i {
    width: 22px;
    height: 22px;
  }

  /* Content: Bottom-Padding gegen Bottom-Nav-Ueberdeckung */
  .portal-content {
    padding-bottom: calc(60px + var(--spacing-lg) + env(safe-area-inset-bottom, 0px));
  }

  /* Login adjustments */
  .portal-login__card {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  /* Modal padding */
  .portal-modal {
    padding: var(--spacing-xl) var(--spacing-lg);
    margin: var(--spacing-md);
  }

  /* Profile adjustments */
  .portal-profile__card {
    padding: var(--spacing-xl);
  }

  /* Footer wraps */
  .portal-footer__inner {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .portal-footer__divider {
    display: none;
  }
}

/* Extra small mobile (<380px) */
@media (max-width: 380px) {
  .portal-login__card {
    padding: var(--spacing-xl) var(--spacing-md);
    margin: var(--spacing-md);
    max-width: none;
  }

  .portal-login__title {
    font-size: 1.6rem;
  }

  .portal-stat__value {
    font-size: 1.5rem;
  }

  .portal-stats {
    gap: var(--spacing-sm);
  }

  .portal-sidebar {
    width: 260px;
  }

  /* Document-Items: Kompakter auf sehr kleinen Screens */
  .document-item {
    flex-direction: column;
    align-items: stretch;
  }

  .document-item__action {
    align-self: flex-end;
  }
}

/* Small mobile document stacking (<480px) */
@media (max-width: 480px) {
  .portal-login__card {
    margin-left: var(--spacing-sm);
    margin-right: var(--spacing-sm);
  }
}


/* ==========================================================================
   BACKDROP-FILTER FALLBACK
   ========================================================================== */

@supports not (backdrop-filter: blur(10px)) {

  .portal-login__card,
  .portal-sidebar,
  .portal-topbar,
  .portal-modal,
  .portal-bottom-nav {
    background: rgba(255, 255, 255, 0.97);
  }

  .portal-welcome,
  .portal-stat,
  .portal-activity,
  .inquiry-card,
  .portal-gallery-card,
  .portal-profile__card {
    background: rgba(255, 255, 255, 0.95);
  }

  .portal-modal-overlay {
    background: rgba(0, 0, 0, 0.6);
  }
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {

  .portal-sidebar,
  .portal-topbar,
  .portal-bottom-nav,
  .portal-footer,
  .portal-login {
    display: none !important;
  }

  .portal-main {
    margin-left: 0 !important;
  }

  .portal-content {
    padding: 0 !important;
    max-width: 100% !important;
  }

  .portal-section {
    break-inside: avoid;
  }
}

/* ============================================================
 * Source: components/dashboard.css
 * ============================================================ */
/**
 * Dashboard Component
 * ===================
 * Admin-Dashboard: Sidebar, Topbar, KPI-Cards, Charts, Tabelle, Modal, Toast, Footer
 * Uses CSS Custom Properties from main.css :root
 */

/* ===== Admin Layout Shell ===== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--color-background);
  max-width: 100vw;
  overflow-x: hidden;
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  margin-left: 260px;
  transition: margin-left var(--transition-normal);
  overflow-x: hidden;
}

.admin-content {
  flex: 1;
  padding: var(--spacing-2xl);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* ===== Admin Sidebar ===== */
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.04);
  transition: width var(--transition-normal), transform var(--transition-normal);
  overflow: hidden;
}

.admin-sidebar__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 var(--spacing-sm) 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
}

.admin-sidebar__logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
  margin: -10px 0 -15px;
}

.admin-sidebar__brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  transition: opacity var(--transition-normal);
}

.admin-sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-md) 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.admin-sidebar__nav-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  margin: 2px var(--spacing-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  width: calc(100% - var(--spacing-sm) * 2);
}

.admin-sidebar__nav-item:hover {
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.06);
}

.admin-sidebar__nav-item.is-active {
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.1);
  border-left-color: var(--color-primary);
  font-weight: 600;
}

.admin-sidebar__nav-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.admin-sidebar__nav-label {
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity var(--transition-normal);
}

.admin-sidebar__nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-full);
  margin-left: auto;
  line-height: 1;
  flex-shrink: 0;
}

.admin-sidebar__footer {
  padding: var(--spacing-md) var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.admin-sidebar__logout {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.admin-sidebar__logout:hover {
  color: #C47C7C;
  background: rgba(196, 124, 124, 0.08);
}

.admin-sidebar__logout svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== Mobile Sidebar Toggle ===== */
.admin-sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.admin-sidebar-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.06);
}

.admin-sidebar-toggle svg {
  width: 20px;
  height: 20px;
}

/* ===== Mobile Sidebar Overlay ===== */
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-fixed) - 1);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.admin-sidebar-overlay.is-visible {
  opacity: 1;
}

/* ===== Admin Top Bar ===== */
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.03);
  min-height: 60px;
}

.admin-topbar__left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.admin-topbar__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text);
}

.admin-topbar__right {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.admin-topbar__user {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.admin-topbar__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(201, 168, 108, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-topbar__avatar svg {
  width: 18px;
  height: 18px;
}

.admin-topbar__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
}

/* Willkommen-Text in Topbar */
.admin-topbar__welcome {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 400;
  white-space: nowrap;
}

.admin-topbar__welcome strong {
  font-weight: 600;
  color: var(--color-text);
}

/* Kundenansicht-Button */
.admin-topbar__customer-view {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: var(--spacing-xs) var(--spacing-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.08);
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.admin-topbar__customer-view:hover {
  background: rgba(201, 168, 108, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.admin-topbar__customer-view svg {
  width: 14px;
  height: 14px;
}

.admin-topbar__logout {
  padding: var(--spacing-xs) var(--spacing-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.admin-topbar__logout:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
  background: rgba(201, 168, 108, 0.08);
}

/* ===== Panel Show/Hide ===== */
.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

/* ===== KPI Cards ===== */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .admin-kpi-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.admin-kpi-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-xl);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.admin-kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  opacity: 0.6;
}

.admin-kpi-card:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.admin-kpi-card:hover::before {
  opacity: 1;
}

.admin-kpi-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
}

.admin-kpi-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 108, 0.12);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.admin-kpi-card__icon svg {
  width: 20px;
  height: 20px;
}

.admin-kpi-card__trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.admin-kpi-card__trend--up {
  color: #4d7c4d;
  background: rgba(124, 154, 124, 0.12);
}

.admin-kpi-card__trend--down {
  color: #C47C7C;
  background: rgba(196, 124, 124, 0.12);
}

.admin-kpi-card__trend--neutral {
  color: var(--color-text-muted);
  background: rgba(107, 107, 107, 0.08);
}

.admin-kpi-card__trend svg {
  width: 12px;
  height: 12px;
}

.admin-kpi-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xs);
}

.admin-kpi-card__value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.1;
}

/* ===== Charts Grid ===== */
.admin-charts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .admin-charts-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.admin-chart-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-xl);
  transition: box-shadow var(--transition-normal);
}

.admin-chart-card:hover {
  box-shadow: var(--shadow-lg);
}

.admin-chart-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
}

.admin-chart-card__canvas {
  width: 100%;
  min-height: 260px;
  max-height: 320px;
}

/* ===== Inquiries Section ===== */
.admin-inquiries {
  margin-bottom: var(--spacing-2xl);
}

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.admin-section-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text);
}

.admin-section-filters {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.admin-filter-btn {
  padding: var(--spacing-xs) var(--spacing-md);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.admin-filter-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary-light);
  background: rgba(201, 168, 108, 0.06);
}

.admin-filter-btn.is-active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ===== Inquiry Table ===== */
.admin-table-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.admin-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.admin-table th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-align: left;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-background-alt);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.admin-table td {
  padding: var(--spacing-md) var(--spacing-lg);
  color: var(--color-text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: background var(--transition-fast);
}

.admin-table tbody tr:hover {
  background: rgba(201, 168, 108, 0.04);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table__name {
  font-weight: 500;
  color: var(--color-text);
}

.admin-table__email {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.admin-table__theme {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.admin-table__date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ===== Status Badges ===== */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.status-badge--neu {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.status-badge--kontaktiert {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-badge--gebucht {
  background: rgba(124, 154, 124, 0.15);
  color: #4d7c4d;
  border: 1px solid rgba(124, 154, 124, 0.3);
}

.status-badge--archiviert {
  background: rgba(107, 107, 107, 0.1);
  color: var(--color-text-muted);
  border: 1px solid rgba(107, 107, 107, 0.2);
}

.status-badge--spam {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.25);
}

/* English aliases for legacy compat */
.status-badge--new {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.status-badge--contacted {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-badge--booked {
  background: rgba(124, 154, 124, 0.15);
  color: #4d7c4d;
  border: 1px solid rgba(124, 154, 124, 0.3);
}

.status-badge--archived {
  background: rgba(107, 107, 107, 0.1);
  color: var(--color-text-muted);
  border: 1px solid rgba(107, 107, 107, 0.2);
}

/* ===== Status Dropdown ===== */
.status-select {
  appearance: none;
  padding: var(--spacing-xs) var(--spacing-md);
  padding-right: calc(var(--spacing-md) + 18px);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacing-xs) center;
  background-size: 14px;
}

.status-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.status-select:hover {
  border-color: var(--color-primary-light);
}

/* ===== Table Action Buttons ===== */
.admin-table__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.admin-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.admin-action-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(201, 168, 108, 0.08);
}

.admin-action-btn--invite:hover {
  color: var(--color-accent-green);
  border-color: var(--color-accent-green);
  background: rgba(124, 154, 124, 0.08);
}

.admin-action-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== Empty State ===== */
.admin-empty-row td {
  padding: var(--spacing-3xl) var(--spacing-lg);
  text-align: center;
}

.admin-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.admin-empty-state__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-primary-light);
  margin-bottom: var(--spacing-sm);
}

.admin-empty-state__icon svg {
  width: 24px;
  height: 24px;
}

.admin-empty-state__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===== Invite Modal ===== */
.admin-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal-backdrop);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.admin-modal__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.admin-modal {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--spacing-2xl);
  transform: translateY(12px) scale(0.97);
  transition: transform var(--transition-normal);
}

.admin-modal__backdrop.is-open .admin-modal {
  transform: translateY(0) scale(1);
}

.admin-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
}

.admin-modal__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
}

.admin-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.admin-modal__close:hover {
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
}

.admin-modal__close svg {
  width: 18px;
  height: 18px;
}

.admin-modal__details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-xl);
}

.admin-modal__detail {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
  font-size: 0.875rem;
}

.admin-modal__detail-label {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 70px;
  flex-shrink: 0;
}

.admin-modal__detail-value {
  color: var(--color-text);
  word-break: break-word;
}

.admin-modal__message {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.admin-modal__actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: flex-end;
}

.admin-modal__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-xl);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.admin-modal__btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.admin-modal__btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.admin-modal__btn-primary svg {
  width: 16px;
  height: 16px;
}

.admin-modal__btn-cancel {
  padding: var(--spacing-sm) var(--spacing-xl);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.admin-modal__btn-cancel:hover {
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.02);
}

/* ===== Toast Notification ===== */
.admin-toast {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  min-width: 280px;
  max-width: 420px;
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.admin-toast.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.admin-toast--success {
  border-left: 4px solid var(--color-primary);
}

.admin-toast--error {
  border-left: 4px solid #C47C7C;
}

.admin-toast__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.admin-toast--success .admin-toast__icon {
  background: rgba(201, 168, 108, 0.12);
  color: var(--color-primary);
}

.admin-toast--error .admin-toast__icon {
  background: rgba(196, 124, 124, 0.12);
  color: #C47C7C;
}

.admin-toast__icon svg {
  width: 18px;
  height: 18px;
}

.admin-toast__content {
  flex: 1;
  min-width: 0;
}

.admin-toast__message {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

.admin-toast__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  padding: 0;
}

.admin-toast__close:hover {
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.04);
}

.admin-toast__close svg {
  width: 16px;
  height: 16px;
}

/* Toast auto-dismiss progress bar */
.admin-toast__progress {
  position: absolute;
  bottom: 0;
  left: 4px;
  right: 0;
  height: 2px;
  border-radius: 0 0 var(--radius-lg) 0;
  overflow: hidden;
}

.admin-toast__progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: left;
  animation: toast-dismiss 5s linear forwards;
}

.admin-toast--success .admin-toast__progress-bar {
  background: var(--color-primary);
}

.admin-toast--error .admin-toast__progress-bar {
  background: #C47C7C;
}

@keyframes toast-dismiss {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

/* ===== Admin Footer ===== */
.admin-footer {
  padding: var(--spacing-sm) var(--spacing-2xl);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.5);
}

.admin-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs) var(--spacing-md);
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--color-text-muted);
}

.admin-footer__social {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.admin-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.admin-footer__social a:hover {
  color: var(--color-primary);
}

.admin-footer__social a svg {
  width: 16px;
  height: 16px;
}

.admin-footer__divider {
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1;
  user-select: none;
}

.admin-footer__links {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.admin-footer__links a {
  color: var(--color-text-muted);
  font-size: 11px;
  transition: color var(--transition-fast);
}

.admin-footer__links a:hover {
  color: var(--color-primary);
}

.admin-footer__copy {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ===== Customer Section: Stats + Search ===== */
.admin-customers__stats {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.admin-customers__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(201, 168, 108, 0.10);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 500;
}

.admin-customers__badge--portal {
  background: rgba(74, 144, 90, 0.10);
  color: #4a905a;
}

.admin-customers__search {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.admin-customers__search-input-wrap {
  position: relative;
  flex: 1;
  max-width: 420px;
}

.admin-customers__search-input-wrap>svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

.admin-customers__search-input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.admin-customers__search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.admin-customers__search-input::placeholder {
  color: var(--color-text-muted);
}

.admin-customers__search-count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ===== Customer Cards ===== */
.admin-customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--spacing-lg);
}

.admin-customer-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-xl);
  transition: all var(--transition-normal);
}

.admin-customer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.admin-customer-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.admin-customer-card__avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.18), rgba(201, 168, 108, 0.08));
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.admin-customer-card__info {
  min-width: 0;
  flex: 1;
}

.admin-customer-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.admin-customer-card__company {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.admin-customer-card__number {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  margin: 2px 0 0;
  opacity: 0.7;
}

.admin-customer-card__portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-text-muted);
}

.admin-customer-card__portal-badge--active {
  background: rgba(74, 144, 90, 0.10);
  color: #4a905a;
}

.admin-customer-card__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
  color: var(--color-text);
}

.admin-customer-card__details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-customer-card__details svg {
  width: 14px;
  height: 14px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.admin-customer-card__meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.admin-customer-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.admin-customer-card__meta svg {
  width: 13px;
  height: 13px;
}

.admin-customer-card__revenue {
  color: #4a905a !important;
  font-weight: 500;
}

/* ===== Customer Load More ===== */
.admin-customers__load-more {
  display: flex;
  justify-content: center;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.admin-customers__load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-2xl);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.08);
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.admin-customers__load-more-btn:hover {
  background: rgba(201, 168, 108, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.admin-customers__load-more-btn:active {
  transform: translateY(0);
}

.admin-customers__load-more-btn svg {
  width: 16px;
  height: 16px;
}

.admin-customers__load-more-count {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 2px;
}

@media (max-width: 640px) {
  .admin-customer-grid {
    grid-template-columns: 1fr;
  }

  .admin-customers__search {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-customers__search-input-wrap {
    max-width: none;
  }
}

/* ===== Gallery Grid ===== */
.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--spacing-lg);
}

/* ===== Settings ===== */
.admin-settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: var(--spacing-lg);
}

.admin-settings-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-xl);
}

.admin-settings-card__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-settings-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 108, 0.12);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.admin-settings-card__icon svg {
  width: 18px;
  height: 18px;
}

.admin-settings-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
}

.admin-settings-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.admin-settings-field {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-md);
}

.admin-settings-field__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  min-width: 80px;
  flex-shrink: 0;
}

.admin-settings-field__value {
  font-size: 0.9rem;
  color: var(--color-text);
  word-break: break-word;
}

.admin-settings-card__hint {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: var(--spacing-xs);
}

/* Editable Inputs in Settings */
.admin-settings-field__input {
  flex: 1;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.admin-settings-field__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.12);
}

/* Settings Action Buttons */
.admin-settings-card__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.admin-settings-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: var(--spacing-xs) var(--spacing-lg);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.admin-settings-btn svg {
  width: 14px;
  height: 14px;
}

.admin-settings-btn--edit {
  color: var(--color-primary);
  background: rgba(201, 168, 108, 0.1);
  border: 1px solid rgba(201, 168, 108, 0.25);
}

.admin-settings-btn--edit:hover {
  background: rgba(201, 168, 108, 0.18);
  border-color: var(--color-primary);
}

.admin-settings-btn--save {
  color: var(--color-white);
  background: var(--color-primary);
}

.admin-settings-btn--save:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.admin-settings-btn--save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.admin-settings-btn--cancel {
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.admin-settings-btn--cancel:hover {
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.2);
}

/* ===== Documents Section (Angebote + Rechnungen) ===== */
.admin-documents {
  margin-bottom: var(--spacing-2xl);
}

.admin-documents__stats {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.admin-documents-table .admin-table__doc-number {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

.admin-documents-table .admin-table__doc-title {
  font-size: 0.82rem;
  color: var(--color-text-light);
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-documents-table .admin-table__amount {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  text-align: right;
}

.admin-documents-table th:nth-child(5) {
  text-align: right;
}

/* ===== Loading Skeleton ===== */
.admin-skeleton {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.04) 25%,
      rgba(0, 0, 0, 0.08) 50%,
      rgba(0, 0, 0, 0.04) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease infinite;
  border-radius: var(--radius-sm);
}

.admin-skeleton--text {
  height: 14px;
  width: 80%;
}

.admin-skeleton--value {
  height: 32px;
  width: 60%;
}

.admin-skeleton--circle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-lg);
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ===== Spin Animation ===== */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===== Mobile Bottom Nav ===== */
.admin-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
  padding: var(--spacing-xs) 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.admin-bottom-nav__items {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.admin-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.admin-bottom-nav__item:hover,
.admin-bottom-nav__item.is-active {
  color: var(--color-primary);
}

.admin-bottom-nav__item.is-active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.admin-bottom-nav__item svg {
  width: 20px;
  height: 20px;
}

.admin-bottom-nav__badge {
  position: absolute;
  top: 0;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== Responsive: Tablet (768-1023) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .admin-sidebar {
    width: 64px;
  }

  .admin-sidebar__brand-text {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
  }

  .admin-sidebar__brand {
    justify-content: center;
    padding: var(--spacing-xs) var(--spacing-xs) var(--spacing-xs);
  }

  .admin-sidebar__logo {
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .admin-sidebar__nav-item {
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-sm);
    margin: 2px var(--spacing-xs);
    border-left-width: 0;
    border-bottom: 2px solid transparent;
    border-left: none;
  }

  .admin-sidebar__nav-item.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--color-primary);
  }

  .admin-sidebar__nav-label {
    display: none;
  }

  .admin-sidebar__nav-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 0.55rem;
    margin-left: 0;
  }

  .admin-sidebar__nav-item {
    position: relative;
  }

  .admin-sidebar__logout span {
    display: none;
  }

  .admin-sidebar__logout {
    justify-content: center;
  }

  .admin-sidebar__footer {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .admin-main {
    margin-left: 64px;
  }

  .admin-topbar {
    padding: var(--spacing-md) var(--spacing-xl);
  }

  .admin-content {
    padding: var(--spacing-xl);
  }
}

/* ===== Responsive: Mobile (<768) ===== */
@media (max-width: 767px) {

  /* --- Layout: Sidebar als Overlay, kein Bottom-Nav --- */
  .admin-sidebar {
    transform: translateX(-100%);
    width: 280px;
    z-index: calc(var(--z-fixed) + 1);
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-sidebar-overlay {
    display: block;
  }

  .admin-sidebar-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }

  /* Bottom-Nav ausblenden — Hamburger + Sidebar reicht */
  .admin-bottom-nav {
    display: none !important;
  }

  .admin-main {
    margin-left: 0;
    padding-bottom: 0;
    overflow-x: hidden;
  }

  /* --- Topbar: Kompakt, kein Overflow --- */
  .admin-topbar {
    padding: var(--spacing-sm) var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .admin-topbar__left {
    min-width: 0;
    overflow: hidden;
  }

  .admin-topbar__title {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .admin-topbar__welcome {
    display: none;
  }

  .admin-topbar__customer-view span {
    display: none;
  }

  .admin-topbar__right {
    flex-shrink: 0;
    gap: var(--spacing-sm);
  }

  .admin-topbar__logout {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.75rem;
  }

  /* --- Content: Kein Overflow, sauberes Padding --- */
  .admin-content {
    padding: var(--spacing-md);
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* --- KPI-Cards --- */
  .admin-kpi-grid {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
  }

  .admin-kpi-card {
    padding: var(--spacing-md);
    overflow: hidden;
  }

  .admin-kpi-card__header {
    gap: var(--spacing-xs);
  }

  .admin-kpi-card__icon {
    width: 36px;
    height: 36px;
  }

  .admin-kpi-card__icon svg {
    width: 16px;
    height: 16px;
  }

  .admin-kpi-card__value {
    font-size: 1.5rem;
  }

  /* --- Charts: Volle Breite, kein Overflow --- */
  .admin-charts-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }

  .admin-chart-card {
    padding: var(--spacing-md);
    overflow: hidden;
  }

  .admin-chart-card__canvas {
    min-height: 180px;
    max-height: 240px;
  }

  /* --- Section Header --- */
  .admin-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }

  .admin-section-filters {
    flex-wrap: wrap;
    gap: var(--spacing-xs);
  }

  /* --- Tabelle: Auf Mobile als Cards darstellen --- */
  .admin-table-card {
    overflow: hidden;
  }

  .admin-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table {
    font-size: 0.78rem;
    min-width: 500px;
  }

  .admin-table th,
  .admin-table td {
    padding: var(--spacing-xs) var(--spacing-sm);
    white-space: nowrap;
  }

  .admin-table__email {
    display: none;
  }

  .admin-table__theme {
    display: none;
  }

  .admin-table__date {
    font-size: 0.72rem;
  }

  .status-select {
    font-size: 0.72rem;
    padding: 4px 24px 4px 8px;
    max-width: 110px;
  }

  /* Touch-Targets: Minimum 44px */
  .admin-action-btn {
    width: 44px;
    height: 44px;
  }

  .admin-filter-btn {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  /* --- Settings: Labels stapeln, Touch-Targets --- */
  .admin-settings-grid {
    grid-template-columns: 1fr;
  }

  .admin-settings-btn {
    min-height: 44px;
    padding: 10px 20px;
  }

  .admin-settings-field {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-settings-field__label {
    min-width: unset;
  }

  .admin-settings-card {
    padding: var(--spacing-lg);
  }

  /* --- Kunden: Grid 1-spaltig, Cards kompakter --- */
  .admin-customer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .admin-customer-card {
    padding: var(--spacing-md);
    overflow: hidden;
  }

  .admin-customer-card:hover {
    transform: none;
  }

  .admin-customer-card__header {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }

  .admin-customer-card__portal-badge {
    margin-left: auto;
  }

  .admin-customer-card__name {
    font-size: 0.95rem;
  }

  .admin-customer-card__details span {
    white-space: normal;
    word-break: break-word;
  }

  .admin-customer-card__meta {
    gap: var(--spacing-md);
  }

  .admin-customers__search {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-customers__search-input-wrap {
    max-width: none;
  }

  /* --- Dokumente: Titel + Kunde auf Mobile ausblenden --- */
  .admin-documents-table .admin-table__doc-title {
    display: none;
  }

  .admin-documents-table .admin-table__amount {
    font-size: 0.78rem;
  }

  /* --- Galerie-Grid: 1 Spalte --- */
  .admin-gallery-grid {
    grid-template-columns: 1fr;
  }

  /* --- Footer --- */
  .admin-footer {
    padding: var(--spacing-md);
  }

  .admin-footer__inner {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .admin-footer__divider {
    display: none;
  }

  /* --- Toast: Volle Breite unten --- */
  .admin-toast {
    left: var(--spacing-md);
    right: var(--spacing-md);
    bottom: var(--spacing-md);
    min-width: auto;
    max-width: none;
  }
}

/* ===== Desktop (1024+) full sidebar ===== */
@media (min-width: 1024px) {
  .admin-sidebar-toggle {
    display: none;
  }

  .admin-sidebar {
    transform: translateX(0);
  }
}

/* ===== Extra-Small Mobile (<380px) ===== */
@media (max-width: 380px) {
  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar__title {
    font-size: 0.95rem;
  }

  .admin-topbar__customer-view {
    display: none;
  }

  .admin-sidebar {
    width: 260px;
  }

  .admin-kpi-card__value {
    font-size: 1.25rem;
  }

  .admin-content {
    padding: var(--spacing-sm);
  }

  .admin-section-title {
    font-size: 1.1rem;
  }
}

/* ===== Print Styles ===== */
@media print {

  .admin-sidebar,
  .admin-topbar,
  .admin-bottom-nav,
  .admin-toast,
  .admin-modal__backdrop,
  .admin-footer {
    display: none !important;
  }

  .admin-main {
    margin-left: 0 !important;
  }

  .admin-kpi-card,
  .admin-chart-card,
  .admin-table-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ===== Backdrop-filter Fallback ===== */
@supports not (backdrop-filter: blur(10px)) {
  .admin-sidebar {
    background: rgba(255, 255, 255, 0.98);
  }

  .admin-topbar {
    background: rgba(255, 255, 255, 0.98);
  }

  .admin-kpi-card,
  .admin-chart-card,
  .admin-table-card {
    background: rgba(255, 255, 255, 0.97);
  }

  .admin-modal {
    background: rgba(255, 255, 255, 0.99);
  }

  .admin-modal__backdrop {
    background: rgba(0, 0, 0, 0.6);
  }

  .admin-toast {
    background: rgba(255, 255, 255, 0.99);
  }

  .admin-bottom-nav {
    background: rgba(255, 255, 255, 0.99);
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {

  .admin-kpi-card,
  .admin-chart-card,
  .admin-modal,
  .admin-toast,
  .admin-sidebar,
  .admin-action-btn,
  .admin-filter-btn {
    transition: none;
  }

  .admin-toast__progress-bar {
    animation: none;
  }

  .admin-skeleton {
    animation: none;
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(0deg);
    }
  }
}

/* ===== High Contrast Adjustments ===== */
@media (forced-colors: active) {

  .admin-kpi-card,
  .admin-chart-card,
  .admin-table-card,
  .admin-modal {
    border: 2px solid ButtonText;
  }

  .status-badge {
    border: 1px solid ButtonText;
  }

  .admin-sidebar__nav-item.is-active {
    border-left-color: Highlight;
    color: Highlight;
  }
}

/* ===== ADMIN REVIEWS ===== */

.admin-reviews__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md, 8px);
  background: none;
  color: var(--color-text-muted, #8A8A8A);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.admin-reviews__toggle:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.02);
}

.admin-reviews__toggle.is-on {
  color: #C9A86C;
  border-color: rgba(201, 168, 108, 0.3);
  background: rgba(201, 168, 108, 0.08);
}

.admin-reviews__toggle.is-on:hover {
  background: rgba(201, 168, 108, 0.15);
}

.admin-reviews__delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md, 8px);
  background: none;
  color: var(--color-text-muted, #8A8A8A);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.admin-reviews__delete-btn:hover {
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
  background: rgba(220, 53, 69, 0.06);
}

.admin-reviews__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-reviews__author strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text, #333);
}

.admin-reviews__stars {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.admin-reviews__text-preview {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #8A8A8A);
  line-height: 1.4;
}

.admin-reviews__theme-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(201, 168, 108, 0.1);
  color: #8A7448;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: capitalize;
}

/* Review star inactive state */
.review-star-btn:not(.is-active) {
  color: #ddd !important;
}

/* Admin Modal Form Fields */
.admin-modal__field {
  margin-bottom: 0.75rem;
}

.admin-modal__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text, #333);
  margin-bottom: 0.35rem;
}

.admin-modal__input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md, 8px);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--color-text, #333);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-modal__input:focus {
  outline: none;
  border-color: #C9A86C;
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.admin-modal__input::placeholder {
  color: var(--color-text-muted, #8A8A8A);
}

.admin-modal__form {
  /* Overrides fuer Form-Inhalte */
}

.admin-modal__form select.admin-modal__input {
  appearance: auto;
  cursor: pointer;
}

.admin-modal__form textarea.admin-modal__input {
  min-height: 80px;
}

/* ============================================================
 * Source: components/reviews.css
 * ============================================================ */
/**
 * Reviews - Bewertungen-Wall + Homepage-Carousel
 * Premium Redesign: Lebendige Animationen, Featured-Hervorhebung
 */

/* ===== KEYFRAME ANIMATIONS ===== */

@keyframes reviewFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes featuredGlow {

  0%,
  100% {
    box-shadow:
      0 8px 32px rgba(201, 168, 108, 0.15),
      0 0 0 1px rgba(201, 168, 108, 0.1);
  }

  50% {
    box-shadow:
      0 12px 48px rgba(201, 168, 108, 0.25),
      0 0 0 1px rgba(201, 168, 108, 0.2);
  }
}

@keyframes borderShimmer {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 0% 200%;
  }
}

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

  100% {
    background-position: 200% center;
  }
}

@keyframes starPop {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes quoteFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

/* ===== STERNE ===== */
.review-star {
  color: #e0d8cc;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}

.review-star--filled {
  color: #C9A86C;
}

/* ===== STATS BAR ===== */
.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.06) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(201, 168, 108, 0.06) 100%);
  border: 1px solid rgba(201, 168, 108, 0.15);
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}

.reviews-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A86C, transparent);
  opacity: 0.5;
}

.reviews-stats__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews-stats__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #C9A86C 0%, #E8D5A8 40%, #C9A86C 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.reviews-stats__stars {
  display: flex;
  gap: 2px;
}

.reviews-stats__stars .review-star {
  font-size: 1.3rem;
}

.reviews-stats__divider {
  width: 1px;
  height: 2rem;
  background: rgba(201, 168, 108, 0.25);
}

.reviews-stats__count {
  font-size: 0.95rem;
  color: #5A5A5A;
  font-weight: 500;
}

.reviews-stats__google {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #5A5A5A;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 108, 0.2);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.reviews-stats__google:hover {
  border-color: #C9A86C;
  color: #C9A86C;
  background: rgba(201, 168, 108, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 108, 0.12);
}

/* ===== FEATURED SECTION LABEL ===== */
.reviews-featured-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.reviews-featured-label__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86C);
}

.reviews-featured-label__line:last-child {
  background: linear-gradient(90deg, #C9A86C, transparent);
}

.reviews-featured-label__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #C9A86C;
}

/* ===== FEATURED CARDS ===== */
.reviews-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .reviews-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-featured {
  position: relative;
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 251, 245, 0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-left: 4px solid #C9A86C;
  box-shadow:
    0 8px 32px rgba(201, 168, 108, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  animation: featuredGlow 4s ease-in-out infinite;
}

.review-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #E8D5A8, #C9A86C, #B8956A, #C9A86C, #E8D5A8);
  background-size: 100% 200%;
  animation: borderShimmer 3s ease-in-out infinite;
}

.review-featured::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201, 168, 108, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.review-featured:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 20px 60px rgba(201, 168, 108, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.04);
  border-color: rgba(201, 168, 108, 0.4);
}

/* Decorative Quote Icon */
.review-featured__quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 168, 108, 0.1);
  pointer-events: none;
  animation: quoteFloat 5s ease-in-out infinite;
  user-select: none;
}

/* Featured Badge */
.review-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.15), rgba(201, 168, 108, 0.08));
  color: #B8956A;
  border: 1px solid rgba(201, 168, 108, 0.2);
}

.review-featured__badge svg {
  width: 10px;
  height: 10px;
  fill: #C9A86C;
}

.review-featured__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.review-featured__stars {
  display: flex;
  gap: 2px;
}

.review-featured__stars .review-star {
  font-size: 1.4rem;
}

.review-featured__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.75;
  color: #2D2D2D;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}

.review-featured__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.review-featured__author {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2D2D2D;
}

/* ===== GRID SECTION DIVIDER ===== */
.reviews-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.reviews-section-divider__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e1da);
}

.reviews-section-divider__line:last-child {
  background: linear-gradient(90deg, #e5e1da, transparent);
}

.reviews-section-divider__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8A8A8A;
}

/* ===== GRID CARDS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #f0ede8;
  border-left: 3px solid transparent;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: reviewFadeInUp 0.5s ease forwards;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  border-left-color: #C9A86C;
  background: rgba(255, 255, 255, 1);
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4A4A4A;
  margin: 0 0 0.6rem;
}

.review-card__expand {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #C9A86C;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 0.85rem;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.review-card__expand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A86C;
  transition: width 0.3s ease;
}

.review-card__expand:hover {
  color: #B8956A;
}

.review-card__expand:hover::after {
  width: 100%;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 168, 108, 0.08);
}

.review-card__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2D2D2D;
}

/* ===== BADGE ===== */
.review-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(201, 168, 108, 0.1);
  color: #B8956A;
  transition: all 0.25s;
}

.review-card:hover .review-badge,
.review-featured:hover .review-badge {
  background: rgba(201, 168, 108, 0.18);
}

/* ===== SOURCE ICON ===== */
.review-source {
  display: inline-flex;
  opacity: 0.45;
  transition: all 0.3s;
}

.review-source:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== FILTER ===== */
.reviews-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.reviews-filter {
  padding: 0.5rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid #e5e1da;
  background: transparent;
  color: #5A5A5A;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Montserrat', sans-serif;
}

.reviews-filter:hover {
  border-color: #C9A86C;
  color: #C9A86C;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201, 168, 108, 0.1);
}

.reviews-filter.is-active {
  background: linear-gradient(135deg, #C9A86C, #B8956A);
  border-color: #C9A86C;
  color: white;
  box-shadow: 0 4px 14px rgba(201, 168, 108, 0.25);
  transform: translateY(-1px);
}

/* ===== EMPTY STATE ===== */
.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #8A8A8A;
  font-size: 0.9rem;
  padding: 3rem 1rem;
}

/* ===== CTA SECTION ===== */
.reviews-cta {
  position: relative;
  padding: 3.5rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #FFFBF5 0%, #FFF8F0 50%, #FFF5E8 100%);
  border: 1px solid rgba(201, 168, 108, 0.15);
  overflow: hidden;
}

.reviews-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 108, 0.06) 25%, rgba(201, 168, 108, 0.1) 50%, rgba(201, 168, 108, 0.06) 75%, transparent 100%);
  background-size: 200% 100%;
  animation: ctaShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.reviews-cta::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(201, 168, 108, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reviews-cta .btn-primary {
  position: relative;
  transition: all 0.3s ease;
}

.reviews-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 108, 0.3);
}

/* ===== HOMEPAGE CAROUSEL ===== */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-carousel__track {
  position: relative;
  min-height: 160px;
}

.reviews-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.reviews-carousel__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reviews-carousel__stars {
  margin-bottom: 0.75rem;
}

.reviews-carousel__stars .review-star {
  font-size: 1rem;
}

.reviews-carousel__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: #2D2D2D;
  margin: 0 0 0.75rem;
  max-width: 500px;
}

.reviews-carousel__author {
  font-size: 0.8rem;
  color: #5A5A5A;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 639px) {

  /* Stats Bar: Stack vertically on mobile */
  .reviews-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .reviews-stats__number {
    font-size: 2.8rem;
  }

  .reviews-stats__stars .review-star {
    font-size: 1.1rem;
  }

  .reviews-stats__divider {
    width: 60px;
    height: 1px;
  }

  .reviews-stats__count {
    font-size: 0.85rem;
  }

  .reviews-stats__google {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
  }

  /* Featured Cards: Compact on mobile */
  .review-featured {
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 1rem;
  }

  .review-featured__quote-icon {
    font-size: 3.5rem;
    top: 0.5rem;
    right: 0.75rem;
  }

  .review-featured__text {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .review-featured__stars .review-star {
    font-size: 1.2rem;
  }

  .review-featured__badge {
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
  }

  .review-featured__author {
    font-size: 0.82rem;
  }

  .review-featured__header {
    margin-bottom: 1rem;
  }

  .review-featured::after {
    width: 80px;
    height: 80px;
  }

  /* Reduce heavy glow on mobile for performance */
  .review-featured {
    animation: none;
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.12);
  }

  .review-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(201, 168, 108, 0.15);
  }

  /* Featured Label */
  .reviews-featured-label {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .reviews-featured-label__line {
    max-width: 50px;
  }

  .reviews-featured-label__text {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  /* Section Divider */
  .reviews-section-divider {
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
  }

  .reviews-section-divider__line {
    max-width: 60px;
  }

  .reviews-section-divider__text {
    font-size: 0.65rem;
  }

  /* Filter Bar: Horizontal scroll on mobile */
  .reviews-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    gap: 0.4rem;
    scrollbar-width: none;
  }

  .reviews-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .reviews-filter {
    flex-shrink: 0;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    min-height: 36px;
  }

  /* Grid Cards: Tighter on mobile */
  .reviews-grid {
    gap: 0.75rem;
  }

  .review-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .review-card__text {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .review-card__author {
    font-size: 0.78rem;
  }

  .review-card:hover {
    transform: translateY(-2px);
  }

  /* CTA: Compact on mobile */
  .reviews-cta {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }

  .reviews-cta::after {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -30px;
  }
}

/* Small phones (< 380px) */
@media (max-width: 379px) {
  .reviews-stats {
    padding: 1.25rem 1rem;
  }

  .reviews-stats__number {
    font-size: 2.4rem;
  }

  .review-featured {
    padding: 1.25rem 1rem 1rem;
  }

  .review-featured__quote-icon {
    font-size: 2.8rem;
  }

  .review-featured__text {
    font-size: 0.95rem;
  }

  .review-card {
    padding: 1rem;
  }

  .reviews-cta {
    padding: 2rem 1.25rem;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .review-featured {
    animation: none;
  }

  .review-featured::before {
    animation: none;
  }

  .review-featured__quote-icon {
    animation: none;
  }

  .review-card {
    animation: none;
    opacity: 1;
  }

  .reviews-cta::before {
    animation: none;
  }
}

/* ============================================================
 * Source: components/ai-assistant.css
 * ============================================================ */
/**
 * AI Assistant Chat Widget
 * ========================
 * Floating Chat-Bubble + Chat-Fenster (Glassmorphism)
 */

/* ===== Chat Bubble (Floating Button) ===== */
.ai-chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A86C 0%, #b8944d 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.ai-chat-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(201, 168, 108, 0.5);
}

.ai-chat-bubble:active {
  transform: scale(0.95);
}

.ai-chat-bubble svg {
  width: 26px;
  height: 26px;
  fill: white;
  transition: opacity 0.2s ease;
}

.ai-chat-bubble .ai-bubble-close {
  display: none;
}

.ai-chat-bubble--open .ai-bubble-icon {
  display: none;
}

.ai-chat-bubble--open .ai-bubble-close {
  display: block;
}

/* Puls-Animation wenn noch nie geoeffnet */
.ai-chat-bubble--pulse {
  animation: ai-pulse 2s ease-in-out infinite;
}

@keyframes ai-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4), 0 0 0 12px rgba(201, 168, 108, 0.15); }
}

/* ===== Chat Window ===== */
.ai-chat-window {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 9997;
  width: 380px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Glassmorphism */
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 108, 0.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(201, 168, 108, 0.1);
  /* Animation */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-chat-window--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ===== Chat Header ===== */
.ai-chat-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, #C9A86C 0%, #b8944d 100%);
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ai-chat-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}

.ai-chat-header__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-chat-header__info {
  flex: 1;
}

.ai-chat-header__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.ai-chat-header__status {
  font-size: 11px;
  opacity: 0.85;
}

.ai-chat-header__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.2s ease;
}

.ai-chat-header__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== Chat Messages ===== */
.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.ai-chat-messages::-webkit-scrollbar {
  width: 4px;
}

.ai-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 108, 0.3);
  border-radius: 2px;
}

/* Message Bubbles */
.ai-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}

.ai-msg--bot {
  align-self: flex-start;
  background: white;
  border: 1px solid rgba(201, 168, 108, 0.15);
  border-bottom-left-radius: 4px;
  color: #2D2D2D;
}

.ai-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, #C9A86C 0%, #b8944d 100%);
  color: white;
  border-bottom-right-radius: 4px;
}

/* Action Link in Bot Messages */
.ai-msg__action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(201, 168, 108, 0.12);
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-radius: 8px;
  color: #b8944d;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}

.ai-msg__action:hover {
  background: rgba(201, 168, 108, 0.2);
}

/* Typing Indicator */
.ai-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: 12px 16px;
  background: white;
  border: 1px solid rgba(201, 168, 108, 0.15);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.ai-typing__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C9A86C;
  animation: ai-typing-bounce 1.4s ease-in-out infinite;
}

.ai-typing__dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes ai-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ===== Chat Input ===== */
.ai-chat-input {
  padding: 12px 16px;
  border-top: 1px solid rgba(201, 168, 108, 0.15);
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  background: rgba(255, 251, 245, 0.6);
}

.ai-chat-input__field {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-radius: 10px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  background: white;
  color: #2D2D2D;
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
  max-height: 80px;
}

.ai-chat-input__field::placeholder {
  color: #999;
}

.ai-chat-input__field:focus {
  border-color: #C9A86C;
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 168, 108, 0.25);
}

.ai-chat-input__field:focus-visible {
  outline: none;
}

.ai-chat-input__send {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #C9A86C 0%, #b8944d 100%);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.ai-chat-input__send:hover {
  transform: scale(1.05);
}

.ai-chat-input__send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.ai-chat-input__send svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* ===== Scroll Lock (Mobile, Chat offen) ===== */
body.ai-chat-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .ai-chat-window {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: 100dvh;
  }

  .ai-chat-window--open {
    transform: translateY(0) scale(1);
  }

  .ai-chat-bubble {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .ai-chat-bubble--open {
    display: none;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .ai-chat-bubble--pulse {
    animation: none;
  }

  .ai-chat-window {
    transition: opacity 0.15s ease;
    transform: none;
  }

  .ai-chat-window--open {
    transform: none;
  }

  .ai-typing__dot {
    animation: none;
    opacity: 0.6;
  }
}

/* ============================================================
 * Source: main.css (base styles + tokens)
 * ============================================================ */
/**
 * Kay Maik Fotografie - Main Stylesheet
 * =====================================
 * Haupt-CSS-Datei mit Imports und CSS Custom Properties
 */

/* ===== CSS Imports ===== */

/* ===== CSS Custom Properties (Design Tokens) ===== */
:root {
  /* Farbpalette */
  --color-primary: #C9A86C;
  --color-primary-dark: #B8956A;
  --color-primary-light: #D4BC8E;

  --color-background: #FFFBF5;
  --color-background-alt: #FFF8F0;

  --color-text: #2D2D2D;
  --color-text-light: #4A4A4A;
  --color-text-muted: #6B6B6B;

  --color-white: #FFFFFF;
  --color-black: #000000;

  --color-accent-green: #7C9A7C;
  --color-accent-green-light: #E8F0E8;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* Abstände */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  /* Schriften */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Übergänge */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

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

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-preloader: 1000;
}

/* ===== Base Styles ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  border-color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary) !important;
  border-color: var(--color-primary);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* Section */
.section {
  padding: var(--spacing-4xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title h2 {
  font-style: italic;
  color: var(--color-text);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}

.text-primary {
  color: var(--color-primary);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Selection */
::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Focus States */
:focus-visible {
  outline: 3px solid #2D2D2D;
  outline-offset: 3px;
}

/* Scrollbar Styling (Webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-background);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ============================================================
 * Source: Tailwind CSS (only used utility classes)
 * ============================================================ */
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }

/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Montserrat,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.\!container{width:100%!important}.container{width:100%}@media (min-width:640px){.\!container{max-width:640px!important}.container{max-width:640px}}@media (min-width:768px){.\!container{max-width:768px!important}.container{max-width:768px}}@media (min-width:1024px){.\!container{max-width:1024px!important}.container{max-width:1024px}}@media (min-width:1280px){.\!container{max-width:1280px!important}.container{max-width:1280px}}@media (min-width:1536px){.\!container{max-width:1536px!important}.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.visible{visibility:visible}.collapse{visibility:collapse}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.z-10{z-index:10}.m-0{margin:0}.mx-auto{margin-left:auto;margin-right:auto}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-4{margin-left:1rem}.mt-10{margin-top:2.5rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.\!grid{display:grid!important}.grid{display:grid}.hidden{display:none}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-\[130px\]{height:130px}.h-\[160px\]{height:160px}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-\[100px\]{width:100px}.w-\[130px\]{width:130px}.w-full{width:100%}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-6xl{max-width:72rem}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.flex-shrink{flex-shrink:1}.flex-grow{flex-grow:1}.border-collapse{border-collapse:collapse}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.resize{resize:both}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-center{justify-content:center}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem*var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.rounded-full{border-radius:9999px}.border{border-width:1px}.border-t{border-top-width:1px}.border-\[\#ddd\]{--tw-border-opacity:1;border-color:rgb(221 221 221/var(--tw-border-opacity,1))}.border-\[\#eee\]{--tw-border-opacity:1;border-color:rgb(238 238 238/var(--tw-border-opacity,1))}.bg-\[\#C9A86C\]\/10{background-color:hsla(39,46%,61%,.1)}.bg-\[\#FFFBF5\]{--tw-bg-opacity:1;background-color:rgb(255 251 245/var(--tw-bg-opacity,1))}.bg-white\/60{background-color:hsla(0,0%,100%,.6)}.bg-white\/80{background-color:hsla(0,0%,100%,.8)}.object-cover{-o-object-fit:cover;object-fit:cover}.p-0{padding:0}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-10{padding-bottom:2.5rem}.pb-12{padding-bottom:3rem}.pb-16{padding-bottom:4rem}.pb-6{padding-bottom:1.5rem}.pb-8{padding-bottom:2rem}.pt-16{padding-top:4rem}.pt-20{padding-top:5rem}.pt-24{padding-top:6rem}.pt-32{padding-top:8rem}.pt-4{padding-top:1rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-center{text-align:center}.font-serif{font-family:Cormorant Garamond,serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-\[14px\]{font-size:14px}.text-\[16px\]{font-size:16px}.text-\[18px\]{font-size:18px}.text-\[19px\]{font-size:19px}.text-\[20px\]{font-size:20px}.text-\[22px\]{font-size:22px}.text-\[24px\]{font-size:24px}.text-\[26px\]{font-size:26px}.text-\[28px\]{font-size:28px}.text-\[38px\]{font-size:38px}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.text-\[\#2D2D2D\]{--tw-text-opacity:1;color:rgb(45 45 45/var(--tw-text-opacity,1))}.text-\[\#4A4A4A\]{--tw-text-opacity:1;color:rgb(74 74 74/var(--tw-text-opacity,1))}.text-\[\#555555\]{--tw-text-opacity:1;color:rgb(85 85 85/var(--tw-text-opacity,1))}.text-\[\#595959\]{--tw-text-opacity:1;color:rgb(89 89 89/var(--tw-text-opacity,1))}.text-\[\#5A5A5A\]{--tw-text-opacity:1;color:rgb(90 90 90/var(--tw-text-opacity,1))}.text-\[\#666666\]{--tw-text-opacity:1;color:rgb(102 102 102/var(--tw-text-opacity,1))}.text-\[\#696969\]{--tw-text-opacity:1;color:rgb(105 105 105/var(--tw-text-opacity,1))}.text-\[\#6A6A6A\]{--tw-text-opacity:1;color:rgb(106 106 106/var(--tw-text-opacity,1))}.text-\[\#6B6B6B\]{--tw-text-opacity:1;color:rgb(107 107 107/var(--tw-text-opacity,1))}.text-\[\#767676\]{--tw-text-opacity:1;color:rgb(118 118 118/var(--tw-text-opacity,1))}.text-\[\#8A8A8A\]{--tw-text-opacity:1;color:rgb(138 138 138/var(--tw-text-opacity,1))}.text-\[\#8B7355\]{--tw-text-opacity:1;color:rgb(139 115 85/var(--tw-text-opacity,1))}.text-\[\#999\]{--tw-text-opacity:1;color:rgb(153 153 153/var(--tw-text-opacity,1))}.text-\[\#C9A86C\]{--tw-text-opacity:1;color:rgb(201 168 108/var(--tw-text-opacity,1))}.underline{text-decoration-line:underline}.no-underline{text-decoration-line:none}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)}.backdrop-blur-sm,.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.hover\:bg-white\/80:hover{background-color:hsla(0,0%,100%,.8)}.hover\:bg-white\/90:hover{background-color:hsla(0,0%,100%,.9)}.hover\:text-\[\#8B7355\]:hover{--tw-text-opacity:1;color:rgb(139 115 85/var(--tw-text-opacity,1))}.hover\:text-\[\#C9A86C\]:hover{--tw-text-opacity:1;color:rgb(201 168 108/var(--tw-text-opacity,1))}.hover\:underline:hover{text-decoration-line:underline}.focus\:not-sr-only:focus{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.focus\:absolute:focus{position:absolute}.focus\:left-4:focus{left:1rem}.focus\:top-4:focus{top:1rem}.focus\:z-\[9999\]:focus{z-index:9999}.focus\:rounded:focus{border-radius:.25rem}.focus\:bg-\[\#C9A86C\]:focus{--tw-bg-opacity:1;background-color:rgb(201 168 108/var(--tw-bg-opacity,1))}.focus\:px-4:focus{padding-left:1rem;padding-right:1rem}.focus\:py-2:focus{padding-top:.5rem;padding-bottom:.5rem}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}@media (min-width:640px){.sm\:mb-3{margin-bottom:.75rem}.sm\:mb-4{margin-bottom:1rem}.sm\:mb-8{margin-bottom:2rem}.sm\:block{display:block}.sm\:flex{display:flex}.sm\:w-auto{width:auto}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:gap-2{gap:.5rem}.sm\:gap-4{gap:1rem}.sm\:gap-5{gap:1.25rem}.sm\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-8{padding-top:2rem}.sm\:pb-8,.sm\:py-8{padding-bottom:2rem}.sm\:pt-6{padding-top:1.5rem}.sm\:text-\[12px\]{font-size:12px}.sm\:text-\[13px\]{font-size:13px}.sm\:text-\[14px\]{font-size:14px}.sm\:text-\[15px\]{font-size:15px}.sm\:text-\[18px\]{font-size:18px}.sm\:text-\[20px\]{font-size:20px}.sm\:text-\[22px\]{font-size:22px}.sm\:text-\[26px\]{font-size:26px}.sm\:text-\[28px\]{font-size:28px}.sm\:text-\[30px\]{font-size:30px}.sm\:text-\[32px\]{font-size:32px}.sm\:text-\[34px\]{font-size:34px}.sm\:text-\[36px\]{font-size:36px}.sm\:text-\[38px\]{font-size:38px}}@media (min-width:768px){.md\:mb-10{margin-bottom:2.5rem}.md\:mb-12{margin-bottom:3rem}.md\:mb-16{margin-bottom:4rem}.md\:mb-3{margin-bottom:.75rem}.md\:mb-4{margin-bottom:1rem}.md\:mb-5{margin-bottom:1.25rem}.md\:mb-6{margin-bottom:1.5rem}.md\:mb-8{margin-bottom:2rem}.md\:mt-4{margin-top:1rem}.md\:mt-5{margin-top:1.25rem}.md\:mt-6{margin-top:1.5rem}.md\:block{display:block}.md\:inline{display:inline}.md\:hidden{display:none}.md\:h-\[180px\]{height:180px}.md\:h-\[220px\]{height:220px}.md\:w-\[140px\]{width:140px}.md\:w-\[180px\]{width:180px}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:gap-5{gap:1.25rem}.md\:gap-6{gap:1.5rem}.md\:gap-8{gap:2rem}.md\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.md\:py-12{padding-top:3rem;padding-bottom:3rem}.md\:py-14{padding-top:3.5rem;padding-bottom:3.5rem}.md\:py-16{padding-top:4rem;padding-bottom:4rem}.md\:py-20{padding-top:5rem;padding-bottom:5rem}.md\:py-8{padding-top:2rem;padding-bottom:2rem}.md\:pb-10{padding-bottom:2.5rem}.md\:pb-12{padding-bottom:3rem}.md\:pb-16{padding-bottom:4rem}.md\:pb-8{padding-bottom:2rem}.md\:pt-28{padding-top:7rem}.md\:pt-32{padding-top:8rem}.md\:pt-36{padding-top:9rem}.md\:pt-6{padding-top:1.5rem}.md\:pt-8{padding-top:2rem}.md\:text-left{text-align:left}.md\:text-3xl{font-size:1.875rem;line-height:2.25rem}.md\:text-5xl{font-size:3rem;line-height:1}.md\:text-\[22px\]{font-size:22px}.md\:text-\[24px\]{font-size:24px}.md\:text-\[26px\]{font-size:26px}.md\:text-\[30px\]{font-size:30px}.md\:text-\[32px\]{font-size:32px}.md\:text-\[34px\]{font-size:34px}.md\:text-\[40px\]{font-size:40px}.md\:text-\[44px\]{font-size:44px}.md\:text-\[46px\]{font-size:46px}.md\:text-\[48px\]{font-size:48px}.md\:text-base{font-size:1rem;line-height:1.5rem}.md\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (min-width:1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}
