/* ============================================================
   BEAUTY ROOM LEIPZIG — Main Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand */
  --brand:       #BF1F37;
  --brand-dark:  #8B1525;
  --brand-glow:  rgba(191, 31, 55, 0.22);

  /* Backgrounds */
  --dark:        #1A1210;
  --dark-2:      #231817;
  --dark-card:   rgba(255, 255, 255, 0.05);
  --warm-white:  #FAF9F7;
  --blush:       #F2E8E4;
  --sand:        #E5D5C8;
  --white:       #FFFFFF;

  /* Text */
  --text:        #1A1210;
  --text-muted:  #6B5850;

  /* Type */
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --py:  clamp(4.5rem, 9vw, 7.5rem);
  --px:  clamp(1.25rem, 5vw, 3rem);

  /* Shape */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s var(--ease);

  /* Depth */
  --shadow-sm: 0 2px 8px  rgba(26, 18, 16, 0.06);
  --shadow:    0 4px 24px rgba(26, 18, 16, 0.10);
  --shadow-lg: 0 12px 40px rgba(26, 18, 16, 0.18);
}


/* Custom elements — display as block before JS injection */
site-nav, site-footer { display: block; }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-b);
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
address { font-style: normal; }

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

.section {
  padding: var(--py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.eyebrow-light { color: var(--sand); }

.section-header h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-header-light h2     { color: var(--white); }
.section-sub-light           { color: rgba(255, 255, 255, 0.5); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.125rem;
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(191, 31, 55, 0.25);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 31, 55, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}


.btn-sm {
  padding: 0.625rem 1.375rem;
  font-size: 0.8125rem;
  background: var(--brand);
  color: var(--white);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: var(--t);
  line-height: 1;
}
.btn-sm:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}

.navbar.scrolled {
  background: rgba(26, 18, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  padding: 0.875rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--font-h);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
}

.nav-logo-sub {
  font-size: 0.675rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: var(--t);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-phone { font-weight: 500; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(191, 31, 55, 0.28) 0%, transparent 65%);
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(191, 31, 55, 0.1) 0%, transparent 70%);
  left: -80px;
  bottom: -80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem var(--px) 5.5rem;
  width: 100%;
}

.hero-text { max-width: 600px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s var(--ease) forwards;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.625rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s var(--ease) forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease) forwards;
}

.hero-logo-wrap {
  opacity: 0;
  animation: fadeIn 1.2s 0.5s var(--ease) forwards;
  flex-shrink: 0;
}

.hero-logo {
  width:  clamp(220px, 24vw, 360px);
  height: clamp(220px, 24vw, 360px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 80px rgba(191, 31, 55, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   USP BAR
   ============================================================ */
.usp-bar {
  background: var(--dark-2);
  border-top:    1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: 1.125rem 0;
}

.usp-items {
  display: flex;
  gap: 3.5rem;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.usp-items span {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

/* ============================================================
   LEISTUNGEN — KATEGORIE-KARTEN
   ============================================================ */

/* ── Service Cards ─────────────────────────────────────────── */
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blush);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand);
  flex-shrink: 0;
}


.card-body {
  padding: 1.75rem 2rem 2rem;
}

.card-body > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}




/* ============================================================
   PHILOSOPHIE / ZITAT
   ============================================================ */
.quote-section {
  background: var(--dark);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--brand-glow), transparent);
  pointer-events: none;
}

.philosophy-quote {
  text-align: center;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}

.quote-mark {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(5rem, 13vw, 9rem);
  line-height: 0.45;
  color: var(--brand);
  opacity: 0.35;
  margin-bottom: 1.25rem;
  user-select: none;
}

.philosophy-quote p {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 1.75rem;
}

.philosophy-quote cite {
  font-family: var(--font-b);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  font-style: normal;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-section { background: var(--warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
}

.about-visual { position: relative; }


.about-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--blush);
  text-align: center;
}
.about-badge span {
  display: block;
  font-family: var(--font-h);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand);
}
.about-badge small {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-text .eyebrow  { margin-bottom: 0.75rem; }

.about-text h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.12;
}

