:root {
  --cream: #f7f3ee;
  --warm-white: #fdfaf6;
  --sage: #8a9e87;
  --sage-light: #b8cbb5;
  --dark: #2a2520;
  --mid: #6b5f56;
  --gold: #c4a882;
  --gold-light: #e8d9c4;
  --border: rgba(196,168,130,0.3);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(253,250,246,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; letter-spacing: .05em;
  color: var(--dark); text-decoration: none;
}
.logo span { color: var(--gold); }
.nav-logo-img { height: 50px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--mid);
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  transition: color .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  padding: .6rem 1.6rem; border: 1px solid var(--gold);
  color: var(--dark); text-decoration: none;
  transition: all .3s; background: transparent; cursor: pointer;
}
.nav-cta:hover { background: var(--gold); color: var(--warm-white); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: none; border: 1px solid var(--border);
  cursor: pointer; padding: 0; transition: border-color .3s;
}
.nav-hamburger:hover { border-color: var(--gold); }
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--dark); transition: transform .35s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--warm-white);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s, transform .35s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-nav ul a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; letter-spacing: .06em;
  color: var(--dark); text-decoration: none; transition: color .2s;
}
.mobile-nav ul a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border);
  font-size: 1.1rem; cursor: pointer; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-nav-close:hover { background: var(--gold-light); }

@media (max-width: 1100px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 6rem 4rem 6rem 6rem;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s .2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem,5vw,5.5rem); font-weight: 300; line-height: 1.08;
  color: var(--dark); opacity: 0; animation: fadeUp 1s .4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  margin-top: 2rem; font-size: 1rem; line-height: 1.8;
  color: var(--mid); max-width: 420px;
  opacity: 0; animation: fadeUp 1s .6s forwards;
}
.hero-actions {
  display: flex; gap: 1.2rem; margin-top: 3rem;
  opacity: 0; animation: fadeUp 1s .8s forwards;
}
.btn-primary {
  padding: 1rem 2.4rem; background: var(--dark); color: var(--warm-white);
  text-decoration: none; font-size: .78rem; letter-spacing: .15em;
  text-transform: uppercase; transition: background .3s;
}
.btn-primary:hover { background: var(--gold); }
.btn-secondary {
  padding: 1rem 2.4rem; border: 1px solid var(--border);
  color: var(--mid); text-decoration: none;
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  transition: all .3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--dark); }
.btn-outline-light {
  padding: 1rem 2.4rem; border: 1px solid rgba(253,250,246,.45);
  color: var(--warm-white); text-decoration: none;
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  transition: all .3s;
}
.btn-outline-light:hover { border-color: var(--gold); background: rgba(196,168,130,.2); }

.hero-right {
  position: relative; background: var(--cream); overflow: hidden;
  opacity: 0; animation: fadeIn 1.2s .3s forwards;
}
.hero-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
  filter: brightness(.92) saturate(.9);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,37,32,.55) 0%, transparent 55%);
  pointer-events: none;
}

/* Mobile Hero Overlay – versteckt auf Desktop */
.hero-overlay { display: none; }

.hero-badge {
  position: relative; align-self: flex-start;
  margin-top: auto; margin-bottom: 0;
  background: var(--warm-white); padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  box-shadow: 0 20px 60px rgba(42,37,32,.12);
  opacity: 0; animation: slideRight 1s 1s forwards;
  z-index: 2;
}
@media (min-width: 1101px) {
  .hero-badge { transform: translateX(2rem); }
}
.hero-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; color: var(--dark); line-height: 1;
}
.hero-badge .label {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage); margin-top: .3rem;
}

/* ── TOUCH-FRIENDLY LIGHTBOX ── */
@media (max-width: 1100px) {
  .lb-prev, .lb-next {
    width: 52px; height: 52px; font-size: 1.6rem;
    bottom: 2rem; top: auto; transform: none;
  }
  .lb-prev { left: 1.5rem; }
  .lb-next { right: 1.5rem; }
  .lb-close { width: 52px; height: 52px; font-size: 1.3rem; top: 1.2rem; right: 1.2rem; }
}

