/* ============================================================
   HAUT & HAAR SCHLITZ — style.css
   Copyright © 2026 FK Designstudio & GoMedia
   Alle Rechte vorbehalten. Unauthorized copying prohibited.
   ============================================================ */

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

/* --- CSS Variablen --- */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #A07830;
  --mocha-900:  #2A1A10;
  --mocha-800:  #3D2B1F;
  --mocha-700:  #5C3D2E;
  --mocha-600:  #7A5346;
  --mocha-400:  #B08070;
  --mocha-100:  #F0E8E3;
  --cream-50:   #FDF8F3;
  --cream-100:  #F5EDE3;
  --white:      #FFFFFF;
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-light: #7A7A7A;
  --radius:     10px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
  --spacing-6:  1.5rem;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.has-sticky-call-bar {
  padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--mocha-800); margin-bottom: 0.75rem; }
.section-title span { color: var(--gold); }
.section-subtitle { font-size: 1rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.gold-line { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 0.85rem auto 1.25rem; border-radius: 2px; }

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.bg-cream { background: var(--cream-50); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--white);
  font-weight: 600; font-size: 1rem; padding: 0.85rem 2rem;
  border-radius: 50px; border: 2px solid var(--gold);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.btn-phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c96d 100%); 
  color: var(--mocha-900);
  font-weight: 700; font-size: 1.15rem; padding: 1rem 2.2rem;
  border-radius: 50px; border: none;
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  position: relative;
  overflow: hidden;
}
.btn-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-phone:hover::before {
  left: 100%;
}
.btn-phone:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 8px 30px rgba(201,168,76,0.5); 
}
.btn-phone svg {
  animation: phoneRing 2s ease-in-out infinite;
}
@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  50%, 100% { transform: rotate(0deg); }
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 1rem; padding: 0.85rem 2rem;
  border-radius: 50px; border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--gold);
  font-weight: 600; font-size: 0.92rem; padding: 0.7rem 1.6rem;
  border-radius: 50px; border: 2px solid var(--gold);
  cursor: pointer; transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4), 0 0 30px rgba(201,168,76,0.3);
  animation: pulse-glow 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.btn-primary-hero svg {
  animation: phone-shake 3s ease-in-out infinite;
}
.btn-primary-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6), 0 0 50px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-primary-hero::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  opacity: 0;
  animation: ring-pulse 2.5s ease-out infinite;
  z-index: -1;
}
.btn-primary-hero::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  opacity: 0;
  animation: ring-pulse 2.5s 0.3s ease-out infinite;
  z-index: -1;
}

/* --- Header --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-100);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; gap: 1rem; }
.logo img { height: 65px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: 1.75rem; }
.main-nav li { position: relative; }
.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--mocha-700); transition: color var(--transition); position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }
.nav-jobs-link { color: var(--mocha-700) !important; font-size: 0.92rem !important; }

/* Dropdown Menu */
.main-nav .dropdown { position: relative; }
.main-nav .dropdown > a { display: flex; align-items: center; gap: 0.35rem; }
.main-nav .dropdown > a::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s;
}
.main-nav .dropdown:hover > a::before { transform: rotate(180deg); opacity: 1; }
.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  margin-top: 0.75rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(42,26,16,0.15);
  padding: 0.75rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid var(--cream-100);
}
.main-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropdown-menu { display: flex; flex-direction: column; }
.main-nav .dropdown-menu li { margin: 0; }
.main-nav .dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  color: var(--mocha-700);
  transition: all 0.2s ease;
}
.main-nav .dropdown-menu a::after { display: none; }
.main-nav .dropdown-menu a:hover {
  background: var(--cream-50);
  color: var(--gold);
  padding-left: 1.5rem;
}


.header-cta-phone,
.header-cta-booking {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--white) !important;
  font-weight: 600; font-size: 0.9rem; padding: 0.55rem 1.2rem;
  border-radius: 50px; border: none; white-space: nowrap;
  transition: var(--transition);
}
.header-cta-phone:hover,
.header-cta-booking:hover { background: var(--gold-dark); }
.header-cta-phone svg,
.header-cta-booking svg { color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--mocha-800); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--cream-100); padding: 1rem 1.5rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu li a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--cream-100); font-weight: 500; color: var(--mocha-700); }
.mobile-menu li a.mobile-sub-link {
  padding: 0.55rem 0 0.55rem 0.85rem;
  font-size: 0.87rem;
  font-weight: 450;
  color: var(--mocha-600);
  border-bottom: 1px dashed rgba(201,168,76,0.2);
}
.mobile-menu li a.mobile-sub-link:hover { color: var(--gold-dark); }
.mobile-menu .mobile-phone-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; background: var(--gold); color: var(--white); font-weight: 700; padding: 0.9rem; border-radius: 50px; font-size: 1rem; }
.mobile-menu .mobile-booking-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; background: var(--gold); color: var(--white); font-weight: 700; padding: 0.9rem; border-radius: 50px; font-size: 1rem; }
.header-spacer { height: 74px; }

/* --- Hero --- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, rgba(42,26,16,0.95) 0%, rgba(58,38,25,0.92) 100%); }
.hero .container { padding-top: var(--spacing-6); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(42,26,16,0.75) 0%, rgba(58,38,25,0.65) 50%, rgba(42,26,16,0.8) 100%); z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 4rem 0 3rem; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,168,76,0.22); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(201,168,76,0.5); color: var(--gold-light); font-size: 0.88rem; font-weight: 500; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.25rem; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero-badge .stars { color: #FBBC05; }

.hero h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.12; color: var(--white); margin-bottom: 0.85rem; }
.hero h1 .highlight { color: var(--gold); }
.hero-lead { font-size: 1.08rem; color: rgba(255,255,255,0.92); margin-bottom: 2.15rem; max-width: 500px; line-height: 1.65; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 0.9rem; }
.hero-cta .btn-phone,
.hero-cta .btn-secondary {
  font-size: 0.98rem;
  padding: 0.8rem 1.65rem;
}
.hero-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.hero-note a { color: rgba(255,255,255,0.75); text-decoration: underline; }

.hero-services { display: flex; gap: 0.75rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-service-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-decoration: none; cursor: pointer; }
.hero-service-thumb { width: 100px; height: 100px; border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(201,168,76,0.25); transition: var(--transition); background: rgba(42,26,16,0.35); padding: 4px; }
.hero-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(0.92);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.hero-service-thumb img.hero-locken-img {
  object-fit: cover;
  object-position: center 36%;
  transform: scale(0.98);
}
.hero-service-item:hover .hero-service-thumb img { transform: scale(0.96); }
.hero-service-item:hover .hero-service-thumb img.hero-locken-img { transform: scale(1.03); }
.hero-service-item:hover .hero-service-thumb { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(201,168,76,0.3); }
.hero-service-label { font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,0.88); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

/* --- Trust Bar --- */
.trust-bar { background: var(--mocha-800); padding: 1.2rem 0; }
.trust-bar-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1.5rem 3rem; }
.trust-item { display: flex; align-items: center; gap: 0.55rem; color: rgba(255,255,255,0.82); font-size: 0.88rem; font-weight: 500; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* --- Services --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.service-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-before-after { display: flex; height: 220px; position: relative; }
.before-col, .after-col { flex: 1; position: relative; overflow: hidden; }
.before-col img, .after-col img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .before-col img, .service-card:hover .after-col img { transform: scale(1.06); }
.ba-label { position: absolute; bottom: 0.5rem; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 4px; color: var(--white); letter-spacing: 0.5px; }
.ba-label.before { left: 0.5rem; background: rgba(42,26,16,0.88); }
.ba-label.after  { right: 0.5rem; background: rgba(201,168,76,0.95); }
.ba-divider { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.5); transform: translateX(-50%); z-index: 1; }