.about-lead {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1.625rem;
  text-transform: uppercase;
  font-weight: 500;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 1rem;
}
.about-text p strong { color: var(--text); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.about-tags li {
  background: var(--blush);
  color: var(--brand);
  padding: 0.375rem 1.0625rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-section { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
  display: block;
  color: var(--white);
}
.contact-card:hover {
  background: rgba(191, 31, 55, 0.1);
  border-color: rgba(191, 31, 55, 0.28);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.125rem;
  color: var(--brand);
  margin-bottom: 1.125rem;
  display: block;
  line-height: 1;
}

.contact-card h3 {
  font-family: var(--font-h);
  font-size: 1.3125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin-bottom: 1.375rem;
}

.contact-action {
  font-size: 0.8rem;
  color: var(--sand);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #110D0C; color: var(--white); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-top:    clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 1.125rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-h);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1.375rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--white); }

.footer-contact address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.9;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--t);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.625rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.26);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.26);
  transition: color var(--t);
}
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1);    }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .about-visual {
    display: flex;
    justify-content: center;
  }
  .about-photo-slot { max-width: 400px; width: 100%; }

}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    padding: 5.5rem 1rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    margin-left: 0;
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
  }
  .nav-menu .btn-sm {
    font-size: 1rem;
    padding: 0.875rem 2rem;
    margin-top: 0.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    gap: 2.5rem;
  }
  .hero-actions      { justify-content: center; }
  .hero-logo-wrap    { display: flex; justify-content: center; order: -1; }
  .hero-logo         { width: 200px; height: 200px; }
  .hero-scroll       { display: none; }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .hero-title    { font-size: 2.5rem; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .btn           { width: 100%; justify-content: center; }
  .btn-ghost     { width: 100%; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:   0.01ms !important;
    transition-duration:  0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .usp-items { animation: none; }
}

/* ============================================================
   FOTO-SLOTS — Platzhalter (werden durch echte Fotos ersetzt)
   ============================================================
   Jeder .photo-slot zeigt den erwarteten Dateipfad via data-hint.
   Sobald das Foto unter dem angegebenen Pfad liegt, blendet sich
   der Platzhalter automatisch aus.
   ============================================================ */

/* Basis-Platzhalter */
.photo-slot {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

/* Dateiname als Overlay-Hint */
.photo-slot::before {
  content: attr(data-hint);
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--brand);
  opacity: 0.65;
  padding: 1rem;
  pointer-events: none;
  white-space: pre-wrap;
  line-height: 1.5;
}

/* Dekoratives Kamera-Icon */
.photo-slot::after {
  content: '📷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  font-size: 1.5rem;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

/* Das eigentliche Foto — füllt den Slot */
.photo-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* Wenn das Bild nicht lädt → unsichtbar, Platzhalter bleibt sichtbar */
.photo-error { opacity: 0 !important; }

/* ── Hero Hintergrundfoto ───────────────────────────────────── */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  filter: grayscale(20%);
  transition: opacity 0.4s ease;
}

/* ── Hero Portrait (rechte Seite) ──────────────────────────── */
.hero-portrait-slot {
  position: relative;
  width:  clamp(220px, 24vw, 360px);
  height: clamp(220px, 24vw, 360px);
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 80px rgba(191, 31, 55, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* ── Service Card Foto ─────────────────────────────────────── */
.card-photo {
  height: 175px;
  width: 100%;
  position: relative;
  flex-shrink: 0;
}

/* ── Zitat-Hintergrundfoto ─────────────────────────────────── */
.quote-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.1;
  filter: grayscale(40%);
}

/* (quote-section::before braucht jetzt auch z-index, damit das Gradient über dem Foto bleibt) */
.quote-section::before { z-index: 1; }
.quote-section .container { position: relative; z-index: 2; }

/* ── About Foto ─────────────────────────────────────────────── */
.about-photo-slot {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  max-width: 460px;
  width: 100%;
  background: var(--blush);
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-section {
  padding: var(--py) 0;
  background: var(--warm-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--t);
}
.gallery-item:hover { transform: scale(1.02); }

.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 2 / 4; }

/* Hover-Overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 16, 0);
  transition: background var(--t);
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover::after {
  background: rgba(26, 18, 16, 0.15);
}

/* Galerie-Items sind auch photo-slots */
.gallery-item.photo-slot::before {
  font-size: 0.65rem;
  line-height: 1.8;
}

/* ── Galerie Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item              { aspect-ratio: 1 / 1; }
  .gallery-item:nth-child(1) { grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: auto; }

  .card-photo { height: 145px; }

  /* Portrait-Slot auf Mobile kleiner */
  .hero-portrait-slot {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4 / 3; }
}

/* ============================================================
   KATEGORIE-KARTEN (index.html Leistungen-Übersicht)
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 18, 16, 0.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  color: var(--text);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(191, 31, 55, 0.18);
}

.category-card .card-photo { height: 220px; }

.category-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-body .service-icon  { margin-bottom: 0.875rem; }
.category-body h3 {
  font-family: var(--font-h);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.category-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.125rem;
  border-top: 1px solid var(--blush);
}

.category-price {
  font-weight: 600;
  color: var(--brand);
  font-size: 1rem;
}

.category-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--t), transform var(--t), color var(--t);
  flex-shrink: 0;
}
.category-card:hover .category-arrow {
  background: var(--brand);
  color: var(--white);
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .category-grid                  { grid-template-columns: 1fr; }
  .category-card .card-photo      { height: 180px; }
}

/* ============================================================
   DETAIL-SEITEN — gemeinsame Stile
   ============================================================ */

/* Page Hero */
.page-hero {
  background: var(--dark);
  padding: 7.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 75% 50%, var(--brand-glow), transparent);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.375rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--t);
}
.breadcrumb a:hover   { color: var(--white); }
.breadcrumb-sep       { opacity: 0.3; }
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 0.875rem;
  overflow-wrap: break-word;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.52);
  max-width: 520px;
}