/* ── ABOUT ── */
#about {
  padding: 8rem 6rem;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center;
}
.about-visual { position: relative; }
.about-card {
  background: var(--cream); aspect-ratio: 3/4; max-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.about-card::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border); pointer-events: none;
}
@media (max-width: 1100px) {
  .about-card { max-height: 320px; aspect-ratio: 4/3; }
  .about-initials { width: 80px; height: 80px; font-size: 1.6rem; }
}
.about-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg,#e2d9ce 0%,#c9bcad 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  padding: 2rem;
}
.about-initials {
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(196,168,130,.25); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--gold); letter-spacing: .05em;
}
.about-name-block { text-align: center; }
.about-name-block .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--dark); letter-spacing: .06em; display: block;
}
.about-name-block .role {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage); margin-top: .4rem; display: block; line-height: 1.6;
}
.section-tag {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.5rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 300; line-height: 1.15;
  color: var(--dark); margin-bottom: 2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.about-text { font-size: .95rem; line-height: 1.85; color: var(--mid); margin-bottom: 1.2rem; }
.credentials { display: flex; flex-direction: column; gap: .8rem; margin-top: 2.5rem; }
.cred-item { display: flex; align-items: center; gap: 1rem; font-size: .85rem; color: var(--dark); }
.cred-dot { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

/* ── GALLERY ── */
#galerie { background: var(--cream); padding: 8rem 6rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 4rem;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer; background: #d4c5b2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease, filter .4s;
  filter: brightness(.97); aspect-ratio: 4/3;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.05); }
.gallery-item::after {
  content: '↗'; position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; background: rgba(253,250,246,.9);
  color: var(--dark); display: flex; align-items: center; justify-content: center;
  font-size: .9rem; opacity: 0; transition: opacity .3s; pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* ── GALLERY MOBILE SLIDER ── */
@media (max-width: 1100px) {
  .gallery-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: .75rem; margin-top: 2rem;
    padding-bottom: 1.5rem; scrollbar-width: none; -ms-overflow-style: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item { flex: 0 0 80vw; max-width: 340px; scroll-snap-align: center; }
  .gallery-item img { aspect-ratio: 4/3; }
}
.gallery-dots {
  display: none; justify-content: center; gap: .5rem; margin-top: 1.2rem;
}
.gallery-dots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(138,158,135,.35); border: none; cursor: pointer;
  transition: background .3s, transform .3s; padding: 0;
}
.gallery-dots .dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 1100px) { .gallery-dots { display: flex; } }

/* ── LIGHTBOX ── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(42,37,32,.96);
  align-items: center; justify-content: center; flex-direction: column;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 88vw; max-height: 82vh; object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,.5); animation: fadeIn .3s;
}
#lightbox-counter {
  margin-top: 1.2rem; font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(253,250,246,.45);
}
.lb-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(253,250,246,.1); border: 1px solid rgba(253,250,246,.2);
  color: var(--warm-white); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-close:hover { background: rgba(196,168,130,.3); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(253,250,246,.1); border: 1px solid rgba(253,250,246,.2);
  color: var(--warm-white); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-prev { left: 2rem; }
.lb-next { right: 2rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(196,168,130,.3); }

/* ── SERVICES ── */
#leistungen { padding: 8rem 6rem; }
.section-header { text-align: center; margin-bottom: 3rem; }

