/* ============================================================
   HM BIOVITAL – Premium Medical Aesthetics
   style.css
   ============================================================ */

/* 1. Custom Properties
   ============================================================ */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E0C898;
  --gold-dark:   #A07840;
  --ivory:       #FAF8F5;
  --rose:        #F2EBE4;
  --dark:        #141414;
  --dark-2:      #1E1A1B;
  --dark-3:      #2A2424;
  --text:        #2C2C2C;
  --text-light:  #6B6B6B;
  --border:      #E5DDD5;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width:   1200px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      0.2s ease;
  --t:           0.35s ease;
  --t-slow:      0.65s ease;

  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow:      0 4px 28px rgba(0, 0, 0, 0.10);
  --shadow-lg:   0 10px 52px rgba(0, 0, 0, 0.14);

  --radius:      3px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* 3. Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 18px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 540px;
}

/* 4. Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 100px 0; }

.section-header        { margin-bottom: 64px; }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

.gold-line        { width: 50px; height: 1px; background: var(--gold); margin: 20px 0; }
.gold-line.center { margin: 20px auto; }

/* 5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--t);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.45);
}

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

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* 6. Navigation
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: padding var(--t), background var(--t), box-shadow var(--t);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--t);
}

.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.header.scrolled .logo-name { color: var(--dark); }

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

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-fast);
}

.nav-links a:hover        { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.header.scrolled .nav-links a       { color: var(--text); }
.header.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background var(--t-fast), box-shadow var(--t-fast) !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--t-fast);
}
.header.scrolled .hamburger span { background: var(--dark); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--t-fast);
}
.mobile-nav-close:hover { opacity: 1; }

/* 7. Hero (Homepage)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #120D0E;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 75% 50%, rgba(201, 169, 110, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 500px 400px at 20% 70%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 32px 100px;
}

.hero-inner { max-width: 620px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 52px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: heroBob 2.2s infinite var(--ease);
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

@keyframes heroBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-image {
  position: absolute;
  right: 0;
  top: 115px;
  width: 68%;
  height: calc(100% - 115px);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #120D0E 0%, rgba(18, 13, 14, 0.85) 20%, rgba(18, 13, 14, 0.2) 45%, transparent 65%),
    linear-gradient(to top, #120D0E 0%, rgba(18, 13, 14, 0.6) 12%, transparent 28%),
    linear-gradient(to bottom, rgba(18, 13, 14, 0.5) 0%, transparent 15%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-image img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-image::after {
    background:
      linear-gradient(to bottom, rgba(18, 13, 14, 0.88) 0%, rgba(18, 13, 14, 0.65) 40%, rgba(18, 13, 14, 0.75) 100%);
  }
}

/* 8. Page Hero (Unterseiten)
   ============================================================ */
.page-hero {
  padding: 180px 0 100px;
  background: var(--dark-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 110%, rgba(201, 169, 110, 0.07) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1    { color: var(--white); margin-bottom: 20px; }
.page-hero p     { color: rgba(255,255,255,0.55); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* 9. Leistungen Grid
   ============================================================ */
.leistungen-section { background: var(--white); }

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}

.leistung-card {
  background: var(--white);
  padding: 44px 34px;
  transition: background var(--t), color var(--t);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.leistung-card:hover { background: var(--dark); color: var(--white); }

.leistung-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: var(--gold);
}

.leistung-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.leistung-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-light);
}
.leistung-card:hover p { color: rgba(255,255,255,0.6); }

.leistung-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  transition: gap var(--t-fast);
}
.leistung-card:hover .leistung-more { gap: 10px; }

/* 10. Über uns Teaser
   ============================================================ */
.ueber-teaser { background: var(--ivory); }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.split-image-wrap {
  position: relative;
}

.split-image {
  aspect-ratio: 4/5;
  background: var(--rose);
  overflow: hidden;
  position: relative;
}

.split-image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--border);
}

.split-image-inner svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.split-image-inner span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Decorative offset border */
.split-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 65%;
  height: 65%;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}

.split-text { display: flex; flex-direction: column; gap: 22px; }
.split-text p {
  color: var(--text-light);
  line-height: 1.85;
}

