/* ============================================================
   BELISSIMA – Hauptstylesheet
   ============================================================ */

/* ── Schriften (selbst gehostet – kein Google-Aufruf) ───────── */
@import url('fonts.css');

/* ── CSS-Variablen ─────────────────────────────────────────── */
:root {
  --purple-900: #2D1B69;
  --purple-800: #3D2284;
  --purple-700: #5B21B6;
  --purple-600: #7C3AED;
  --purple-500: #8B5CF6;
  --purple-300: #C4B5FD;
  --purple-100: #EDE9FE;
  --purple-50:  #F5F3FF;

  --gold-700:   #92740A;
  --gold-500:   #D4AF37;
  --gold-400:   #E4C76B;
  --gold-100:   #FDF8E1;

  --white:      #FFFFFF;
  --off-white:  #FAFAF9;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-800:   #1F2937;
  --dark:       #0F0A1E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Geist', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(45,27,105,.08);
  --shadow-md:  0 4px 16px rgba(45,27,105,.12);
  --shadow-lg:  0 12px 40px rgba(45,27,105,.18);
  --shadow-xl:  0 24px 64px rgba(45,27,105,.24);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-50); }
::-webkit-scrollbar-thumb { background: var(--purple-500); border-radius: 3px; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 64px 0;
}

.text-center { text-align: center; }
.text-purple { color: var(--purple-600); }
.text-gold   { color: var(--gold-500); }

/* ── Typografie ───────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a5c08;
  display: block;
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.heading-xl {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
}

.heading-lg {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--purple-900);
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--purple-900);
}

.heading-sm {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-900);
}

.subheading {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.8;
}

.divider-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 40px;
}

.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.divider-line span {
  color: var(--gold-500);
  font-size: 1.2rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,175,55,.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple-600);
  border: 2px solid var(--purple-300);
}

.btn-outline-purple:hover {
  background: var(--purple-50);
  border-color: var(--purple-600);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-logo {
  color: var(--purple-800);
}

.navbar.scrolled .nav-link {
  color: var(--gray-700, #374151);
}

.navbar.scrolled .nav-link:hover {
  color: var(--purple-600);
}

.navbar.scrolled .nav-link.active {
  color: var(--purple-600);
}

.navbar.scrolled .hamburger span {
  background: var(--purple-800);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

/* Logo auf dunkler Navbar: weiße Silhouette */
.nav-logo-img {
  height: 68px;
  width: auto;
  display: block;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.28s ease, opacity 0.28s ease;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  animation: logo-entrance 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both;
}

/* Logo auf heller (gescrollter) Navbar: Originalfarben */
.navbar.scrolled .nav-logo-img {
  filter: none;
  opacity: 1;
}

/* Hover – dunkel: goldener Schimmer */
.nav-logo:hover .nav-logo-img {
  transform: scale(1.07) translateY(-1px);
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(212,175,55,.7));
  opacity: 1;
}

/* Hover – hell: lila Glüheffekt */
.navbar.scrolled .nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 2px 10px rgba(109,40,217,.45)) saturate(1.2);
  transform: scale(1.07) translateY(-1px);
}

/* Klick – Press-Effekt */
.nav-logo:active .nav-logo-img {
  transform: scale(0.93) translateY(1px);
  transition: transform 0.08s ease;
}

/* Eingangs-Animation */
@keyframes logo-entrance {
  0%   { transform: scale(0.75) rotate(-4deg); opacity: 0; }
  55%  { transform: scale(1.09) rotate(1.5deg); opacity: 1; }
  78%  { transform: scale(0.96) rotate(-0.5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 0.95; }
}

/* Mobile: etwas kleiner */
@media (max-width: 768px) {
  .nav-logo-img { height: 54px; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--white); }

.nav-cta {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ── Dropdown ─────────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--purple-100);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--purple-100);
  border-top: 1px solid var(--purple-100);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700, #374151);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-item i {
  color: var(--purple-400, #a78bfa);
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
}