/* ── SERVICE TABS ── */
.service-tabs {
  display: flex; justify-content: center; gap: .6rem;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.service-tab {
  padding: .55rem 1.4rem;
  font-family: 'Jost', sans-serif; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; font-weight: 300;
  border: 1px solid var(--border); background: transparent;
  color: var(--mid); cursor: pointer; transition: all .3s;
}
.service-tab:hover { border-color: var(--gold); color: var(--dark); }
.service-tab.active { background: var(--dark); border-color: var(--dark); color: var(--warm-white); }

/* ── FIX 2: Hidden cards wirklich ausblenden (auch auf Mobile) ── */
.service-card.hidden { display: none !important; }

/* ── SERVICE PRICE (prominent) ── */
.service-price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--gold);
  letter-spacing: .03em; margin: .6rem 0 .5rem;
  transition: color .4s;
}
.service-card:hover .service-price-main { color: var(--gold-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.service-card {
  background: var(--warm-white); padding: 2.5rem 2rem;
  transition: background .4s; position: relative; overflow: hidden; cursor: default;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0; background: var(--gold); transition: width .4s;
}
.service-card:hover { background: var(--dark); }
.service-card:hover::before { width: 100%; }
.service-card:hover .service-num,
.service-card:hover .service-title,
.service-card:hover .service-desc { color: var(--warm-white); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem; color: var(--gold); letter-spacing: .1em;
  margin-bottom: 1.2rem; transition: color .4s;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400; color: var(--dark);
  margin-bottom: .4rem; transition: color .4s;
}
.service-desc {
  font-size: .85rem; line-height: 1.7; color: var(--mid);
  transition: color .4s; margin-bottom: .8rem;
  flex: 1;
}
.price-tags {
  display: flex; flex-wrap: wrap; gap: .35rem;
  align-items: flex-start;
  margin-top: auto;
}
.price-tag {
  font-size: .7rem; letter-spacing: .06em; padding: .25rem .65rem;
  background: var(--gold-light); color: var(--dark); transition: background .4s, color .4s;
}
.price-tag--info { background: var(--sage-light); }
.service-card:hover .price-tag { background: rgba(196,168,130,.18); color: var(--gold-light); }
.service-card:hover .price-tag--info { background: rgba(138,158,135,.18); color: var(--sage-light); }

/* ── EXTRAS TOGGLE ── */
.extras-toggle {
  display: flex; align-items: center; gap: .5rem; margin-top: 1.1rem;
  cursor: pointer; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage); background: none; border: none; padding: 0;
  font-family: 'Jost', sans-serif; font-weight: 300; transition: color .3s;
}
.extras-toggle-spacer {
  margin-top: 1.1rem;
  height: 17px;
}
.extras-toggle:hover { color: var(--gold); }
.extras-toggle .arrow { display: inline-block; transition: transform .3s; font-size: .65rem; }
.extras-toggle.open .arrow { transform: rotate(180deg); }
.service-card:hover .extras-toggle { color: var(--sage-light); }
.service-card:hover .extras-toggle:hover { color: var(--gold-light); }
.extras-panel {
  overflow: hidden; max-height: 0;
  transition: max-height .35s ease, opacity .3s; opacity: 0;
}
.extras-panel.open { max-height: 260px; opacity: 1; }
.extras-inner {
  margin-top: .8rem; border-top: 1px solid var(--border);
  padding-top: .8rem; display: flex; flex-direction: column; gap: .45rem;
}
.service-card:hover .extras-inner { border-top-color: rgba(255,255,255,.12); }
.extra-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--mid); transition: color .3s;
}
.service-card:hover .extra-item { color: rgba(253,250,246,.65); }
.extra-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-left: 1rem;
}
.hotstone-desc {
  font-size: .8rem; line-height: 1.65; color: var(--mid);
  font-style: italic; transition: color .3s;
}
.service-card:hover .hotstone-desc { color: rgba(253,250,246,.6); }

/* ── SERVICES MOBILE SLIDER ── */
@media (max-width: 1100px) {
  .services-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 0;
    background: transparent; border: none;
    padding-bottom: 1.5rem; scrollbar-width: none; -ms-overflow-style: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .service-card {
    flex: 0 0 78vw; max-width: 320px; scroll-snap-align: center;
    border: 1px solid var(--border);
  }
  /* FIX 3: hidden bleibt hidden – KEINE Ausnahme mehr für Mobile */
  /* Die alte Zeile ".service-card.hidden { display: flex; }" wurde entfernt */
}
.services-dots {
  display: none; justify-content: center;
  gap: .4rem; margin-top: 1.2rem; flex-wrap: wrap;
}
.services-dots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(196,168,130,.25); border: none; cursor: pointer;
  transition: background .3s, transform .3s; padding: 0;
}
.services-dots .dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 1100px) { .services-dots { display: flex; } }

/* ── SCHMERZTAPE BAR ── */
.tape-bar {
  margin-top: 1.5rem; display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 1.8rem; background: var(--warm-white);
  border: 1px solid var(--border); border-left: 3px solid var(--sage);
}
.tape-bar-icon { font-size: 1.3rem; flex-shrink: 0; }
.tape-bar-text { flex: 1; font-size: .85rem; line-height: 1.6; color: var(--mid); }
.tape-bar-text strong { color: var(--dark); font-weight: 500; }
.tape-bar-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--gold); flex-shrink: 0;
}