/* Pricing section wrapper */
.pricing-section { padding: var(--py) 0; }
.pricing-group    { margin-bottom: clamp(3rem, 6vw, 4.5rem); }

/* Section subtitle with brand accent */
.pricing-subtitle {
  font-family: var(--font-h);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--blush);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.pricing-subtitle::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.2em;
  background: var(--brand);
  border-radius: 3px;
  flex-shrink: 0;
}

/* Generic price list row */
.price-list { display: flex; flex-direction: column; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8125rem 0;
  border-bottom: 1px solid rgba(26, 18, 16, 0.05);
  gap: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-row-label {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}
.price-row-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.price-row-amount {
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
  font-size: 0.9375rem;
  min-width: 80px;
  text-align: right;
}

/* Skin type cards (Kosmetikbehandlungen) */
.skin-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.skin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 18, 16, 0.06);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), border-color var(--t);
}
.skin-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(191, 31, 55, 0.15);
}
.skin-card-head {
  background: var(--blush);
  padding: 1.125rem 1.5rem;
}
.skin-card-head h4 {
  font-family: var(--font-h);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.skin-card-head p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.skin-card-body {
  padding: 1.125rem 1.5rem;
}

/* Package cards (Waxing, Micro Needling) */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  border: 1px solid rgba(26, 18, 16, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(191, 31, 55, 0.18);
}
.package-card.featured {
  background: var(--dark);
  border-color: transparent;
  color: var(--white);
}
.package-num {
  font-family: var(--font-h);
  font-size: 2rem;
  color: var(--brand);
  opacity: 0.25;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.875rem;
}
.package-card h4 {
  font-family: var(--font-h);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.package-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.package-card.featured p { color: rgba(255, 255, 255, 0.5); }
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--blush);
  margin-top: auto;
}
.package-card.featured .package-footer { border-top-color: rgba(255, 255, 255, 0.08); }
.package-price {
  font-weight: 700;
  color: var(--brand);
  font-size: 1.25rem;
}
.package-dur {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.package-card.featured .package-dur { color: rgba(255, 255, 255, 0.38); }

/* Haarentfernung two-column zone layout */
.zone-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 18, 16, 0.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.zone-section-head {
  background: var(--blush);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.zone-section-head h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
}
.zone-section-head .zone-badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(191, 31, 55, 0.1);
  padding: 0.2rem 0.625rem;
  border-radius: 50px;
}
.zone-section-body { padding: 0.25rem 1.5rem; }

/* Info box */
.info-box {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brand);
  margin-bottom: 2rem;
}
.info-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.info-box strong { color: var(--text); }

