@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/* ============================================
   Friseursalon Isolde — Stylesheet
   Modern, Premium & Glassmorphism Design
   ============================================ */

:root {
  /* Elegant Light Palette */
  --color-bg: #F8F9FA;
  --color-bg-alt: #F1F3F5;
  --color-surface: #FFFFFF;
  --color-surface-glass: rgba(255, 255, 255, 0.7);
  --color-surface-glass-dark: rgba(255, 255, 255, 0.4);
  
  --color-text: #212529;
  --color-text-secondary: #495057;
  --color-text-muted: #868E96;
  
  --color-rose: #C59A94;
  --color-rose-light: #E2C9C5;
  --color-rose-dark: #A4756F;
  --color-gold: #D4AF37;
  --color-gold-light: #F3E5AB;
  
  --color-dark: #121212;
  --color-dark-glass: rgba(18, 18, 18, 0.85);

  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --shadow-xs: 0 2px 5px rgba(0,0,0,0.02);
  --shadow-sm: 0 5px 15px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  
  /* Blurs for Glassmorphism */
  --glass-blur: blur(16px);
  --glass-blur-heavy: blur(24px);

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

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  background-image: radial-gradient(circle at 15% 50%, rgba(197, 154, 148, 0.05), transparent 25%),
                    radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.03), transparent 25%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
em { font-style: italic; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 800px; }
.section { padding: 5rem 0; position: relative; }
.section--alt { background: linear-gradient(135deg, rgba(241,243,245,0.8) 0%, rgba(248,249,250,0.8) 100%); backdrop-filter: var(--glass-blur); }

/* ---------- Label ---------- */
.label-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-rose-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.label-text::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--color-rose-dark);
}
.deco-line { display: none; /* Replaced by modern label accents */ }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  background: var(--color-dark);
  color: #fff;
  border: 1px solid transparent;
  backdrop-filter: var(--glass-blur);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn__arrow { transition: transform var(--transition); font-size: 1.1em; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(197, 154, 148, 0.3);
}
.btn--primary:hover { 
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(197, 154, 148, 0.4); 
}

.btn--outline {
  background: var(--color-surface-glass);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { 
  background: var(--color-surface); 
  border-color: rgba(0,0,0,0.15); 
}

.btn--outline-light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn--outline-light:hover { background: #fff; color: var(--color-dark); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1.5rem 0;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  padding: 1rem 0;
}
.header.scrolled .header__logo,
.header.scrolled .nav__link { color: var(--color-text); }
.header.scrolled .hamburger__line { background: var(--color-text); }
.header.scrolled .nav__link::after { background: var(--color-rose); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: color var(--transition);
  letter-spacing: -0.5px;
}
.header__logo span { color: var(--color-rose-light); font-style: italic; }
.header.scrolled .header__logo span { color: var(--color-rose); }

.nav__list { display: flex; gap: 3rem; align-items: center; }
.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
  position: relative;
  padding: 0.5rem 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-rose-light);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: #fff; }