.signatures {
  display: flex;
  gap: 40px;
  margin-top: 8px;
}
.signature-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}
.signature-role {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

/* 11. USP Section
   ============================================================ */
.usp-section { background: var(--dark); color: var(--white); }
.usp-section .eyebrow { color: var(--gold); }
.usp-section .section-desc { color: rgba(255,255,255,0.5); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 64px;
}

.usp-item {
  padding: 48px 40px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--t);
}
.usp-item:hover { background: var(--dark-3); }

.usp-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  color: rgba(201, 169, 110, 0.25);
  font-weight: 300;
  line-height: 1;
}

.usp-item h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
}

.usp-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.usp-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 4px 0;
}

/* 12. CTA Section
   ============================================================ */
.cta-section {
  background: var(--rose);
  text-align: center;
  padding: 120px 32px;
}
.cta-section h2    { margin-bottom: 16px; }
.cta-section .section-desc { margin: 0 auto 44px; }

.cta-meta {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.cta-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cta-meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.cta-meta-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}
.cta-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  align-self: center;
}

/* 13. Footer
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 84px 0 44px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.85;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2.1;
}
.footer-address a { transition: color var(--t-fast); }
.footer-address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }

/* 14. Behandlungen Page
   ============================================================ */
.behandlungen-section { background: var(--ivory); }

.behandlung-item {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 88px;
  align-items: start;
}
.behandlung-item:last-child { border-bottom: none; }

.behandlung-sticky {
  position: sticky;
  top: 100px;
}

.behandlung-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--border);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}

.behandlung-sticky h2 {
  font-size: 1.85rem;
  margin-bottom: 14px;
}

.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--rose);
  color: var(--text);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 500;
}

.behandlung-body > * + * { margin-top: 20px; }

.behandlung-body h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 36px !important;
  margin-bottom: 0;
}

.behandlung-body p {
  color: var(--text-light);
  line-height: 1.9;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullet-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}
.bullet-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--dark);
  margin-top: 36px;
}
.info-box {
  background: var(--dark-3);
  padding: 22px 26px;
  cursor: default;
  transition: background var(--t-fast);
  position: relative;
  overflow: hidden;
}
.info-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t);
}
.info-box:hover {
  background: #312828;
}
.info-box:hover::before {
  width: 100%;
}
.info-box-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  font-weight: 500;
}
.info-box-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}

/* 15. Über uns Page
   ============================================================ */
.team-section { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}

.team-card {
  background: var(--white);
  padding: 56px 48px;
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 30px;
}

.team-card h3 { margin-bottom: 6px; font-size: 1.6rem; }
.team-role {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.team-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.team-card p:last-child { margin-bottom: 0; }

.philosophy-section { background: var(--dark-2); }

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.philosophy-quote cite {
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
  font-family: var(--font-body);
}

.values-section { background: var(--ivory); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.value-item {
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: border-color var(--t), box-shadow var(--t);
}
.value-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 20px;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.value-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* 16. Kontakt Page
   ============================================================ */
.kontakt-section { background: var(--ivory); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: sticky;
  top: 100px;
}

.kontakt-block-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.kontakt-block p,
.kontakt-block address {
  font-style: normal;
  color: var(--text-light);
  line-height: 2.1;
  font-size: 0.9375rem;
}
.kontakt-block a { transition: color var(--t-fast); }
.kontakt-block a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 11px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.hours-table td:first-child { color: var(--text); font-weight: 500; }
.hours-table td:last-child  { text-align: right; }

/* Form */
.kontakt-form {
  background: var(--white);
  padding: 52px 48px;
  box-shadow: var(--shadow);
}
.kontakt-form h3 {
  font-size: 1.5rem;
  margin-bottom: 36px;
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 9px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--t-fast), background var(--t-fast);
  border-radius: var(--radius);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-privacy a { color: var(--gold); }
.form-privacy a:hover { color: var(--gold-dark); }

/* Map */
.map-section {
  height: 420px;
  background: var(--border);
  overflow: hidden;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* 17. Impressum
   ============================================================ */
.impressum-section {
  background: var(--ivory);
  padding: 60px 0 120px;
}
.impressum-content { max-width: 780px; }
.impressum-content h2 {
  font-size: 1.7rem;
  margin: 52px 0 18px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
}
.impressum-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.impressum-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 26px 0 10px;
}
.impressum-content p,
.impressum-content address {
  font-style: normal;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 14px;
  font-size: 0.9375rem;
}
.impressum-content a {
  color: var(--gold);
  transition: color var(--t-fast);
}
.impressum-content a:hover { color: var(--gold-dark); }

/* 18. Leistungsübersicht (kompakte Übersicht oben)
   ============================================================ */
.uebersicht-section { background: var(--white); padding: 100px 0; }

.uebersicht-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 56px;
}

.uebersicht-card {
  background: var(--white);
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--t);
}
.uebersicht-card:hover { background: var(--dark); }