.service-body { padding: 1.5rem; }
.service-body h3 { color: var(--mocha-800); margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-body p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; }
.service-card-delay-1 { transition-delay: 0.1s; }
.service-card-delay-2 { transition-delay: 0.2s; }
.img-object-top { object-position: top; }
.service-links-inline { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.service-inline-link {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 1px;
}
.service-inline-link-block { display: inline-block; margin-top: 1rem; }
.services-cta-wrap { margin-top: 3rem; }
.services-cta-btn { font-size: 1rem; padding: 0.9rem 2rem; }

/* --- About / Team --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.partners-section {
  margin-top: 1.8rem;
  padding: 2.4rem 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(201,168,76,0.08) 0%, transparent 45%),
    linear-gradient(180deg, #fff 0%, #fcf8f3 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.partners-headline-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.partners-section .partners-heading { margin-bottom: 0; color: var(--mocha-800); }
.partners-intro {
  max-width: 560px;
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  color: var(--text-mid);
  line-height: 1.75;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
}
.partners-intro span {
  color: var(--mocha-800);
  font-weight: 600;
  white-space: nowrap;
}
.partners-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.partner-tile {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(42,26,16,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.partner-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 16px 32px rgba(42,26,16,0.12);
}
.partner-logo {
  width: auto;
  height: 56px;
  max-width: 82%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.partner-logo--cnc {
  transform: scale(1.72);
  transform-origin: center;
}
.partner-tile:hover .partner-logo {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}
.partner-tile:hover .partner-logo--cnc {
  transform: scale(1.8);
}
/* Responsive partners layout */
@media (max-width: 920px) {
  .partners-headline-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .partners-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners-row .partner-tile:last-child { grid-column: span 2; }
  .partners-intro span { white-space: normal; }
}

@media (max-width: 560px) {
  .partners-section { padding: 1.8rem 0; }
  .partners-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .partners-row .partner-tile:last-child { grid-column: auto; }
  .partner-tile { min-height: 108px; }
  .partner-logo { height: 44px; }
  .partner-logo--cnc { transform: scale(1.55); }
  .partner-tile:hover .partner-logo--cnc { transform: scale(1.62); }
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 0.85rem; border: 3px solid var(--cream-100); transition: var(--transition); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:nth-child(4) .team-photo img { transform: scale(1.4); object-position: center 20%; }
.team-card:hover .team-photo { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.15); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card:nth-child(4):hover .team-photo img { transform: scale(1.45); }
.team-name { font-weight: 700; font-size: 0.95rem; color: var(--mocha-800); }
.team-role { font-size: 0.82rem; color: var(--text-light); }
.gold-line-left { margin-left: 0; }
.gold-line-top { margin: 0.75rem auto 0; }
.gold-line-bottom { margin: 0.75rem auto 2rem; }
.team-fade-delay { transition-delay: 0.15s; }
.team-heading { color: var(--mocha-800); margin-bottom: 1.5rem; }

/* --- Testimonials --- */
.reviews-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.reviews-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--cream-100); flex-wrap: wrap; gap: 0.75rem; }
.rating-badge { display: flex; align-items: center; gap: 0.75rem; }
.rating-num { font-size: 2.2rem; font-weight: 700; color: var(--mocha-800); line-height: 1; font-family: 'Playfair Display', serif; }
.stars-row { color: #FBBC05; font-size: 1.1rem; letter-spacing: 1px; display: block; }
.reviews-count { font-size: 0.82rem; color: var(--text-light); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.review-card { padding: 1.5rem; border-right: 1px solid var(--cream-100); }
.review-card:last-child { border-right: none; }
.reviewer-row { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.avatar-marina { background: #E91E63; }
.avatar-frank { background: #FF9800; }
.avatar-life { background: #2196F3; }
.avatar-mandy { background: #673AB7; }
.avatar-joachim { background: #4CAF50; }
.avatar-stefan { background: #607D8B; }
.avatar-aileen { background: #FFC107; }
.avatar-halida { background: #009688; }
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--mocha-800); }
.review-time { font-size: 0.75rem; color: var(--text-light); }
.review-stars { color: #FBBC05; font-size: 0.85rem; margin-bottom: 0.5rem; }
.review-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.reviews-box-top { margin-top: 2.5rem; }
.reviews-toggle-wrap { text-align: center; border-top: 1px solid var(--cream-100); }
.reviews-google-cta-wrap { margin-top: 2rem; }

.reviews-more { border-top: 1px solid var(--cream-100); display: grid; grid-template-columns: repeat(3, 1fr); }
.reviews-more.hidden { display: none; }
.reviews-more .review-card { border-right: 1px solid var(--cream-100); border-bottom: 1px solid var(--cream-100); }
.reviews-more .review-card:nth-child(3n) { border-right: none; }

.toggle-btn { display: flex; align-items: center; gap: 0.4rem; margin: 0 auto; background: none; border: none; cursor: pointer; font-size: 0.88rem; font-weight: 600; color: var(--mocha-700); padding: 0.9rem; transition: color var(--transition); font-family: inherit; }
.toggle-btn:hover { color: var(--gold); }
.toggle-btn .chevron { transition: transform 0.3s; }
.toggle-btn.open .chevron { transform: rotate(180deg); }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.contact-grid-top { margin-top: 3rem; }
.map-frame { width: 100%; height: 320px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 1.5rem; }
.map-frame iframe { border: none; }

.info-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; }
.contact-row { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--cream-100); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-label { font-size: 0.78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.1rem; }
.contact-value { font-size: 0.92rem; color: var(--text-dark); }
.owner-note { color: var(--text-light); }
.contact-value a { color: var(--mocha-800); }
.contact-value a:hover { color: var(--gold); }

.cities-wrap { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.cities-region-wrap { margin-top: 1.5rem; }
.cities-region-title { font-size: 1rem; color: var(--mocha-800); margin-bottom: 0.75rem; }
.city-tag { padding: 0.28rem 0.8rem; background: var(--mocha-100); color: var(--mocha-700); border-radius: 50px; font-size: 0.8rem; font-weight: 500; }

.hours-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; }
.hours-card-title { display: flex; align-items: center; gap: 0.5rem; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--mocha-800); margin-bottom: 1rem; font-weight: 600; }
.hours-card-title svg { color: var(--gold); }
.hours-row { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid var(--cream-100); font-size: 0.88rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: var(--mocha-800); }
.hours-time { color: var(--text-mid); }
.hours-time.closed { color: var(--mocha-400); }
.hours-tip { margin-top: 0.85rem; padding: 0.75rem 1rem; background: var(--cream-50); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; font-size: 0.82rem; color: var(--text-mid); }

.phone-cta-card { background: linear-gradient(135deg, var(--mocha-800) 0%, var(--mocha-900) 100%); border-radius: var(--radius); padding: 2rem; text-align: center; color: var(--white); }
.phone-cta-card h3 { font-family: 'Playfair Display', serif; color: var(--white); margin-bottom: 0.5rem; font-size: 1.2rem; }
.phone-cta-card > p { font-size: 0.9rem; opacity: 0.75; margin-bottom: 1.25rem; }
.phone-cta-num { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; color: var(--gold-light); display: block; margin-bottom: 1.25rem; letter-spacing: 0.5px; }
.bestandskunden-note { margin-top: 1.25rem; font-size: 0.78rem; opacity: 0.45; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.bestandskunden-note a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.contact-fade-delay { transition-delay: 0.15s; }
.cta-btn-full { width: 100%; justify-content: center; }

/* --- Footer --- */
.site-footer { background: var(--mocha-900); color: rgba(255,255,255,0.65); padding: 3rem 0 1.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 64px; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.8); }
.footer-logo-custom { height: 55px; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(.7); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1rem; margin-bottom: 0.85rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom p {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.footer-bottom p a {
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.footer-bottom p a:hover {
  border-bottom-color: rgba(201,168,76,0.5);
}

/* --- JOBS PAGE --- */
.jobs-hero { background: linear-gradient(135deg, var(--mocha-800) 0%, var(--mocha-900) 100%); padding: 5rem 0 4rem; text-align: center; color: var(--white); }
.jobs-hero h1 { color: var(--white); margin-bottom: 1rem; }
.jobs-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.benefit-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition); }
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cream-50); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.benefit-card h3 { font-size: 0.95rem; color: var(--mocha-800); margin-bottom: 0.3rem; }
.benefit-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }

.job-desc-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }
.job-desc-card h3 { color: var(--mocha-800); margin-bottom: 1rem; font-size: 1.05rem; }
.job-desc-card p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.7; }
.req-list li { padding: 0.45rem 0; border-bottom: 1px solid var(--cream-100); display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-mid); }
.req-list li:last-child { border-bottom: none; }
.req-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

.team-img-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.team-img-card img { width: 100%; height: 280px; object-fit: cover; }
.team-img-caption { background: var(--white); text-align: center; padding: 1rem; font-weight: 600; color: var(--mocha-800); font-size: 0.95rem; }

.application-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-md); }
.application-form h2 { color: var(--mocha-800); margin-bottom: 0.4rem; font-size: 1.6rem; }
.application-form > p { color: var(--text-mid); margin-bottom: 2rem; font-size: 0.92rem; }

.form-group { margin-bottom: 1.35rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--mocha-800); margin-bottom: 0.45rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.72rem 1rem;
  border: 1.5px solid #E8DDD5; border-radius: 8px;
  font-size: 0.92rem; font-family: inherit; color: var(--text-dark);
  background: var(--cream-50); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 95px; }

.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.form-checkbox input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.form-checkbox label { font-size: 0.85rem; color: var(--text-mid); }
.form-checkbox a { color: var(--gold); text-decoration: underline; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }
.form-submit { 
  width: 100%; 
  padding: 1rem; 
  background: linear-gradient(135deg, var(--gold) 0%, #e8c96d 100%); 
  color: var(--mocha-900); 
  border: none; 
  border-radius: 50px; 
  font-size: 1rem; 
  font-weight: 700; 
  font-family: inherit; 
  cursor: pointer; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.form-submit:hover::before {
  left: 100%;
}
.form-submit:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 8px 30px rgba(201,168,76,0.5); 
}

/* --- Öffnungszeiten Status --- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.status-badge.open {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #4ade80;
}
.status-badge.closed {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-badge.open .status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-dot 1.8s infinite;
}
.status-badge.closed .status-dot {
  background: rgba(255,255,255,0.35);
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Heute-Highlight in Öffnungszeiten */
.hours-row.today {
  background: rgba(201,168,76,0.1);
  border-radius: 6px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin: 0 -0.5rem;
}
.hours-row.today .hours-day {
  color: var(--gold-dark);
  font-weight: 700;
}
.hours-row.today .hours-time {
  color: var(--gold-dark);
  font-weight: 600;
}

/* Phone-CTA Karte — open state */
.phone-cta-card.is-open {
  background: linear-gradient(135deg, var(--mocha-700) 0%, var(--mocha-800) 100%);
  border: 1px solid rgba(186,153,112,0.2);
}
.phone-cta-card .cta-phone-big {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  margin: 0.75rem 0 1.25rem;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.phone-cta-card .cta-phone-big:hover { color: var(--white); }

/* --- Rückruf-Formular (Fallback wenn geschlossen) --- */
.callback-form-wrap {
  margin-top: 1.25rem;
}
.is-hidden { display: none; }
.cb-honeypot { position: absolute; left: -9999px; }
.callback-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.callback-divider::before,
.callback-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.callback-divider span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.callback-form { display: flex; flex-direction: column; gap: 0.85rem; }

.cb-field { display: flex; flex-direction: column; gap: 0.35rem; }
.cb-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cb-optional { font-weight: 400; text-transform: none; letter-spacing: 0; }

.cb-field input,
.cb-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.cb-field input::placeholder,
.cb-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.cb-field input:focus,
.cb-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.cb-field textarea { resize: none; min-height: 64px; }

.cb-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  margin-top: 0.25rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.cb-submit:hover:not(:disabled) { background: var(--gold-dark); transform: translateY(-2px); }
.cb-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cb-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.25rem;
  line-height: 1.5;
}
.cb-privacy a { color: rgba(255,255,255,0.45); text-decoration: underline; }

.cb-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  gap: 0.5rem;
  color: var(--white);
}
.cb-success svg { color: #4ade80; }
.cb-success strong { font-size: 1rem; display: block; }

/* --- Step-by-Step Formular --- */
.cb-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.cb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.cb-step.cb-step-active {
  opacity: 1;
}
.cb-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.cb-step-active .cb-step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.cb-step span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.cb-step-active span {
  color: var(--white);
}
.cb-step-content {
  display: none;
}
.cb-step-content.cb-step-active {
  display: block;
}
.cb-step-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.cb-next-btn, .cb-back-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cb-back-btn {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}
.cb-back-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.cb-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.cb-service-item {
  position: relative;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.9rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cb-service-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cb-service-item input[type="checkbox"]:checked + span {
  color: var(--white);
}
.cb-service-item:has(input:checked) {
  background: var(--gold);
  border-color: var(--gold);
}
.cb-service-item span {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}
.cb-service-item:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.cb-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0.4rem 0 0.75rem;
}
.cb-file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cb-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  margin: 0;
}
.cb-file-label:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
.cb-file-label svg {
  color: var(--gold);
  flex-shrink: 0;
}
.cb-file-text {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.9rem;
}
.cb-file-name {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* --- Step-by-Step Formular --- */
.step-form-wrap { display: flex; flex-direction: column; gap: 1rem; }
.step-indicator { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.24);
  color: var(--mocha-700);
}
.step-pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.step-panel { display: none; }
.step-panel.is-active { display: block; }
.step-nav {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 0.35rem;
}
.step-nav-submit {
  flex-direction: column;
  align-items: stretch;
}
.step-btn {
  appearance: none;
  border: 1px solid rgba(201,168,76,0.4);
  background: var(--cream-50);
  color: var(--mocha-800);
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.step-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.step-btn-next {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  border-color: var(--gold);
}
.step-btn-next:hover { background: var(--gold-dark); color: var(--white); }
.service-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.35rem;
}
.service-check-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  background: var(--cream-50);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}
.service-check-item input { accent-color: var(--gold); }
.step-error {
  color: #f87171;
  margin-top: 0.35rem;
  font-size: 0.78rem;
}
.step-upload-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  opacity: 0.7;
}
.phone-cta-card .step-pill {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.65);
}
.phone-cta-card .step-pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.phone-cta-card .step-btn { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.2); }
.phone-cta-card .step-btn-next { background: var(--gold); border-color: var(--gold); color: var(--white); }
.phone-cta-card .service-check-item {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
}
.phone-cta-card .step-service-field > label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.3rem;
}
.phone-cta-card .step-service-field .service-check-grid {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
.phone-cta-card .step-service-field .service-check-item {
  min-height: 58px;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
}
.phone-cta-card .step-service-field .service-check-item span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}
.callback-modal .step-pill { background: rgba(201,168,76,0.14); color: var(--mocha-800); }
.callback-modal .step-pill.is-active { color: var(--white); }
.callback-modal .service-check-item { background: #fff; }

/* --- Rechtliches Seitenlayout --- */
.legal-page { padding-top: 4rem; }
.legal-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: clamp(1.1rem, 2.8vw, 2rem);
}
.legal-content { color: var(--text-mid); line-height: 1.75; font-size: 0.95rem; }
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  color: var(--mocha-800);
  font-family: 'Playfair Display', serif;
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
}
.legal-content h2 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
.legal-content h3 { font-size: clamp(1.03rem, 1.7vw, 1.2rem); }
.legal-content h4 { font-size: 1rem; }
.legal-content p { margin-bottom: 0.75rem; }
.legal-content ul { list-style: disc; padding-left: 1.2rem; margin: 0.65rem 0 0.9rem; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.cb-success span { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* --- Inline Style Utility Classes --- */
.inline-logo { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.7); }
.hero-badge-inline { margin-bottom: 1.5rem; display: inline-flex; }
.h1-gold { color: var(--gold); }
.benefits-grid-centered { max-width: 800px; margin: 0 auto; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-15 { transition-delay: 0.15s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.paragraph-bold { font-weight: 600; color: var(--mocha-800); margin-bottom: 0.5rem; }
.gold-line-no-margin { margin-left: 0; }

/* Sticky Call Bar (erscheint wenn geöffnet) */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0f2718;
  border-top: 1px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-call-bar.visible { transform: translateY(0); }
.sticky-call-bar.hidden { display: none; }
.sticky-call-bar.is-closed {
  background: #2a1a10;
  border-top-color: rgba(201,168,76,0.35);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.sticky-call-bar.is-closed .sticky-open-dot {
  background: var(--gold);
  animation: none;
}
.sticky-call-bar.is-closed .sticky-open-label {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
}
.sticky-call-bar.is-closed .sticky-call-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--mocha-900);
  box-shadow: 0 4px 14px rgba(201,168,76,0.25);
}

.sticky-bar-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}
.sticky-open-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
.sticky-open-label { color: #4ade80; font-size: 0.78rem; display: block; font-weight: 500; }
#sticky-state-text {
  display: block;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.sticky-call-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.65rem 1.4rem; border-radius: 50px;
  white-space: nowrap; flex-shrink: 0;
  transition: var(--transition);
}
.sticky-call-btn:hover { background: var(--gold-dark); }

@media (max-width: 820px) {
  .sticky-call-bar {
    padding: 0.7rem 0.9rem;
    gap: 0.75rem;
  }
  .sticky-bar-left {
    gap: 0.5rem;
    min-width: 0;
  }
  #sticky-state-text {
    font-size: 0.88rem;
  }
  .sticky-call-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

/* Scroll fade-in */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* --- Responsive --- */

/* Tablet (960px) */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-cta-phone { display: none; }
  .header-cta-booking {
    display: inline-flex;
    padding: 0.48rem 0.95rem;
    font-size: 0.82rem;
    gap: 0.35rem;
  }
  .header-cta-booking svg { width: 14px; height: 14px; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { border-right: none; border-bottom: 1px solid var(--cream-100); }
  .reviews-more { grid-template-columns: 1fr; }
  .reviews-more .review-card { border-right: none; }
  .jobs-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .map-frame { height: 260px; }
}

/* Tablet Klein / Großes Handy (768px) */
@media (max-width: 768px) {
  .hero { min-height: 92vh; }
  .hero-content { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .hero-lead { font-size: 1.05rem; line-height: 1.65; }
  .hero-badge { font-size: 0.82rem; padding: 0.35rem 0.9rem; }
  .hero-cta { gap: 0.85rem; }
  .btn-phone, .btn-secondary { font-size: 0.95rem; padding: 0.85rem 1.75rem; }
  .btn-primary-hero { font-size: 1rem; padding: 1rem 2.2rem; }
  .btn-primary-hero svg { width: 19px; height: 19px; }
  .hero-services { margin-top: 2.5rem; gap: 0.6rem; justify-content: center; }
  .hero-service-thumb { width: 72px; height: 72px; }
  .hero-service-label { font-size: 0.72rem; }
  .trust-bar-inner { gap: 1.25rem 2rem; }
  .trust-item { font-size: 0.82rem; }
  .trust-item svg { width: 16px; height: 16px; }
  .header-spacer { height: 70px; }
  /* Bewertungen */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  /* Jobs */
  .benefits-grid { grid-template-columns: 1fr; }
  .application-form { padding: 2rem 1.5rem; }
  .jobs-hero { padding: 4rem 0 3rem; }
}

/* Handy Standard (620px) */
@media (max-width: 620px) {
  .container { padding: 0 1rem; }
  .section-pad { padding: 3rem 0; }
  .section-pad-sm { padding: 2rem 0; }

  /* Hero */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: clamp(1.6rem, 9vw, 2.2rem); line-height: 1.15; margin-bottom: 0.85rem; }
  .hero-lead { font-size: 0.98rem; line-height: 1.6; margin-bottom: 2rem; }
  .hero-badge { font-size: 0.78rem; padding: 0.32rem 0.85rem; flex-wrap: wrap; justify-content: center; text-align: center; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; gap: 0.75rem; }
  .btn-phone, .btn-secondary { width: 100%; text-align: center; justify-content: center; font-size: 0.92rem; padding: 0.9rem 1.5rem; }
  .btn-primary-hero { width: 100%; text-align: center; justify-content: center; font-size: 0.95rem; padding: 1rem 1.8rem; }
  .btn-primary-hero svg { width: 18px; height: 18px; }
  .btn-primary-hero::before, .btn-primary-hero::after { display: none; }
  .hero-note { text-align: center; margin-top: 0.5rem; }
  .hero-services { gap: 0.5rem; margin-top: 2rem; justify-content: center; }
  .hero-service-thumb { width: 68px; height: 68px; }
  .hero-service-label { font-size: 0.7rem; text-align: center; }

  /* Trust Bar */
  .trust-bar { padding: 1rem 0; }
  .trust-bar-inner { gap: 0.6rem 1.5rem; justify-content: flex-start; }
  .trust-item { font-size: 0.8rem; }
  .trust-item svg { width: 15px; height: 15px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-before-after { height: 180px; }

  /* Team */
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .team-photo { width: 80px; height: 80px; }
  .team-name { font-size: 0.82rem; }
  .team-role { font-size: 0.75rem; }

  /* Kontakt */
  .map-frame { height: 220px; }
  .phone-cta-card { padding: 1.5rem 1.25rem; }
  .phone-cta-num, .cta-phone-big { font-size: 1.35rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

  /* Header */
  .header-spacer { height: 66px; }
  .logo img { height: 58px; }

  /* Sticky Bar */
  .sticky-call-bar { padding: 0.75rem 1rem; }
  .sticky-bar-left { font-size: 0.8rem; }
  .sticky-call-btn { font-size: 0.85rem; padding: 0.6rem 1.1rem; }
  body.has-sticky-call-bar { padding-bottom: calc(98px + env(safe-area-inset-bottom, 0px)); }

  /* Jobs */
  .jobs-hero { padding: 3.5rem 0 2.5rem; }
  .jobs-hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .benefit-card { padding: 1.25rem; gap: 0.75rem; }
  .application-form { padding: 1.5rem 1.25rem; }
  .application-form h2 { font-size: 1.4rem; }
  .service-check-grid { grid-template-columns: 1fr; }
  .step-nav { flex-direction: column; align-items: stretch; }
}

/* Kleines Handy (480px) */
@media (max-width: 480px) {
  .container { padding: 0 0.875rem; }

  /* Hero Services – horizontal scrollen statt umbrechen */
  .hero-services { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; justify-content: flex-start; gap: 0.5rem; }
  .hero-services::-webkit-scrollbar { display: none; }
  .hero-service-thumb { width: 62px; height: 62px; flex-shrink: 0; }
  .hero-service-label { font-size: 0.68rem; }
  .hero-service-item { flex-shrink: 0; }

  /* Team – 2 Spalten auf sehr kleinen Screens */
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .team-photo { width: 72px; height: 72px; }

  /* Reviews */
  .rating-num { font-size: 1.9rem; }

  /* Section Titles */
  .section-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* CTA Karten */
  .cta-buttons { grid-template-columns: 1fr; max-width: 100%; }
  .cta-card { padding: 1.5rem 1.25rem; }

  /* Formulare */
  .form-wrap { padding: 1.25rem 1rem; }
  .cf-row { grid-template-columns: 1fr; }
  .callback-modal-content { border-radius: 16px; }
  .callback-modal-header { padding: 1.5rem 1.25rem; }
  .callback-modal-body { padding: 1.5rem 1.25rem; }

  /* Jobs Benefits – nebeneinander auf mittelgroßen Geräten */
  .benefit-card { padding: 1rem; gap: 0.65rem; }
  .benefit-icon { width: 38px; height: 38px; }

  /* Footer */
  .footer-col ul li { margin-bottom: 0.65rem; }
  .footer-bottom { font-size: 0.75rem; }

  /* Kontakt */
  .contact-row { gap: 0.5rem; }
  .hours-row { font-size: 0.82rem; }

  /* SEO Section */
  .seo-section .intro-text { padding: 1rem; font-size: 0.9rem; }
  .seo-highlight { padding: 1rem 1rem 1rem 2.75rem; }
  .seo-section ul li { padding: 0.9rem 1rem 0.9rem 2.25rem; font-size: 0.88rem; }

  /* Subpage Hero */
  .subpage-hero { padding: 4rem 0 2.5rem; }
  .subpage-hero h1 { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .subpage-hero .hero-lead { font-size: clamp(0.88rem, 3.5vw, 0.95rem); }
  .hero-cta-primary { width: 100%; justify-content: center; font-size: 0.92rem; padding: 1rem 1.5rem; }
  .hero-cta-primary::before, .hero-cta-primary::after { display: none; }
}

/* ============================================================
   UNTERSEITEN — Gemeinsame Styles
   (faerbung.html, balayage.html, locken.html,
    glaettung.html, hautpflege.html)
   ============================================================ */

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── STAGGERED TEXT ANIMATIONS ── */
.seo-section.visible h2,
.seo-section.visible h3,
.seo-section.visible p,
.seo-section.visible ul li,
.seo-section.visible .seo-highlight {
  animation: fadeSlideUp 0.6s ease forwards;
  opacity: 0;
}
.seo-section.visible h2 { animation-delay: 0.1s; }
.seo-section.visible .intro-text { animation-delay: 0.2s; }
.seo-section.visible p:not(.intro-text) { animation-delay: 0.3s; }
.seo-section.visible h3 { animation-delay: 0.15s; }
.seo-section.visible ul li:nth-child(1) { animation-delay: 0.2s; }
.seo-section.visible ul li:nth-child(2) { animation-delay: 0.28s; }
.seo-section.visible ul li:nth-child(3) { animation-delay: 0.36s; }
.seo-section.visible ul li:nth-child(4) { animation-delay: 0.44s; }
.seo-section.visible ul li:nth-child(5) { animation-delay: 0.52s; }
.seo-section.visible ul li:nth-child(6) { animation-delay: 0.6s; }
.seo-section.visible .seo-highlight { animation-delay: 0.4s; }

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

/* Testimonial Cards staggered */
.testimonials-section.visible .testimonial-card {
  animation: fadeSlideUp 0.6s ease forwards;
  opacity: 0;
}
.testimonials-section.visible .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-section.visible .testimonial-card:nth-child(2) { animation-delay: 0.25s; }
.testimonials-section.visible .testimonial-card:nth-child(3) { animation-delay: 0.4s; }

/* FAQ Items staggered */
.faq-section.visible .faq-item {
  animation: fadeSlideUp 0.5s ease forwards;
  opacity: 0;
}
.faq-section.visible .faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-section.visible .faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-section.visible .faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-section.visible .faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-section.visible .faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-section.visible .faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Service Links staggered */
.other-services.visible .service-links a {
  animation: fadeSlideUp 0.4s ease forwards;
  opacity: 0;
}
.other-services.visible .service-links a:nth-child(1) { animation-delay: 0.1s; }
.other-services.visible .service-links a:nth-child(2) { animation-delay: 0.18s; }
.other-services.visible .service-links a:nth-child(3) { animation-delay: 0.26s; }
.other-services.visible .service-links a:nth-child(4) { animation-delay: 0.34s; }
.other-services.visible .service-links a:nth-child(5) { animation-delay: 0.42s; }

/* ── BUTTON GLOW EFFECT ── */
.glow-btn {
  position: relative;
  overflow: hidden;
}
.glow-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
  filter: blur(8px);
}
.glow-btn:hover::before {
  opacity: 1;
  animation: glowPulse 1.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ── UNTERSEITEN HEADER (dunkel, sticky) ── */
.subpage-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--mocha-900);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: all 0.4s ease;
}
.subpage-header.scrolled {
  background: rgba(42, 26, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  padding: 0.2rem 0;
}
.subpage-header.scrolled .header-inner { padding: 0.5rem 0; }
.subpage-header.scrolled .logo img { height: 54px; transition: height 0.3s ease; }

/* Unterseiten site-header (dark variant) */
.site-header.subpage-dark {
  background: var(--mocha-900);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.site-header.subpage-dark.scrolled {
  background: rgba(42, 26, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  padding: 0.2rem 0;
}
.site-header.subpage-dark.scrolled .header-inner { padding: 0.5rem 0; }
.site-header.subpage-dark.scrolled .logo img { height: 54px; transition: height 0.3s ease; }
.site-header.subpage-dark .main-nav a { color: rgba(255,255,255,.82); }
.site-header.subpage-dark .main-nav a:hover { color: var(--gold); }
.site-header.subpage-dark .nav-jobs-link { color: rgba(255,255,255,.82) !important; }
.site-header.subpage-dark .header-cta-phone { background: var(--gold); color: #fff !important; }
.site-header.subpage-dark .header-cta-phone:hover { background: #a07830; transform: translateY(-1px); }
.site-header.subpage-dark .header-cta-booking { background: var(--gold); color: #fff !important; }
.site-header.subpage-dark .header-cta-booking:hover { background: #a07830; transform: translateY(-1px); }
.site-header.subpage-dark .hamburger span { background: rgba(255,255,255,.9); }
.site-header.subpage-dark .mobile-menu { background: var(--mocha-900); border-top: 1px solid rgba(255,255,255,.08); }
.site-header.subpage-dark .mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,.07); }
.site-header.subpage-dark .mobile-menu ul li a { color: rgba(255,255,255,.85); }
.site-header.subpage-dark .mobile-phone-btn { background: var(--gold); color: #fff !important; }
.site-header.subpage-dark .mobile-booking-btn { background: var(--gold); color: #fff !important; }

/* ── TRUST BAR (Unterseiten) ── */
.subpage-trust-bar { background: var(--mocha-800); padding: 0.9rem 0; }
.stb-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.75rem 2.5rem; }
.stb-item { display: flex; align-items: center; gap: 0.45rem; color: rgba(255,255,255,.75); font-size: .83rem; font-weight: 500; }
.stb-item svg { color: var(--gold); flex-shrink: 0; }
.stb-sep { width: 1px; height: 14px; background: rgba(255,255,255,.18); flex-shrink: 0; }
@media(max-width: 620px) { .stb-sep { display: none; } .stb-inner { gap: .6rem 1.5rem; } }

/* ── FLOATING ICONS ── */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.floating-icon {
  position: absolute;
  opacity: 0.06;
  font-size: 3rem;
  animation: float 20s infinite ease-in-out;
}
.floating-icon:nth-child(1) { top: 10%; left: 8%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 15%; animation-delay: 5s; font-size: 2.5rem; }
.floating-icon:nth-child(3) { top: 25%; right: 12%; animation-delay: 10s; font-size: 3.5rem; }
.floating-icon:nth-child(4) { bottom: 20%; right: 8%; animation-delay: 15s; font-size: 2.8rem; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
  75% { transform: translateY(-25px) rotate(3deg); }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes phoneShake {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-8deg); }
  20%, 40%, 60%, 80% { transform: rotate(8deg); }
}
.fade-in-up { animation: fadeInUp 0.6s ease-out forwards; opacity: 0; }

/* ── RING PULSE ── */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,.4), 0 0 30px rgba(201,168,76,.2); }
  50% { box-shadow: 0 6px 30px rgba(201,168,76,.7), 0 0 60px rgba(201,168,76,.5); }
}
@keyframes ringPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.65); }
}

/* ── SUBPAGE HERO ── */
.subpage-hero {
  background: linear-gradient(135deg, var(--mocha-900) 0%, var(--mocha-800) 100%);
  padding: 7.5rem 0 5.5rem;
  text-align: center;
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.1) 0%, transparent 50%);
  pointer-events: none;
}
/* faerbung.html-specific hero gradient */
.subpage-hero.hero-faerbung {
  background: linear-gradient(150deg, var(--mocha-900) 0%, #3a2215 55%, var(--mocha-800) 100%);
}
.subpage-hero.hero-faerbung::before {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.05) 0%, transparent 50%);
}
.subpage-hero .inner { position: relative; z-index: 10; }
.subpage-hero .breadcrumb {
  font-size: .8rem;
  opacity: .6;
  margin-bottom: 1.2rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.subpage-hero .breadcrumb a { color: var(--cream-50); text-decoration: none; transition: color .2s; }
.subpage-hero .breadcrumb a:hover { color: var(--gold); }
.subpage-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem,5vw,3.5rem);
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.3);
}
.subpage-hero .gold-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.2rem auto 1.5rem;
}
.subpage-hero .hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.2);
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--mocha-900);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.1rem);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
  text-decoration: none;
  position: relative;
  z-index: 10;
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.hero-cta-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,.6);
}
.hero-cta-primary svg { animation: phoneShake 3s infinite; }
.hero-cta-primary::before,
.hero-cta-primary::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(201,168,76,0.55);
  border-radius: 50px;
  opacity: 0;
  animation: ringPulse 2.5s ease-out infinite;
  z-index: -1;
  pointer-events: none;
}
.hero-cta-primary::after {
  inset: -16px;
  animation-delay: 0.3s;
}