.nav-dropdown-item:hover {
  background: var(--purple-50);
  color: var(--purple-700);
  padding-left: 22px;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.05);
    border-radius: 0;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 300px;
  }

  .nav-dropdown-menu::before { display: none; }

  .nav-dropdown-item {
    color: rgba(255,255,255,.7);
    padding: 8px 0;
  }

  .nav-dropdown-item:hover {
    background: transparent;
    color: var(--white);
    padding-left: 8px;
  }

  .nav-dropdown-item i { color: var(--gold-400); }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: #2d1060;
  position: relative;
  overflow: hidden;
}

/* Animated gradient overlay – two crossfade layers */
.page-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-gradient span {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 2.5s ease-in-out;
}
.page-hero-gradient span.hidden {
  opacity: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
}

.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { color: var(--gold-400); text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── Related Services ─────────────────────────────────────── */
.related-services { padding: 60px 0; }

.related-services-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 32px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.related-card i {
  font-size: 1.6rem;
  color: var(--purple-500);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-50);
  border-radius: var(--radius-md);
}

.related-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-900);
  line-height: 1.4;
}

.related-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}

.related-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple-600);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--purple-100);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-300);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span { color: var(--gold-400); }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--purple-600);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--gold-400);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom a { color: var(--gold-400); }

/* ── Scroll Reveal Animationen ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* delay helper */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-purple {
  background: var(--purple-100);
  color: var(--purple-700);
}

.badge-gold {
  background: var(--gold-100);
  color: var(--gold-700);
}

/* ── Floating particles background ───────────────────────── */
.particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) rotate(360deg); }
}