/* ── MARQUEE STRIP ── */
.strip { background: var(--dark); padding: 1.2rem 0; overflow: hidden; }
.strip-inner {
  display: flex; gap: 4rem;
  animation: marquee 22s linear infinite; white-space: nowrap;
}
.strip-item {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-light); display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0;
}
.strip-item::before { content: '✦'; color: var(--gold); font-size: .5rem; }

/* ── PROCESS ── */
#ablauf { background: var(--cream); padding: 8rem 6rem; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem; margin-top: 5rem; }
.process-step { position: relative; }
.process-step:not(:last-child)::after {
  content: ''; position: absolute; top: 1.5rem; right: -1.5rem;
  width: 3rem; height: 1px; background: var(--border);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 1rem;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: .8rem; }
.step-desc { font-size: .85rem; line-height: 1.7; color: var(--mid); }

/* ── PROCESS MOBILE SLIDER ── */
@media (max-width: 1100px) {
  .process-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 1rem;
    margin-top: 3rem; padding-bottom: 1.5rem;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .process-grid::-webkit-scrollbar { display: none; }
  .process-step { flex: 0 0 75vw; max-width: 300px; scroll-snap-align: center; }
  .process-step:not(:last-child)::after { display: none; }
}
.process-dots {
  display: none; justify-content: center; gap: .5rem; margin-top: 1.2rem;
}
.process-dots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(196,168,130,.25); border: none; cursor: pointer;
  transition: background .3s, transform .3s; padding: 0;
}
.process-dots .dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 1100px) { .process-dots { display: flex; } }

/* ── TESTIMONIALS ── */
#bewertungen { background: var(--dark); padding: 8rem 6rem; color: var(--warm-white); }
#bewertungen .section-tag { color: var(--sage-light); }
#bewertungen .section-title { color: var(--warm-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.testimonial { border: 1px solid rgba(255,255,255,.1); padding: 2.5rem; transition: border-color .3s; }
.testimonial:hover { border-color: var(--gold); }
.quote-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  line-height: .5; color: var(--gold); margin-bottom: 1.5rem; display: block;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  font-style: italic; line-height: 1.8;
  color: rgba(253,250,246,.75); margin-bottom: 2rem;
}
.testimonial-author { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.stars { color: var(--gold); font-size: .7rem; letter-spacing: .2em; margin-bottom: .8rem; }

/* ── TESTIMONIALS MOBILE SLIDER ── */
@media (max-width: 1100px) {
  .testimonials-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 1rem;
    padding-bottom: 1.5rem; scrollbar-width: none; -ms-overflow-style: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial { flex: 0 0 85vw; max-width: 360px; scroll-snap-align: center; }
  .testimonials-grid { grid-template-columns: unset; }
}
.testimonial-dots {
  display: none; justify-content: center; gap: .5rem; margin-top: 1.5rem;
}
.testimonial-dots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(253,250,246,.25); border: none; cursor: pointer;
  transition: background .3s, transform .3s; padding: 0;
}
.testimonial-dots .dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 1100px) { .testimonial-dots { display: flex; } }

/* ── CONTACT ── */
#kontakt { padding: 8rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 3rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; background: var(--cream); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .85rem;
}
.contact-item-text strong {
  display: block; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--dark); font-weight: 500; margin-bottom: .2rem;
}
.contact-item-text span { font-size: .9rem; color: var(--mid); line-height: 1.6; }
.contact-item-text a { color: inherit; text-decoration: none; transition: color .2s; }
.contact-item-text a:hover { color: var(--gold); }
.hours-grid { border: 1px solid var(--border); }
.hours-row {
  display: flex; justify-content: space-between; padding: .75rem 1.5rem;
  border-bottom: 1px solid var(--border); font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--mid); }