/* ── SEO SECTION ── */
.seo-section { padding: 5rem 0 3rem; background: #fff; }
.seo-content { max-width: 850px; margin: 0 auto; }
.seo-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mocha-900);
  font-size: clamp(1.7rem,3vw,2.2rem);
  margin-bottom: 2.5rem;
  line-height: 1.35;
  position: relative;
  padding-bottom: 1.2rem;
}
.seo-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.3) 100%);
  border-radius: 2px;
}
.seo-section .intro-text {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: #2A1A10;
  line-height: 2;
  margin-bottom: 3rem;
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, var(--cream-50) 0%, rgba(253,248,243,0.6) 100%);
  padding: 1.8rem 2rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(201,168,76,0.1);
}
.seo-section p {
  color: #5a4a40;
  line-height: 2.1;
  margin-bottom: 2.2rem;
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
}
.seo-section h3 {
  font-family: 'Playfair Display', serif;
  color: var(--mocha-900);
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  margin: 3.5rem 0 1.8rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--gold);
  line-height: 1.5;
}
.seo-section ul {
  list-style: none;
  margin: 2rem 0 2.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.seo-section ul li {
  color: #5a4a40;
  line-height: 1.9;
  padding: 1.2rem 1.5rem 1.2rem 3rem;
  position: relative;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  background: #fff;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.seo-section ul li:hover {
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 3px 12px rgba(201,168,76,0.15);
  transform: translateX(4px);
}
.seo-section ul li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.seo-section ul li strong {
  color: var(--mocha-900);
  display: block;
  margin-bottom: 0.3rem;
}
.seo-highlight {
  background: linear-gradient(135deg, var(--cream-50) 0%, rgba(253,248,243,0.8) 100%);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 12px;
  padding: 1.5rem 1.8rem 1.5rem 3.5rem;
  margin: 2.5rem 0;
  color: var(--mocha-800);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  line-height: 1.85;
  position: relative;
  box-shadow: 0 2px 10px rgba(201,168,76,0.1);
}
.seo-highlight::before {
  content: '💡';
  position: absolute;
  left: 1.2rem;
  top: 1.4rem;
  font-size: 1.3rem;
}
.seo-highlight strong { color: var(--mocha-900); font-weight: 600; }

/* ── BEFORE / AFTER ── */
.before-after { padding: 5rem 0; background: var(--cream-50); position: relative; }
.before-after h2 { 
  font-family: 'Playfair Display', serif; 
  color: var(--mocha-900); 
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center; 
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.before-after h2 em { 
  font-style: italic; 
  color: var(--gold);
  font-weight: 600;
}
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { font-family: 'Playfair Display', serif; color: var(--mocha-900); font-size: clamp(1.4rem,3vw,1.9rem); margin-bottom: .5rem; }
.section-head p { color: var(--text-mid); font-size: .9rem; margin-top: .4rem; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 960px; margin: 3rem auto 0; }
.ba-card { 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 8px 32px rgba(42,26,16,.12); 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}
.ba-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(42,26,16,.2); }
.ba-card img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ba-card:hover img { transform: scale(1.05); }
.ba-card .ba-label { 
  background: linear-gradient(135deg, var(--mocha-900) 0%, var(--mocha-800) 100%);
  color: var(--gold); 
  text-align: center; 
  padding: 1rem 1.25rem; 
  font-size: 0.85rem; 
  font-weight: 700; 
  letter-spacing: 0.15em; 
  text-transform: uppercase;
  position: relative;
}
.ba-card .ba-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gold);
  opacity: 0.6;
}
.ba-card .ba-label.after { background: linear-gradient(90deg, var(--mocha-800), #1a0e08); }
/* Showcase (single image) */
.ba-showcase { max-width: 720px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.ba-showcase img { width: 100%; height: 480px; object-fit: cover; display: block; }
.ba-showcase .ba-caption { background: var(--mocha-900); padding: 1.25rem 1.5rem; text-align: center; }
.ba-showcase .ba-caption strong { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1rem; display: block; margin-bottom: .25rem; }
.ba-showcase .ba-caption p { color: rgba(255,255,255,.6); font-size: .85rem; }
/* Trust bar partner logo styling */
.stb-partner-logo { display: flex; align-items: center; justify-content: center; }
.stb-partner-logo img { height: 28px; width: auto; }
/* Single showcase (balayage variant) */
.ba-single {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(42,26,16,.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  background: #fff;
}
.ba-single:hover { transform: translateY(-8px); box-shadow: 0 16px 45px rgba(42,26,16,.25); }
.ba-single img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ba-single:hover img { transform: scale(1.03); }
.ba-single .ba-caption {
  background: linear-gradient(135deg, var(--mocha-900) 0%, var(--mocha-800) 100%);
  color: var(--cream-50);
  padding: 1.5rem 1.8rem;
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}
.ba-single .ba-caption strong { color: var(--gold); font-size: 1.1em; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--cream-50) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonials-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mocha-900);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}
.testimonials-section .subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(201,168,76,0.1);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: rgba(201,168,76,0.3);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--mocha-900);
  font-size: 1.1rem;
}
.testimonial-info h4 { color: var(--mocha-900); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }

/* ── FAQ ── */
.faq-section { padding: 4.5rem 0 5rem; }
.faq-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mocha-900);
  font-size: clamp(1.8rem,3.5vw,2.5rem);
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,.2); border-radius: 8px; margin-bottom: 2px; overflow: hidden; transition: background 0.2s ease; }
.faq-item[open] { background: var(--cream-50); }
.faq-item:hover { background: rgba(253,248,243,0.3); }
.faq-item summary {
  list-style: none;
  padding: 1.25rem 1rem;
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--mocha-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: 8px;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.6rem; flex-shrink: 0; line-height: 1; transition: transform .25s; font-weight: 300; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--mocha-900); }
.faq-item p { color: var(--text-mid); line-height: 1.8; padding: 0 1rem 1.4rem; font-size: clamp(0.9rem, 1.5vw, 0.95rem); }

/* ── SERVICE CTA ── */
.service-cta {
  background: linear-gradient(150deg, var(--mocha-900) 0%, #3a2215 100%);
  color: var(--cream-50);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(201,168,76,.08) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(201,168,76,.06) 0%, transparent 55%);
}
.service-cta .inner { position: relative; z-index: 1; }
.service-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3.5vw,2.2rem); color: var(--gold); margin-bottom: 1rem; }
.service-cta p { opacity: .9; max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.78; font-size: clamp(1rem, 2vw, 1.1rem); }