.nav__link--active::after { width: 100%; background: #fff; }

.header.scrolled .nav__link { color: var(--color-text-secondary); }
.header.scrolled .nav__link:hover { color: var(--color-rose-dark); }
.header.scrolled .nav__link--active { color: var(--color-dark); }

.header--sub {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.header--sub .header__logo { color: var(--color-text); }
.header--sub .header__logo span { color: var(--color-rose); }
.header--sub .nav__link { color: var(--color-text-secondary); }
.header--sub .nav__link:hover { color: var(--color-rose-dark); }
.header--sub .nav__link--active { color: var(--color-dark); }
.header--sub .nav__link::after { background: var(--color-rose); }
.header--sub .hamburger__line { background: var(--color-text); }

.hamburger { display: none; flex-direction: column; gap: 6px; z-index: 1001; }
.hamburger__line {
  width: 24px; height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(6px, 5px); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(6px, -5px); }

/* Mobile Nav */
.nav--mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: var(--glass-blur-heavy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav--mobile.open { opacity: 1; pointer-events: all; }
.nav--mobile .nav__link {
  font-size: 1.8rem;
  font-family: var(--font-display);
  color: var(--color-text);
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 900px) {
  .nav__list { display: none; }
  .hamburger { display: flex; }
  .nav--mobile { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero--split {
  min-height: 100vh;
  display: flex;
  background: #111111; /* Charcoal dark */
  overflow: hidden;
  position: relative;
}

.hero__split-content {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 4rem;
  position: relative;
  z-index: 2;
}

.hero__content-inner {
  max-width: 680px;
}

.hero__split-image {
  width: 55%;
  position: relative;
  height: 100vh;
}
.hero__split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__subtitle {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-rose-light);
  margin-bottom: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero__subtitle::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(226, 201, 197, 0.4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -1px;
}
.hero__title em {
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3.5rem;
  line-height: 1.8;
  max-width: 480px;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: nowrap; }
.hero__actions .btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

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

@media (max-width: 1024px) {
  .hero--split {
    flex-direction: column;
    height: 100vh;
    min-height: 600px;
  }
  .hero__split-content {
    width: 100%;
    height: 100%;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(18,18,18,0.3) 0%, rgba(18,18,18,0.7) 100%);
  }
  .hero__content-inner {
    max-width: 100%;
  }
  .hero__split-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__subtitle {
    justify-content: center;
  }
  .hero__subtitle::after {
    display: none;
  }
  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .hero__title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .hero__actions .btn { width: 100%; }
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
  padding: 11rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(197,154,148,0.1) 0%, rgba(248,249,250,0) 100%);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.4), transparent 70%);
  z-index: -1;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-hero__title em { color: var(--color-rose-dark); font-style: italic; }
.page-hero__subtitle { color: var(--color-text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   WELCOME
   ============================================ */
.welcome { text-align: center; }
.welcome .label-text { justify-content: center; }
.welcome .label-text::before, .welcome .label-text::after {
  content: ''; width: 24px; height: 1px; background: var(--color-rose-dark);
}
.welcome__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--color-dark);
}
.welcome__title em { font-weight: 600; color: var(--color-rose-dark); }
.welcome__text {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================
   HIGHLIGHTS
   ============================================ */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.highlight-card {
  background: var(--color-surface-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-rose), var(--color-rose-light));
  opacity: 0; transition: opacity var(--transition);
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--color-surface);
}
.highlight-card:hover::before { opacity: 1; }
.highlight-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--color-rose), var(--color-rose-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.highlight-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.highlight-card__text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   PREVIEW BA (Vorher/Nachher)
   ============================================ */
.preview-ba__intro { text-align: center; margin-bottom: 4rem; }
.preview-ba__intro .label-text { justify-content: center; }
.preview-ba__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}
.preview-ba__intro h2 em { font-weight: 600; color: var(--color-rose-dark); }
.preview-ba__intro p { color: var(--color-text-secondary); margin-top: 1rem; font-size: 1.1rem; }

.preview-ba__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.preview-ba__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}
.preview-ba__item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.preview-ba__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.preview-ba__item:hover img { transform: scale(1.08); }

.preview-ba__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  color: #fff;
}
.preview-ba__label { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin-bottom: 0.25rem; }
.preview-ba__desc { font-size: 0.9rem; opacity: 0.8; font-weight: 300; }

/* ============================================
   QUIZ / COLOR CONSULTANT
   ============================================ */
.color-consultant__intro { text-align: center; margin-bottom: 4rem; }
.color-consultant__intro .label-text { justify-content: center; }
.color-consultant__intro h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.color-consultant__intro h2 em { font-weight: 600; color: var(--color-rose-dark); }
.color-consultant__intro p { color: var(--color-text-secondary); margin-top: 1rem; }

.quiz-card {
  max-width: 650px;
  margin: 0 auto;
  background: var(--color-surface-glass);
  backdrop-filter: var(--glass-blur-heavy);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
}

.quiz-progress {
  display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 3rem;
}
.quiz-progress__dot {
  width: 40px; height: 4px; border-radius: 2px;
  background: rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.quiz-progress__dot.active { background: var(--color-rose-dark); width: 60px; }
.quiz-progress__dot.done { background: var(--color-rose-light); }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeInUp 0.5s ease; }

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