/* ── Page Loader ──────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--purple-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

.loader-logo span { color: var(--gold-400); }

@keyframes pulse-logo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.97); }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-500), var(--gold-400));
  border-radius: 2px;
  animation: loader-fill 1.2s ease-in-out forwards;
}

@keyframes loader-fill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .section-padding { padding: 70px 0; }
  .section-padding-sm { padding: 48px 0; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--purple-900);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 40px 32px;
    transition: right var(--transition);
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }

  .nav-menu.open { right: 0; }

  .nav-link {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    padding: 10px 0;
    width: 100%;
  }

  .nav-cta { margin-top: 16px; }

  .hamburger { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
}

/* ── Mobile Global (≤ 768px) ─────────────────────────────── */
@media (max-width: 768px) {
  /* Schriftgrößen */
  .heading-xl  { font-size: clamp(2rem,   8vw, 3rem);   }
  .heading-lg  { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .heading-md  { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .heading-sm  { font-size: clamp(1rem,   4vw, 1.3rem); }
  .subheading  { font-size: 1rem; }

  /* Abstände */
  .section-padding { padding: 52px 0; }

  /* Service-Detail Grids (alle Unterseiten) */
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-detail-grid--reverse .service-detail-img { order: -1; }
  .service-detail-img { max-height: 320px; }

  /* Related-Cards: 1 Spalte */
  .related-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Page-Hero kleiner */
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Services-Nav (Schnell-Navigation) */
  .services-nav { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .snav-item { padding: 8px 12px; font-size: 0.78rem; }
  .snav-item span { display: none; }

  /* CTA-Banner */
  .cta-banner .heading-lg { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Preise – Name und Preis übereinander wenn Text umbricht */
  .price-category { padding: 24px 16px; }
  .price-row { flex-direction: column; gap: 2px; padding: 12px 0; }
  .price-dots { display: none; }
  .price-name { font-size: 0.92rem; }
  .price-value { margin-left: 0; font-size: 0.9rem; color: var(--purple-700); font-weight: 700; }

  /* Page-Hero kompakter */
  .page-hero { padding: 100px 0 40px; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.15; }
  .page-hero p { font-size: 0.95rem; }

  /* Eyebrow überall linksbündig auf Mobile */
  .eyebrow { letter-spacing: 0.12em; font-size: 0.68rem; }

  /* Galerie-Filter */
  .gallery-filter { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .filter-btn { padding: 7px 14px; font-size: 0.78rem; }

  /* Team */
  .team-feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-feature-grid--reverse .team-feature-img { order: -1; }
  .team-feature-img { max-height: 340px; border-radius: var(--radius-xl); overflow: hidden; }
  .team-feature-img img { width: 100%; height: 100%; object-fit: cover; }
  .team-skills { gap: 8px; }

  /* Kontakt */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map { border-radius: var(--radius-lg); overflow: hidden; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.8rem; }
}

/* ============================================================
   MICRO-INTERACTIONS & CURSOR
   ============================================================ */

/* ── Custom Cursor ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  will-change: transform;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--gold-500);
  mix-blend-mode: normal;
  transition: transform 0s, opacity 0.3s, width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-ring {
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(124, 58, 237, 0.5);
  background: transparent;
  transition: transform 0s, opacity 0.3s, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.cursor-dot.cursor-hover {
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  background: var(--purple-500);
}

.cursor-ring.cursor-hover {
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-color: var(--gold-500);
}

.cursor-dot.cursor-click {
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: var(--gold-700);
}

/* ── Button Ripple ── */
.btn { overflow: hidden; }

.btn-ripple {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  animation: ripple-expand 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes ripple-expand {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ── Nav-Link Underline-Slide ── */
.nav-link:not(.btn):not(.nav-cta) {
  position: relative;
}
.nav-link:not(.btn):not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transition: width 0.28s ease, left 0.28s ease;
}
.nav-link:not(.btn):not(.nav-cta):hover::after,
.nav-link:not(.btn):not(.nav-cta).active::after {
  width: 100%; left: 0;
}

/* ── Related-Card Tilt – smooth transition beim Verlassen ── */
.related-card {
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.3s ease;
  will-change: transform;
}

/* ── Image Hover Zoom (alle Service-Bilder) ── */
.service-detail-img {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.service-detail-img img {
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.4s ease;
}
.service-detail-img:hover img {
  transform: scale(1.04);
  filter: brightness(1.04) saturate(1.1);
}

/* ── Footer-Social Pulse ── */
.footer-social a {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
  transform: scale(1.18) rotate(-6deg);
}

/* ── Smooth scroll behaviour ── */
html {
  scroll-behavior: smooth;
}

/* Cursor auf Touch-Geräten ausblenden */
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

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

  /* Reveal-Elemente sofort sichtbar */
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Gradient-Overlays statisch */
  .page-hero-gradient span,
  .hero-gradient-overlay span {
    transition: none !important;
  }

  /* Particles ausblenden */
  .particles-bg { display: none; }

  /* Cursor-Ring deaktivieren */
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Mobile Touch-Optimierungen ─────────────────────────── */
@media (max-width: 768px) {
  /* Tel-Links: größere Tap-Fläche ohne Layout-Änderung */
  a[href^="tel"] {
    display: inline-block;
    padding: 6px 2px;
    margin: -6px -2px;
  }

  /* Dropdown-Items im mobilen Slide-Menü: größere Tap-Fläche */
  .nav-dropdown-item {
    padding: 14px 18px;
    min-height: 44px;
  }

  /* Nav-Links im offenen Menü: größere Tap-Fläche */
  .nav-menu .nav-link {
    padding: 14px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Footer-Links */
  .footer-bottom a {
    display: inline-block;
    padding: 4px 0;
    min-height: 36px;
    line-height: 28px;
  }

  /* Preisliste: Preis deutlicher hervorheben */
  .price-value {
    font-weight: 700;
    color: var(--purple-700);
  }

  /* Image-Hover-Zoom auf Touch deaktivieren */
  .service-detail-img:hover img {
    transform: none;
    filter: none;
  }
}