/* CTA Buttons Grid */
.cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.cta-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}
.cta-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201,168,76,0.2);
}
.cta-card-icon { font-size: 2.8rem; margin-bottom: 1rem; display: inline-block; animation: iconPulse 2s ease-in-out infinite; }
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.cta-card h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.3rem; margin-bottom: 0.5rem; }
.cta-card p { font-size: 0.88rem; opacity: 0.75; margin-bottom: 1.5rem; line-height: 1.6; }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c96d 100%);
  color: var(--mocha-900);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-call::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-call:hover::before { left: 100%; }
.btn-call:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(201,168,76,.5); }
.btn-call svg { animation: phoneRing 2s ease-in-out infinite; }
@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  50%, 100% { transform: rotate(0deg); }
}
.cta-note { margin-top: 1.5rem; font-size: .85rem; opacity: .5; }
.cta-note strong { color: var(--gold); opacity: 1; }
.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--mocha-800) 0%, var(--mocha-900) 100%) !important;
  border: 1px solid rgba(201,168,76,0.4) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-booking::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-booking::after { left: 100%; }
.btn-booking:hover::before { left: 100%; }
.btn-booking:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(42,26,16,0.5) !important;
  border-color: rgba(201,168,76,0.6) !important;
}
.card-sub-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.6rem; line-height: 1.4; }

