:root {
  --green:         #7dc404;   
  --green-dark:    #5a8e03;   
  --green-mid:     #6aaa03;   
  --green-light:   #a8e005;   
  --green-pale:    #edfacc;   
  --c-bg:          #ffffff;
  --c-bg-alt:      #f7f9f7;
  --c-text:        #1a2e22;
  --c-muted:       #6b7f74;
  --c-border:      #e3ebe5;
  --c-bg-dark:     #111c17;   
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max:  1140px;
  --px:   clamp(20px, 5vw, 60px);
  --navh: 68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; transition: color .2s; }
ul  { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
section { padding: 90px 0; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section-sub {
  color: var(--c-muted);
  font-size: .95rem;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: #ffffff;
  font-size: .875rem; font-weight: 600;
  padding: 13px 28px;
  border-radius: 4px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-primary svg { width: 15px; height: 15px; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); color: #ffffff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--c-text);
  font-size: .875rem; font-weight: 500;
  padding: 13px 28px;
  border-radius: 4px;
  border: 1px solid var(--c-border);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
#hero .btn-outline {
  color: rgba(255,255,255,.95);
  border: 1.5px solid rgba(255,255,255,.4);
}
#hero .btn-outline:hover { border-color: var(--green-light); color: var(--green-light); }
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .35s, border-color .35s;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
}
#nav.solid {
  background: #ffffff;
  border-bottom: 1px solid var(--c-border);
}
#nav.page {
  background: #ffffff;
  border-bottom: 1px solid var(--c-border);
}
.nav-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  height: var(--navh);                        
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height .35s ease;               
}
#nav.solid .nav-wrap {
  height: 50px;
}
#nav.page .nav-wrap {
  height: 50px;
}
.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);   
  transition: filter .35s;
}
#nav.solid .logo-img {
  filter: none;
}
#nav.page .logo-img {
  filter: none;
  transition: none;
}
.nav-links {
  display: flex; align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .83rem; font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
.nav-links a:hover { color: #ffffff; }
#nav.solid .nav-links a { color: var(--c-muted); }
#nav.solid .nav-links a:hover { color: var(--c-text); }
#nav.page .nav-links a { color: var(--c-text); }
#nav.page .nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: #ffffff !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  font-size: .8rem !important;
}
.nav-cta:hover { background: var(--green-mid) !important; color: #ffffff !important; }
.burger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 28px; height: 28px; flex-shrink: 0;
  background: none; padding: 0;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,.85); border-radius: 2px;
  transition: transform .25s, opacity .25s, background .3s;
  transform-origin: center;
}
#nav.solid .burger span { background: var(--c-muted); }
#nav.page  .burger span { background: var(--c-muted); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column;
  position: absolute; top: var(--navh); left: 0; right: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: 12px var(--px) 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  max-height: calc(100vh - var(--navh));
  overflow-y: auto;
  z-index: 899;
}
.nav-mobile.open { display: flex; }
.nm-link {
  display: block; padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: .95rem; font-weight: 500; color: var(--c-text);
  transition: color .2s;
}
.nm-link:last-child { border: none; }
.nm-link:hover { color: var(--green); }
.nm-cta {
  margin-top: 12px;
  background: var(--green) !important;
  color: #ffffff !important;
  text-align: center;
  padding: 12px !important;
  border-radius: 4px;
  font-weight: 600;
  border: none !important;
  font-size: .9rem !important;
  transition: background .2s;
}
.nm-cta:hover { background: var(--green-mid) !important; }
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1b4332 0%, #0d2818 100%);
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.hero-dim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(13,40,24,.95) 0%,
    rgba(13,40,24,.70) 50%,
    rgba(13,40,24,.30) 100%
  );
}
.hero-body {
  flex: 1;
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--px);
  max-width: var(--max);
  margin: 0 auto;
}
.hero-body > * { max-width: var(--max); width: 100%; margin-left: auto; margin-right: auto; }
.hero-body .hero-kicker,
.hero-body h1,
.hero-body .hero-sub,
.hero-body .hero-btns {
  margin-left: 0; margin-right: 0;
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.95);
  margin-bottom: 18px;
}
.hero-kicker::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: rgba(255,255,255,.95);
}
#hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800; letter-spacing: -.03em;
  color: #f5f5f5; line-height: 1.08;
  margin-bottom: 20px;
  max-width: 640px;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.85);
  max-width: 440px; line-height: 1.75; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-services {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  width: 100%;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hs-item {
  display: flex; align-items: center; gap: 16px;
  padding: 24px clamp(20px, 4vw, 48px);
  border-right: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  transition: background .2s;
}
.hs-item:last-child { border-right: none; }
.hs-item:hover { background: rgba(255,255,255,.08); }
.hs-item:hover svg { color: var(--green-light); }
.hs-item svg {
  width: 22px; height: 22px;
  color: rgba(255,255,255,.7); flex-shrink: 0;
  transition: color .2s;
}
.hs-item strong {
  display: block; font-size: .88rem; font-weight: 600; color: #ffffff;
  margin-bottom: 2px;
}
.hs-item span {
  font-size: .72rem; color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .08em;
}
#leistungen {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  overflow: hidden;
}
.sl-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 28px 26px;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  transition: background .2s;
}
.sl-item:hover { background: var(--c-bg-alt); }
.sl-item:nth-child(3n) { border-right: none; }
.sl-item:nth-last-child(-n+3) { border-bottom: none; }
.sl-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-top: 2px;
}
.sl-icon svg { width: 18px; height: 18px; }
.sl-text h3 {
  font-size: .875rem; font-weight: 600;
  text-transform: none; letter-spacing: 0;
  color: var(--c-text); margin-bottom: 6px;
}
.sl-text p { font-size: .84rem; color: var(--c-muted); line-height: 1.65; }
#galerie { background: var(--c-bg-alt); border-bottom: 1px solid var(--c-border); }
#galerie .wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--px); padding-right: var(--px); }
.carousel {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 36px auto;
  overflow: hidden;
  box-sizing: border-box;
}
.carousel-track {
  display: flex;
  gap: 10px;
  transition: transform .5s ease;
  margin-left: -5px;
  padding-left: 5px;
}
.carousel-item {
  flex: 0 0 calc((100% - 20px) / 3);
  box-sizing: border-box;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.carousel-item.active img,
.carousel-item:hover img {
  transform: scale(1.03);
}
.carousel-item.active img { transform: scale(1); }
.carousel-item:hover img { transform: scale(1.03); }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(0,0,0,.45);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 5;
  cursor: pointer;
}
.carousel-btn:hover { background: rgba(0,0,0,.65); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255, .5);
  border: 1px solid rgba(255,255,255, .9);
  cursor: pointer;
}
.carousel-dot.active { background: var(--green); }
@media (max-width: 1024px) {
  .carousel-item { flex: 0 0 calc((100% - 10px) / 2); }
}
@media (max-width: 768px) {
  .carousel-item { flex: 0 0 100%; }
  .carousel-btn { width: 42px; height: 42px; }
}
@media (max-width: 540px) {
  .carousel-btn { width: 36px; height: 36px; }
}
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
#damen  { background: var(--c-bg); border-bottom: 1px solid var(--c-border); padding: 90px 0 !important; }
#herren { background: var(--c-bg); border-bottom: 1px solid var(--c-border); padding: 90px 0 !important; }
#team   { background: linear-gradient(135deg, #f0f8f4 0%, #e8f5ef 100%); border-bottom: 1px solid var(--c-border); padding: 90px 0 !important; }
#team .treatment-block { align-items: center; }
#team .treatment-img {
  position: relative; top: 0;
  height: auto;
  aspect-ratio: 4 / 3;
}
#team .treatment-img img { object-fit: cover; }
#damen .wrap,
#herren .wrap,
#team .wrap {
  max-width: 100%; padding-left: 0; padding-right: 0;
}
#damen .section-label,
#herren .section-label,
#team .section-label,
#damen h2,
#herren h2,
#team h2 {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
.treatment-block {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: start;
  margin: 0;
  width: 100%;
}
.treatment-block.reversed {
  direction: rtl;
}
.treatment-block.reversed > * {
  direction: ltr;
}
.treatment-img {
  position: sticky; top: calc(var(--navh) + 20px);
  height: 100vh; border-radius: 0; overflow: hidden;
  border: none; width: 100%;
}
.treatment-prices {
  padding: var(--px) clamp(24px, 4vw, 60px);
}
.treatment-prices { display: flex; flex-direction: column; gap: 36px; }
.price-group h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--c-muted);
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--c-border);
}
.price-group h3 svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.price-group ul li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: .875rem;
}
.price-group ul li:last-child { border-bottom: none; }
.price-group ul li span:first-child { color: var(--c-text); flex: 1; min-width: 0; }
.price-group ul li span:last-child  { color: var(--green); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.price-note {
  font-size: .76rem; color: var(--c-muted); font-style: italic;
  margin-top: -8px;
}
.treatment-icons {
  display: flex; gap: 0;
  border: 1px solid var(--c-border); border-radius: 6px; overflow: hidden;
  margin-top: 8px;
}
.ti-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 7px;
  padding: 18px 10px;
  border-right: 1px solid var(--c-border);
  font-size: .68rem; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: .08em;
  text-align: center;
  transition: background .2s;
}
.ti-item:last-child { border-right: none; }
.ti-item:hover { background: var(--c-bg-alt); color: var(--c-text); }
.ti-item svg { width: 18px; height: 18px; color: var(--green); }
#leistungen, #galerie, #damen, #herren, #team, #kontakt {
  scroll-margin-top: var(--navh);
}
.kontakt-section { background: var(--c-bg); border-top: 1px solid var(--c-border); }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.kontakt-col h2 { margin-bottom: 12px; }
.kontakt-col > p { color: var(--c-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 36px; }
.hours-list { display: flex; flex-direction: column; }
.hl-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  gap: 16px;
}
.hl-row:first-child { border-top: 1px solid var(--c-border); }
.hl-day  { font-size: .875rem; font-weight: 500; color: var(--c-text); }
.hl-time { font-size: .875rem; color: var(--c-muted); }
.hl-late .hl-day,
.hl-late .hl-time { color: var(--green); }
.hl-late .hl-day  { font-weight: 600; }
.hl-closed .hl-day,
.hl-closed .hl-time {
  color: var(--c-muted);
  font-weight: 400;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.cd-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.cd-row svg {
  width: 16px; height: 16px; color: var(--green);
  flex-shrink: 0; margin-top: 3px;
}
.cd-row strong {
  display: block; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-muted); margin-bottom: 2px;
}
.cd-row span { font-size: .9rem; color: var(--c-text); }
.cd-row a { color: var(--c-text); }
.cd-row a:hover { color: var(--green); }
.contact-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.contact-social { display: flex; gap: 10px; }
.contact-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--c-border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted); transition: .2s;
}
.contact-social a svg { width: 15px; height: 15px; }
.contact-social a:hover { border-color: var(--green); color: var(--green); }
#footer { background: var(--c-bg-dark); border-top: 1px solid rgba(255,255,255,.1); }
.footer-wrap {
  display: flex; align-items: flex-start; gap: 48px;
  padding-top: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.footer-brand { flex: 2; min-width: 200px; }
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-nav {
  flex: 1; min-width: 120px;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-nav a:hover { color: #ffffff; }
.footer-bottom .wrap {
  padding-top: 20px; padding-bottom: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.35); }
.sticky-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  background: var(--green); color: #ffffff;
  display: flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 4px;
  font-size: .83rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
}
.sticky-btn.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-btn:hover { background: var(--green-mid); color: #ffffff; }
.sticky-btn svg { width: 14px; height: 14px; }
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (max-width: 1024px) {
  #damen .wrap,
  #herren .wrap,
  #team .wrap {
    max-width: var(--max); padding-left: var(--px); padding-right: var(--px);
  }
  #damen .section-label,
  #herren .section-label,
  #team .section-label,
  #damen h2,
  #herren h2,
  #team h2 {
    margin-left: 0;
    padding-right: 0;
  }
  .treatment-block,
  .treatment-block.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }
  .treatment-block.reversed > * { direction: ltr; }
  .treatment-img { position: relative; top: 0; height: 360px; border-radius: 6px; border: 1px solid var(--c-border); }
  .treatment-prices { padding: 0; }
  .services-list { grid-template-columns: 1fr 1fr; }
  .sl-item { border-right: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
  .sl-item:nth-child(2n) { border-right: none; }
  .sl-item:nth-last-child(-n+2) { border-bottom: none; }
  .sl-item:nth-child(3n) { border-right: 1px solid var(--c-border); }
  .sl-item:nth-child(2n) { border-right: none; }
  .sl-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--c-border); }
  .sl-item:nth-last-child(-n+2) { border-bottom: none; }
  .sl-item:last-child { border-bottom: none; }
  .kontakt-grid { gap: 48px; }
}
@media (max-width: 768px) {
  :root { --navh: 56px; --px: 18px; }
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .burger    { display: flex; }
  #nav.solid .nav-wrap,
  #nav.page  .nav-wrap { height: 44px; }
  #nav.solid .nav-mobile,
  #nav.page  .nav-mobile { top: 44px; }
  .hero-body {
    padding-bottom: 44px;
    padding-top: calc(var(--navh) + 60px);
    align-items: center;
    text-align: center;
  }
  .hero-body .hero-kicker { justify-content: center; }
  .hero-body h1           { max-width: 100%; }
  .hero-body .hero-sub    { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns              { justify-content: center; }
  .hero-services {
    position: relative;
    grid-template-columns: 1fr;
  }
  .hs-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 18px var(--px);
  }
  .hs-item:last-child { border-bottom: none; }
  #damen,
  #herren,
  #team {
    padding: 56px 0 !important;
  }
  #damen .wrap,
  #herren .wrap,
  #team .wrap {
    max-width: var(--max); padding-left: var(--px); padding-right: var(--px);
  }
  #damen .section-label,
  #herren .section-label,
  #team .section-label,
  #damen h2,
  #herren h2,
  #team h2 {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .treatment-block,
  .treatment-block.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .treatment-block.reversed > * { direction: ltr; }
  .treatment-img { position: relative; top: 0; height: 280px; border-radius: 6px; border: 1px solid var(--c-border); margin-bottom: 12px; }
  .treatment-prices { padding: 0; display: flex; flex-direction: column; gap: 28px; }
  .services-list { grid-template-columns: 1fr; border-radius: 4px; }
  .sl-item {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: 20px 16px;
    gap: 12px;
  }
  .sl-item:last-child { border-bottom: none; }
  .sl-icon { width: 28px; height: 28px; }
  .sl-icon svg { width: 14px; height: 14px; }
  .sl-text h3 { font-size: .8rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-col h2 { margin-top: 0; }
  h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
}
@media (max-width: 540px) {
  :root { --navh: 52px; --px: 16px; }
  section { padding: 44px 0; }
  .logo { font-size: 1rem; }
  #nav.solid .nav-wrap,
  #nav.page  .nav-wrap { height: 40px; }
  #nav.solid .nav-mobile,
  #nav.page  .nav-mobile { top: 40px; }
  #hero { min-height: 90vh; }
  #hero h1 { font-size: clamp(1.75rem, 5vw, 2.4rem); line-height: 1.1; margin-bottom: 14px; }
  .hero-kicker { font-size: 10px; margin-bottom: 14px; }
  .hero-kicker::before { width: 16px; }
  .hero-sub { font-size: .9rem; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns a { justify-content: center; padding: 11px 20px; font-size: .8rem; }
  .hero-services {
    position: relative;
    bottom: auto;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255,255,255,.15);
    background: rgba(0,0,0,.15);
    margin-top: 0;
    width: 100%;
  }
  .hs-item {
    padding: 16px var(--px);
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .hs-item:last-child { border-bottom: none; }
  .hs-item strong { font-size: .78rem; }
  .hs-item span { font-size: .65rem; }
  .hs-item svg { width: 18px; height: 18px; }
  h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: 12px; }
  .section-label { font-size: 10px; margin-bottom: 10px; }
  .section-sub { margin-bottom: 36px; font-size: .9rem; }
  #damen,
  #herren,
  #team {
    padding: 44px 0 !important;
  }
  .treatment-img { height: 200px; margin-bottom: 20px; }
  .treatment-prices { padding: 0; gap: 24px; }
  .price-group { gap: 12px; }
  .price-group h3 { font-size: .7rem; padding-bottom: 10px; margin-bottom: 8px; }
  .price-group ul li { font-size: .8rem; padding: 8px 0; }
  .price-note { font-size: .7rem; }
  .treatment-icons { flex-wrap: wrap; gap: 8px; }
  .ti-item { flex: 1 1 30%; padding: 12px 6px; font-size: .6rem; gap: 4px; }
  .ti-item svg { width: 14px; height: 14px; }
  .services-list { grid-template-columns: 1fr; border-radius: 4px; }
  .sl-item { padding: 16px 12px; gap: 10px; }
  .sl-icon { width: 24px; height: 24px; }
  .sl-icon svg { width: 12px; height: 12px; }
  .sl-text h3 { font-size: .75rem; margin-bottom: 4px; }
  .sl-text p { font-size: .8rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
  .kontakt-col > p { font-size: .85rem; margin-bottom: 24px; }
  .hours-list { gap: 0; }
  .hl-row { padding: 10px 0; font-size: .85rem; }
  .hl-day { font-size: .8rem; }
  .hl-time { font-size: .8rem; }
  .contact-details { gap: 16px; margin-bottom: 20px; }
  .cd-row { gap: 10px; }
  .cd-row svg { width: 14px; height: 14px; margin-top: 1px; }
  .cd-row strong { font-size: .65rem; margin-bottom: 1px; }
  .cd-row span { font-size: .85rem; }
  .contact-actions { gap: 12px; }
  .btn-primary { padding: 10px 20px; font-size: .8rem; }
  .contact-social { gap: 8px; }
  .contact-social a { width: 32px; height: 32px; }
  .contact-social a svg { width: 13px; height: 13px; }
  .footer-wrap { flex-direction: column; gap: 20px; padding-top: 36px; padding-bottom: 28px; }
  .footer-logo { font-size: 1rem; }
  .footer-brand p { font-size: .8rem; }
  .footer-nav { gap: 8px; min-width: auto; }
  .footer-nav a { font-size: .8rem; }
  .footer-bottom .wrap { flex-direction: column; gap: 4px; padding-top: 16px; padding-bottom: 16px; }
  .footer-bottom p { font-size: .7rem; }
  .sticky-btn { position: fixed; bottom: 16px; right: 16px; padding: 12px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .sticky-btn span { display: none; }
  .sticky-btn svg { width: 16px; height: 16px; }
}