.hours-row .time { color: var(--dark); font-weight: 400; }
.hours-row .closed { color: var(--sage); }
.map-wrap { border: 1px solid var(--border); overflow: hidden; }
.map-wrap iframe { display: block; }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); }
.form-group input,
.form-group textarea,
.form-group select {
  background: transparent; border: 1px solid var(--border);
  padding: .9rem 1rem; font-family: 'Jost', sans-serif;
  font-size: .9rem; color: var(--dark); font-weight: 300;
  outline: none; transition: border-color .3s; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  padding: 1rem 2.5rem; background: var(--dark); color: var(--warm-white);
  border: none; font-family: 'Jost', sans-serif;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; transition: background .3s; align-self: flex-start;
}
.form-submit:hover { background: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--dark); padding: 2rem 6rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
}
footer .logo { color: var(--warm-white); }
footer .logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  text-decoration: none; font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(253,250,246,.4); transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .72rem; color: rgba(253,250,246,.3); letter-spacing: .05em; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: min(740px, calc(100vw - 2rem));
  background: var(--warm-white); border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(42,37,32,.2), 0 4px 20px rgba(42,37,32,.08);
  display: flex; align-items: center; gap: 2rem; padding: 1.8rem 2.2rem;
  transition: opacity .5s, transform .5s;
}
#cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(24px); pointer-events: none; }
.cookie-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.cookie-text { flex: 1; }
.cookie-text strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: .4rem;
}
.cookie-text p { font-size: .8rem; line-height: 1.65; color: var(--mid); }
.cookie-text a { color: var(--gold); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; flex-direction: column; gap: .5rem; flex-shrink: 0; }
.cookie-accept {
  padding: .7rem 1.8rem; background: var(--dark); color: var(--warm-white);
  border: none; font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; transition: background .3s; white-space: nowrap;
}
.cookie-accept:hover { background: var(--gold); }
.cookie-decline {
  padding: .7rem 1.8rem; background: transparent; color: var(--mid);
  border: 1px solid var(--border); font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; transition: all .3s; white-space: nowrap; text-align: center;
}
.cookie-decline:hover { border-color: var(--mid); color: var(--dark); }
@media (max-width: 620px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding: 1.5rem; }
  .cookie-actions { flex-direction: row; width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }

  /* Hero: auf Mobile Vollbild mit Overlay */
  #hero { grid-template-columns: 1fr; padding-top: 0; }
  .hero-left { display: none; }
  .hero-right {
    min-height: 100vh; opacity: 1; animation: none;
    position: relative;
  }
  .hero-img-wrap { position: absolute; inset: 0; }
  .hero-img { filter: brightness(.75) saturate(.9); }
  .hero-gradient {
    background: linear-gradient(to top, rgba(42,37,32,.75) 0%, rgba(42,37,32,.2) 50%, transparent 100%);
  }
  .hero-overlay {
    display: flex; flex-direction: column; justify-content: flex-end;
    position: absolute; inset: 0; padding: 2.5rem 2rem 3rem;
    z-index: 2;
  }
  .hero-overlay .hero-eyebrow {
    font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
    color: rgba(253,250,246,.7); margin-bottom: 1rem;
    opacity: 0; animation: fadeUp 1s .2s forwards;
  }
  .hero-overlay .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 8vw, 3.5rem); font-weight: 300; line-height: 1.1;
    color: var(--warm-white); margin-bottom: 1.8rem;
    opacity: 0; animation: fadeUp 1s .4s forwards;
  }
  .hero-overlay .hero-title em { color: var(--gold); font-style: italic; }
  .hero-overlay .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 1s .6s forwards;
  }
  .hero-overlay .hero-actions .btn-primary { padding: .9rem 1.8rem; font-size: .75rem; }
  .hero-overlay .hero-actions .btn-outline-light { padding: .9rem 1.8rem; font-size: .75rem; }
  .hero-badge-inline {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(253,250,246,.12); backdrop-filter: blur(8px);
    border-left: 3px solid var(--gold);
    padding: .8rem 1.2rem; align-self: flex-start;
    opacity: 0; animation: fadeUp 1s .8s forwards;
  }
  .hero-badge-inline .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--warm-white); line-height: 1;
  }
  .hero-badge-inline .label {
    font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
    color: rgba(253,250,246,.7);
  }

  #about { grid-template-columns: 1fr; padding: 5rem 2.5rem; gap: 3rem; }
  #galerie, #leistungen, #ablauf, #bewertungen { padding: 5rem 2.5rem; }
  #kontakt { grid-template-columns: 1fr; padding: 5rem 2.5rem; }
  .services-grid { grid-template-columns: unset; }
  .process-grid { grid-template-columns: unset; }
  footer { flex-direction: column; gap: 1.2rem; padding: 2rem; text-align: center; }
  .tape-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  #about, #galerie, #leistungen, #ablauf, #bewertungen, #kontakt { padding: 4rem 1.5rem; }
  .hero-overlay { padding: 2rem 1.5rem 2.5rem; }
}