/* ── WEITERE LEISTUNGEN ── */
.other-services { padding: 4rem 0; background: var(--cream-50); }
.other-services h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mocha-900);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  text-align: center;
  margin-bottom: 2rem;
}
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.service-links a {
  background: #fff;
  border: 2px solid rgba(201,168,76,.25);
  color: var(--mocha-800);
  padding: .8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 600;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.service-links a:hover {
  background: var(--gold);
  color: var(--mocha-900);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201,168,76,.3);
}
.service-links a.active {
  background: var(--mocha-900);
  color: var(--gold);
  border-color: var(--mocha-900);
  box-shadow: 0 4px 12px rgba(42,26,16,.2);
}

/* ── UNTERSEITEN FOOTER ── */
.subpage-footer { background: var(--mocha-900); color: rgba(255,255,255,.65); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col p { font-size: clamp(0.85rem, 1.5vw, 0.9rem); opacity: .8; line-height: 1.8; margin-bottom: .4rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a, .footer-col p a {
  color: rgba(255,255,255,.65);
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  transition: color .2s, transform .2s;
  display: inline-block;
}
.footer-col ul li a:hover, .footer-col p a:hover { color: var(--gold); transform: translateX(3px); }
.subpage-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: rgba(255,255,255,.35);
}
.subpage-footer-bottom a { color: rgba(255,255,255,.4); }
.subpage-footer-bottom a:hover { color: var(--gold); }

/* ── CALLBACK MODAL ── */
.callback-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.callback-modal.active { display: flex; }
.callback-modal-content {
  background: var(--cream-50);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.callback-modal-header {
  background: linear-gradient(135deg, var(--mocha-900) 0%, #3a2619 100%);
  color: var(--cream-50);
  padding: 2rem;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
.callback-modal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.callback-modal-header p { opacity: 0.9; font-size: 0.95rem; }
.callback-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--cream-50);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.callback-modal-close:hover { background: rgba(255,255,255,0.25); }
.callback-modal-body { padding: 2rem; }
.callback-modal .cb-field { margin-bottom: 1.25rem; }
.callback-modal .cb-field label { display: block; font-weight: 600; color: var(--mocha-800); margin-bottom: 0.4rem; font-size: 0.9rem; }
.callback-modal .cb-field .cb-optional { font-weight: 400; color: var(--text-mid); font-size: 0.8rem; }
.callback-modal .cb-field input,
.callback-modal .cb-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.callback-modal .cb-field input:focus,
.callback-modal .cb-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.callback-modal .cb-submit {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--gold) 0%, #d4b557 100%);
  color: var(--mocha-900);
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.callback-modal .cb-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.callback-modal .cb-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.callback-modal .cb-privacy { text-align: center; font-size: 0.8rem; color: var(--text-mid); margin-top: 1rem; }
.callback-modal .cb-privacy a { color: var(--gold); }
.callback-modal .cb-success { text-align: center; padding: 2rem; }
.callback-modal .cb-success svg { color: #22c55e; margin-bottom: 1rem; }
.callback-modal .cb-success strong { display: block; font-size: 1.25rem; color: var(--mocha-900); margin-bottom: 0.5rem; }
.callback-modal .cb-success span { color: var(--text-mid); }
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.status-indicator.closed { background: rgba(239,68,68,0.15); color: #dc2626; }
.status-indicator .status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ── INLINE KONTAKTFORMULAR ── */
.contact-form-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, var(--cream-50) 0%, #fff 100%);
}
.contact-form-section.is-highlighted {
  background: linear-gradient(135deg, #fff8ee 0%, var(--cream-50) 100%);
}
@keyframes highlightPulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 6px rgba(201,168,76,0.25); }
}
.contact-form-section.highlight-pulse {
  animation: highlightPulse 0.9s ease;
  border-radius: 4px;
}
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  border: 1px solid rgba(201,168,76,0.15);
}
.form-header { text-align: center; margin-bottom: 2rem; }
.form-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-status-badge.is-open {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  color: #15803d;
}
.form-status-badge.is-open .form-dot { background: #22c55e; animation: dotPulse 1.8s infinite; }
.form-status-badge.is-closed {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--mocha-700);
}
.form-status-badge.is-closed .form-dot { background: var(--gold); }
.form-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.form-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mocha-900);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.form-header p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: 0.38rem; margin-bottom: 1rem; }
.cf-field label { font-size: 0.82rem; font-weight: 600; color: var(--mocha-800); }
.cf-optional { font-weight: 400; color: var(--text-light); font-size: 0.78rem; }
.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #E8DDD5;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--cream-50);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: #fff;
}
.cf-field textarea { resize: vertical; min-height: 88px; }