.quiz-step__question {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.quiz-options { display: flex; flex-direction: column; gap: 0.85rem; }
.quiz-option {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
  color: var(--color-text-secondary);
}
.quiz-option:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(197, 154, 148, 0.3); }
.quiz-option.selected {
  border-color: var(--color-rose);
  background: rgba(197, 154, 148, 0.05);
  color: var(--color-dark);
}
.quiz-option__color {
  width: 40px; height: 40px; border-radius: 50%;
  flex-shrink: 0; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quiz-result { text-align: center; }
.quiz-result__title { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-rose-dark); margin-bottom: 1rem; }
.quiz-result__desc { color: var(--color-text-secondary); margin-bottom: 2rem; line-height: 1.7; }
.quiz-result__colors { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.quiz-result__swatch {
  width: 60px; height: 60px; border-radius: 50%;
  border: 4px solid #fff; box-shadow: var(--shadow-sm);
  position: relative; transition: transform var(--transition);
}
.quiz-result__swatch:hover { transform: scale(1.15); }

.quiz-nav { display: flex; justify-content: space-between; margin-top: 2.5rem; }

/* ============================================
   HAARPFLLEGE-TIPPS
   ============================================ */
.hair-tips__intro { text-align: center; margin-bottom: 4rem; }
.hair-tips__intro .label-text { justify-content: center; }
.hair-tips__intro h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.hair-tips__intro h2 em { font-weight: 600; color: var(--color-rose-dark); }

.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tip-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.03);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tip-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.tip-card__title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 600; color: var(--color-dark); }
.tip-card__text { color: var(--color-text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--color-dark) 100%);
  color: #fff; 
  text-align: center; 
  padding: 3.5rem 0;
  position: relative; 
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197,154,148,0.15), transparent 60%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { 
  font-family: var(--font-display); 
  font-size: clamp(2rem, 5vw, 3.5rem); 
  margin-bottom: 1.5rem; 
  font-weight: 400; 
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 em { color: var(--color-rose-light); font-weight: 600; }
.cta-banner p { 
  opacity: 0.8; 
  margin-bottom: 2.5rem; 
  font-size: 1.1rem; 
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICES (Leistungen)
   ============================================ */
.services__category { margin-bottom: 4rem; }
.services__cat-title {
  font-family: var(--font-display); font-size: 1.8rem; color: var(--color-rose-dark);
  margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid rgba(197,154,148,0.2); font-weight: 600;
}
.service-item {
  display: flex; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.03);
}
.service-item__name { font-weight: 500; font-size: 1.05rem; }
.service-item__desc { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 4px; }
.service-item__dots { flex: 1; border-bottom: 1px dotted rgba(0,0,0,0.1); min-width: 20px; margin-bottom: 6px; }
.service-item__price { font-weight: 600; color: var(--color-rose-dark); white-space: nowrap; font-size: 1.1rem; }

/* ============================================
   PREISRECHNER
   ============================================ */
.price-calc__intro { text-align: center; margin-bottom: 4rem; }
.price-calc__intro .label-text { justify-content: center; }
.price-calc__intro h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }

.calc-card {
  max-width: 700px; margin: 0 auto; background: var(--color-surface);
  border-radius: var(--radius-xl); padding: 3.5rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.03);
}
.calc-services { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.calc-service {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius-lg);
  cursor: pointer; transition: all var(--transition); user-select: none;
  background: var(--color-bg-alt);
}
.calc-service:hover { border-color: rgba(197,154,148,0.5); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.calc-service.selected { border-color: var(--color-rose); background: rgba(197,154,148,0.05); }

.calc-service__check {
  width: 24px; height: 24px; border-radius: 6px; border: 2px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: transparent;
  transition: all var(--transition); margin-right: 1rem; flex-shrink: 0; background: #fff;
}
.calc-service.selected .calc-service__check { background: var(--color-rose); border-color: var(--color-rose); color: #fff; }
.calc-service__name { font-weight: 500; font-size: 1rem; color: var(--color-text-secondary); }
.calc-service.selected .calc-service__name { color: var(--color-dark); }
.calc-service__price { font-weight: 600; color: var(--color-rose-dark); font-size: 1.05rem; }

.calc-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem; background: var(--color-dark); border-radius: var(--radius-lg); color: #fff;
}
.calc-total__label { font-weight: 400; font-size: 1.1rem; opacity: 0.8; }
.calc-total__price { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--color-gold-light); }