/* Micro Needling — Behandlungsinhalt Liste */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2.5rem;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.included-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--dark);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Page bottom CTA */
.page-cta {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--brand-glow), transparent);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.875rem;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Gender switcher */
.gender-tabs {
  display: flex;
  gap: 0.375rem;
  background: var(--blush);
  padding: 0.4rem;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 2.5rem;
}
.gender-btn {
  padding: 0.625rem 1.625rem;
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--t);
}
.gender-btn.active {
  background: var(--white);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.gender-panel       { display: none; }
.gender-panel.active { display: block; animation: fadeIn 0.3s ease; }

/* Detail page responsive */
@media (max-width: 768px) {
  .skin-group-grid  { grid-template-columns: 1fr; }
  .package-grid     { grid-template-columns: 1fr; }
  .included-grid    { grid-template-columns: 1fr; }
  .cta-actions .btn { min-width: 200px; }
}

/* ============================================================
   SERVICE NAVIGATION TABS (Detail-Seiten)
   ============================================================ */
.service-nav-wrap {
  background: var(--warm-white);
  border-bottom: 1px solid rgba(26, 18, 16, 0.08);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.service-tabs-nav {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.service-tabs-nav::-webkit-scrollbar { display: none; }

.service-tab-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.375rem;
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
  flex-shrink: 0;
}
.service-tab-btn:hover {
  color: var(--text);
}
.service-tab-btn.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 500;
}

@media (max-width: 480px) {
  .service-tab-btn { padding: 0.875rem 1rem; font-size: 0.8125rem; }
}

/* micro-info-grid (micro-needling.html) */
.micro-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .micro-info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: wa-pulse 3.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.45rem 0.875rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

@media (max-width: 768px) {
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}

/* ============================================================
   ÖFFNUNGSZEITEN
   ============================================================ */
.hours-card {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hours-header h3 {
  font-family: var(--font-h);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hours-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  transition: background var(--t);
  gap: 1rem;
}

.hours-list li.today {
  background: rgba(191, 31, 55, 0.15);
  border: 1px solid rgba(191, 31, 55, 0.25);
}

.hours-day {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  min-width: 100px;
}

.hours-list li.today .hours-day {
  color: var(--white);
  font-weight: 500;
}

.hours-time {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-variant-numeric: tabular-nums;
}

.hours-list li.today .hours-time {
  color: var(--white);
  font-weight: 500;
}

.hours-closed {
  color: rgba(255, 255, 255, 0.3) !important;
}

.hours-today-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .hours-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

/* ============================================================
   GOOGLE MAPS EMBED
   ============================================================ */
.maps-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 380px;
  position: relative;
  background: var(--dark-2);
}

/* Consent-Overlay */
.maps-consent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: var(--dark-2);
  transition: opacity 0.4s ease;
}

.maps-consent.hidden {
  opacity: 0;
  pointer-events: none;
}

.maps-consent-inner {
  text-align: center;
  padding: 2rem;
  max-width: 340px;
}

.maps-pin {
  width: 44px;
  height: 44px;
  color: var(--brand);
  margin: 0 auto 1rem;
}

.maps-address {
  font-size: 0.9375rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.maps-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  margin-bottom: 1.375rem;
}

.maps-load-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.625rem;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  margin-bottom: 0.875rem;
}
.maps-load-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.maps-ext-link {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--t);
}
.maps-ext-link:hover { color: var(--white); }

/* Iframe (versteckt bis Consent) */
.maps-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: grayscale(15%) contrast(1.05);
}

.maps-iframe.loaded { opacity: 1; }

@media (max-width: 768px) {
  .maps-wrap { height: 300px; }
}

/* ============================================================
   UTILITY-KLASSEN (aus Inline-Styles extrahiert)
   ============================================================ */

/* Preisfußnote "Alle Preise inkl. MwSt." */
.price-footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 1.5rem;
}

/* Inline-Links mit Brand-Farbe */
.link-brand {
  color: var(--brand);
  font-weight: 500;
}
.link-brand:hover { text-decoration: underline; }

/* Inline-Link hell mit Unterstrich (Page-Hero auf dunklem Hintergrund) */
.link-sand {
  color: var(--sand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-sand:hover { opacity: 0.8; }

/* Schmale Skin-Card (Einzelleistung Akne) */
.skin-card--narrow { max-width: 420px; }

/* price-row ohne Trennlinie (Auflistung ohne Preise) */
.price-row--plain {
  border-bottom: none;
  padding: 0.6rem 0;
}
.price-row--plain:last-child { border-bottom: none; }

/* micro-info-grid Absätze */
.micro-info-grid p {
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 1.25rem;
}
.micro-info-grid p:last-child { margin-bottom: 0; }

/* Maps iframe border entfernen */
.maps-iframe { border: 0; }