/* Step-Form: Leistungs-Checkboxen nicht wie Textfelder stylen */
.step-service-field .service-check-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  min-height: 54px;
}
.step-service-field .service-check-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  flex: 0 0 auto;
  accent-color: var(--gold);
}
.step-service-field .service-check-item span {
  display: block;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}
.cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--mocha-900);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  margin-top: 0.5rem;
}
.cf-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.cf-privacy { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 0.85rem; line-height: 1.5; }
.cf-privacy a { color: var(--gold); }
.cf-success { text-align: center; padding: 2.5rem 1rem; display: none; }
.cf-success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.cf-success h3 { font-family: 'Playfair Display', serif; color: var(--mocha-900); margin-bottom: 0.5rem; font-size: 1.3rem; }
.cf-success p { color: var(--text-mid); font-size: 0.92rem; }

/* ── RESPONSIVE UNTERSEITEN ── */
@media(max-width: 900px) {
  .site-header.subpage-dark .main-nav,
  .site-header.subpage-dark .header-cta-phone { display: none; }
  .site-header.subpage-dark .header-cta-booking { display: inline-flex; }
  .site-header.subpage-dark .hamburger { display: flex; }
  .ba-grid { gap: 1.5rem; }
}

@media(max-width: 768px) {
  .subpage-hero { padding: 5rem 0 3rem; }
  .subpage-hero h1 { font-size: clamp(1.8rem, 5vw, 2.2rem); }
  .subpage-hero .hero-lead { font-size: clamp(0.95rem, 2.5vw, 1rem); margin-bottom: 2rem; }
  .hero-cta-primary { padding: 1.1rem 2.2rem; font-size: 1rem; }
  .testimonials-section { padding: 4rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .seo-section { padding: 3.5rem 0 2rem; }
  .seo-section h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); }
  .seo-section h3 { font-size: clamp(1rem, 2.5vw, 1.1rem); margin-top: 2.2rem; }
  .seo-section .intro-text { padding: 1.4rem 1.5rem; }
  .seo-highlight { padding: 1.2rem 1.4rem 1.2rem 3rem; margin: 2rem 0; }
  .before-after { padding: 3.5rem 0; }
  .before-after h2 { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 0.5rem; }
  .ba-grid { gap: 1.25rem; margin-top: 1.75rem; }
  .ba-card img { height: 280px; }
  .ba-card .ba-label { padding: 0.85rem 1rem; font-size: 0.75rem; }
  .ba-showcase img { height: 300px; }
  .ba-single img { height: 340px; }
  .faq-section { padding: 3rem 0 3.5rem; }
  .faq-item summary { padding: 1.3rem 0.8rem; font-size: clamp(0.95rem, 2.5vw, 1rem); }
  .service-cta { padding: 4rem 0; }
  .service-cta .btn-call { padding: 1.1rem 2.2rem; }
  .other-services { padding: 3rem 0; }
  .service-links { gap: 0.9rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .contact-form-section { padding: 3.5rem 0; }
  .form-wrap { padding: 2rem 1.75rem; }
}