.uebersicht-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 4px;
  transition: color var(--t-fast);
}
.uebersicht-card:hover .uebersicht-num { color: rgba(255,255,255,0.2); }

.uebersicht-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  transition: color var(--t-fast);
}
.uebersicht-card:hover .uebersicht-name { color: var(--white); }

.uebersicht-tag {
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--t-fast);
}
.uebersicht-card:hover .uebersicht-tag { color: rgba(255,255,255,0.4); }

.uebersicht-preis {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 8px;
}

/* Inline-Preise in Behandlungs-Sektionen
   ============================================================ */
.behandlung-preis {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--rose);
  border-left: 2px solid var(--gold);
}
.behandlung-preis--table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.behandlung-preis-label {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.behandlung-preis-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
}

.behandlung-preis-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 16px;
}
.behandlung-preis-row:last-of-type { border-bottom: none; }
.behandlung-preis-row span:last-child {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}
.behandlung-preis-row--highlight span { color: var(--gold) !important; font-weight: 600 !important; }

.behandlung-preis-hinweis {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

@media (max-width: 1024px) {
  .uebersicht-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .uebersicht-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .uebersicht-grid { grid-template-columns: 1fr; }
}

/* 18b. Preisliste (Legacy-CSS – nicht mehr im Einsatz)
   ============================================================ */
.preisliste-section {
  background: var(--dark-2);
  padding: 100px 0;
}
.preisliste-section .section-header { color: var(--white); }
.preisliste-section .section-desc   { color: rgba(255,255,255,0.5); }

.preisliste-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: 64px;
}

.preisliste-kategorie {
  background: var(--dark-2);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.preisliste-kat-header { border-bottom: 1px solid rgba(201,169,110,0.3); padding-bottom: 14px; }
.preisliste-kat-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-body);
}

.preisliste-gruppe { display: flex; flex-direction: column; gap: 6px; }

.preisliste-gruppe-titel {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  font-style: italic;
}

.preisliste-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.preisliste-row:last-child { border-bottom: none; }
.preisliste-row span:last-child {
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  font-weight: 500;
}
.preisliste-row em {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

.preisliste-hinweis {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  font-style: italic;
}

.preisliste-highlight {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.preisliste-highlight-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.preisliste-highlight-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.preisliste-highlight-preis {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-top: 8px;
}

.preisliste-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.preisliste-link:hover {
  color: var(--gold);
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .preisliste-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .preisliste-kategorie { padding: 36px 24px; }
}

/* 19. Scroll Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-delay-5 { transition-delay: 0.48s; }

/* 19. Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .leistungen-grid    { grid-template-columns: repeat(2, 1fr); }
  .split-layout       { grid-template-columns: 1fr; gap: 52px; }
  .split-image        { aspect-ratio: 16/9; max-height: 360px; }
  .split-image-wrap::after { display: none; }
  .usp-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .behandlung-item    { grid-template-columns: 1fr; gap: 36px; }
  .behandlung-sticky  { position: static; }
  .team-grid          { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid       { grid-template-columns: 1fr; gap: 52px; }
  .kontakt-info       { position: static; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: flex; }

  .leistungen-grid { grid-template-columns: 1fr; }
  .usp-grid        { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .info-grid       { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 44px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-meta { gap: 28px; }
  .cta-meta-divider { display: none; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { max-width: 300px; }

  .kontakt-form { padding: 32px 24px; }
  .team-card    { padding: 40px 28px; }

  .page-hero { padding: 140px 0 72px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 20px; }
  .hero-content { padding: 130px 20px 80px; }
}