/* ============================================
   TERMIN BUCHUNG
   ============================================ */
.termin-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 4rem; align-items: start; }
.termin-form { background: var(--color-surface); border-radius: var(--radius-xl); padding: 3.5rem; box-shadow: var(--shadow-lg); }
.termin-info { background: var(--color-surface); border-radius: var(--radius-xl); padding: 3rem; border: 1px solid rgba(0,0,0,0.03); }
.termin-info__item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.termin-info__item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.termin-info__icon { font-size: 1.3rem; margin-top: 2px; }
.termin-info__text { font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.6; }
.termin-info__text strong { color: var(--color-dark); display: block; margin-bottom: 4px; font-weight: 600; }

/* ============================================
   FORMS & CONTACT
   ============================================ */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--color-text-secondary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 1rem 1.25rem; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius-lg);
  font-size: 1rem; font-family: var(--font-body); background: var(--color-bg); transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-rose); box-shadow: 0 0 0 4px rgba(197,154,148,0.15); outline: none; background: #fff;
}
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact__info h3, .contact__form h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 2rem; font-weight: 600; }
.contact__detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact__detail-icon { font-size: 1.2rem; }
.contact__detail-text { font-size: 0.95rem; color: var(--color-text-secondary); }
.contact__detail-text strong { display: block; color: var(--color-dark); margin-bottom: 4px; font-weight: 600; }
.contact__hours { background: var(--color-bg-alt); border-radius: var(--radius-lg); padding: 1.5rem; margin-top: 2rem; }
.contact__hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.4rem 0; color: var(--color-text-secondary); }
.contact__hours-row span:last-child { font-weight: 600; color: var(--color-dark); }
.contact__map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 400px; }
.contact__map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   GALLERY
   ============================================ */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gallery__item { border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: all var(--transition-slow); }
.gallery__item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.gallery__item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1s ease; }
.gallery__item:hover img { transform: scale(1.06); }

/* ============================================
   VORHER/NACHHER SLIDER
   ============================================ */
.slider-container { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); cursor: ew-resize; }
.slider-container__before { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; }
.slider-container__after { position: absolute; inset: 0; background-size: cover; background-position: center; clip-path: inset(0 50% 0 0); }
.slider-container__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: rgba(255,255,255,0.9); transform: translateX(-50%); z-index: 5; box-shadow: 0 0 20px rgba(0,0,0,0.2); }
.slider-container__handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-lg); color: var(--color-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--color-dark); color: rgba(255,255,255,0.6); padding: 4rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer__brand { font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: 1rem; font-weight: 600; }
.footer__brand span { color: var(--color-rose-light); font-style: italic; }
.footer__desc { font-size: 0.95rem; line-height: 1.8; max-width: 320px; }
.footer__heading { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.footer__links a, .footer__social a { display: block; font-size: 0.95rem; padding: 0.35rem 0; transition: color var(--transition); }
.footer__links a:hover, .footer__social a:hover { color: var(--color-rose-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; text-align: center; font-size: 0.9rem; }

/* ============================================
   GOOGLE REVIEWS WIDGET
   ============================================ */
.reviews-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--color-surface-glass);
  backdrop-filter: var(--glass-blur);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  display: block;
}

.reviews-widget:hover {
  transform: translateY(-5px);
  background: var(--color-surface);
  border-color: var(--color-rose);
}

.reviews-widget__content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-widget__google {
  display: flex;
  padding: 0.5rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
}

.reviews-widget__info {
  display: flex;
  flex-direction: column;
}

.reviews-widget__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-widget__score {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark);
}

.reviews-widget__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.reviews-widget__count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .reviews-widget {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.65rem 1rem;
  }
}

/* ============================================
   ANIMATIONS & RESPONSIVE
   ============================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.scale-in { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease, transform 0.8s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.fade-in-delay-1 { transition-delay: 0.1s; } .fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; } .fade-in-delay-4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
  .highlights__grid, .preview-ba__grid, .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .termin-grid, .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .highlights__grid, .preview-ba__grid, .gallery__grid, .tips-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}