@media(max-width: 620px) {
  .subpage-hero { padding: 4.5rem 0 2.75rem; }
  .subpage-hero h1 { font-size: clamp(1.5rem, 6vw, 1.9rem); margin-bottom: 0.8rem; }
  .subpage-hero .hero-lead { font-size: clamp(0.9rem, 3vw, 0.95rem); max-width: 100%; }
  .subpage-hero .breadcrumb { font-size: 0.76rem; gap: 0.3rem; }
  .hero-cta-primary { width: 100%; justify-content: center; font-size: .95rem; padding: 1.1rem 2rem; }
  .header-cta-booking {
    padding: 0.45rem 0.7rem;
    font-size: 0.75rem;
  }
  .header-cta-booking svg { display: none; }
  .hero-cta-primary::before, .hero-cta-primary::after { display: none; }
  .floating-icon { font-size: 2rem !important; opacity: 0.04; }
  .testimonials-section { padding: 3rem 0; }
  .testimonial-card { padding: 1.5rem 1.2rem; }
  .seo-section { padding: 2.75rem 0 1.5rem; }
  .seo-section h2 { font-size: clamp(1.3rem, 7vw, 1.7rem); margin-bottom: 1.4rem; padding-bottom: 1rem; }
  .seo-section .intro-text { font-size: .9rem; padding: 1rem 1.1rem; line-height: 1.8; }
  .seo-section h3 { font-size: clamp(0.95rem, 3vw, 1.05rem); padding-left: .85rem; margin-top: 2rem; }
  .seo-section ul li { font-size: clamp(0.85rem, 2.5vw, 0.9rem); padding: 0.9rem 0.9rem 0.9rem 2rem; }
  .seo-section ul li::before { left: 0.65rem; }
  .seo-highlight { padding: 0.9rem 1rem 0.9rem 2.5rem; font-size: clamp(0.85rem, 2.5vw, 0.9rem); }
  .seo-highlight::before { left: 0.9rem; top: 0.85rem; font-size: 1.1rem; }
  .ba-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ba-card img { height: 240px; }
  .ba-showcase img { height: 240px; }
  .ba-single img { height: 260px; }
  .ba-single .ba-caption { padding: 1.1rem 1.25rem; font-size: clamp(0.85rem, 2.5vw, 0.95rem); }
  .faq-item summary { font-size: clamp(0.9rem, 3vw, 0.95rem); padding: 1.1rem 0.5rem; gap: 0.75rem; }
  .faq-item summary::after { font-size: 1.4rem; }
  .faq-item p { font-size: clamp(0.85rem, 2.5vw, 0.9rem); padding: 0 0.5rem 1.1rem; }
  .service-cta { padding: 3.5rem 0; }
  .service-cta h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .service-cta p { font-size: clamp(0.9rem, 2.5vw, 1rem); margin-bottom: 2rem; }
  .service-cta .btn-call { width: 100%; padding: 1.2rem 2rem; font-size: clamp(0.95rem, 2.5vw, 1.05rem); justify-content: center; }
  .cta-buttons { grid-template-columns: 1fr; max-width: 100%; gap: 1rem; }
  .cta-card { padding: 1.5rem 1.25rem; }
  .other-services { padding: 3rem 0; }
  .other-services h2 { font-size: clamp(1.2rem, 4vw, 1.5rem); margin-bottom: 1.5rem; }
  .service-links { gap: 0.65rem; }
  .service-links a { padding: 0.7rem 1.2rem; font-size: clamp(0.8rem, 2.5vw, 0.85rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-col { text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .subpage-footer-bottom { padding-top: 1rem; }
  .cf-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.5rem 1.1rem; }
  .contact-form-section { padding: 3rem 0; }
  /* Touch: hover-Animationen deaktivieren */
  .seo-section ul li:hover { transform: none; }
  .ba-card:hover, .ba-single:hover, .testimonial-card:hover { transform: none; box-shadow: inherit; }
}

@media(max-width: 480px) {
  .subpage-hero { padding: 4rem 0 2.25rem; }
  .subpage-hero h1 { font-size: clamp(1.35rem, 7.5vw, 1.65rem); }
  .subpage-hero .hero-lead { font-size: 0.88rem; line-height: 1.7; }
  .hero-cta-primary { font-size: 0.9rem; padding: 1rem 1.4rem; }
  .testimonial-card { padding: 1.25rem 1rem; }
  .ba-card img { height: 200px; }
  .ba-showcase img { height: 200px; }
  .ba-single img { height: 220px; }
  .service-links a { font-size: 0.78rem; padding: 0.6rem 1rem; }
  .footer-grid { gap: 1.5rem; }
}

/* === ANIMATIONEN AUS ALTER WEBSITE (Astro/Tailwind-Version) === */
/* Quelle: AKTUELL_hautundhaar/src/components/Hero.astro        */
/* Nur addiert – keine bestehenden Animationen wurden ersetzt.   */

/* pulse-slow: Sanftes Ein-/Ausblenden & leichtes Skalieren (z. B. für
   Stellenanzeige-Badges, Call-to-Action-Elemente, Hinweiskarten).
   Entspricht dem original Tailwind-Plugin-Wert: 3 s ease-in-out infinite. */
@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}
.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

/* scroll-down-bounce: Subtiles Auf-/Abwärtshüpfen für Scroll-Indikator-Pfeile.
   Inspiriert von Tailwinds animate-bounce, jedoch softer und langsamer. */
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
.animate-scroll-bounce {
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

/* shimmer-line: Glänzender Licht-Sweep für dekorative Linien und Trennelemente. */
@keyframes shimmer-line {
  0%   { opacity: 0.3; transform: scaleX(0.6); }
  50%  { opacity: 1;   transform: scaleX(1); }
  100% { opacity: 0.3; transform: scaleX(0.6); }
}
.animate-shimmer-line {
  animation: shimmer-line 2.5s ease-in-out infinite;
}

.demo-success-msg {
  display: none;
  padding: 1.5rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  color: #166534;
  text-align: center;
}
