/* ============================================
   Beauty By Lenz - Stylesheet (Mobile First)
   ============================================ */

/* --- Fonts (Cormorant Garamond + Jost, self-hosted) --- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src: url('../fonts/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: block;
  src: url('../fonts/cormorant-garamond-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src: url('../fonts/jost-400.woff2') format('woff2');
}

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

:root {
  --pink-light: #FAEFF0;
  --pink-rose: #F4E0E2;
  --pink-warm: #f7e8e9;
  --pink: #FAEFF0;
  --white-warm: #FCF7F8;
  --white: #FFFFFF;
  --dark: #171212;
  --dark-soft: #2a2222;
  --gray: #7A7A7A;
  --gray-light: #B0B0B0;
  --primary: #171212;
  --accent: #d4919a;
  --deep-rose: #b8636f;
  --rosegold: #c9a090;
  --green-whatsapp: #25D366;
  --font: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --max-width: 1280px;
  --header-height: 64px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 769px) {
  :root {
    --header-height: 80px;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--deep-rose);
}

h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.3rem); }

p {
  color: var(--dark-soft);
  max-width: 65ch;
}

.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 769px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

.section {
  padding: 3rem 0;
}

@media (min-width: 769px) {
  .section {
    padding: 5rem 0;
  }
}

.section--pink { background-color: var(--pink-light); }
.section--rose { background-color: var(--pink-rose); }
.section--warm { background-color: var(--white-warm); }
.section--dark { background-color: var(--dark); color: var(--white); }

/* Grid - mobile first: 1 column */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 641px) {
  .grid { gap: 2rem; }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
  .grid { gap: 2.5rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition);
  min-height: 48px; /* touch target */
}

@media (min-width: 769px) {
  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }
}

.btn--primary {
  background-color: var(--deep-rose);
  color: var(--white);
  letter-spacing: 0.15em;
  border-radius: 2px;
}

.btn--primary:hover {
  background-color: var(--dark);
}

.btn--outline {
  border: 1px solid var(--pink-rose);
  color: var(--dark);
  background: transparent;
  letter-spacing: 0.12em;
  border-radius: 2px;
}

.btn--outline:hover {
  color: var(--deep-rose);
  border-color: var(--deep-rose);
  background: rgba(184,99,111,.04);
}

.btn--white {
  background-color: var(--white);
  color: var(--dark);
}

.btn--white:hover {
  background-color: var(--pink-light);
}

.btn__arrow {
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 64px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 769px) {
  .header__inner {
    padding: 0 32px;
  }
}

.header__logo {
  flex-shrink: 0;
  line-height: 0;
}

.header__logo img {
  height: 42px;
  width: auto;
}

@media (min-width: 769px) {
  .header__logo img {
    height: 50px;
  }
}

/* Hamburger - visible by default (mobile first) */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
  min-height: 48px;
  justify-content: center;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav - mobile: full-screen overlay */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: right var(--transition-slow);
}

.nav.is-open {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: right;
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link:hover {
  color: var(--accent);
}

.nav .btn--primary {
  background-color: var(--deep-rose);
  color: var(--white);
  border-color: var(--deep-rose);
  border-radius: 999px;
}

.nav .btn--primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}

/* Desktop nav */
@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    flex-direction: row;
    align-items: center;
  }

  .nav__list {
    flex-direction: row;
    gap: 0;
  }

  .nav__link {
    font-family: 'Jost', 'Segoe UI', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.4px !important;
    line-height: 1.4 !important;
    padding: 8px 10px;
    min-height: auto;
    white-space: nowrap;
  }
}

/* --- Static Hero --- */
.hero-static {
  display: flex;
  align-items: center;
}

.hero-static__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-static__image {
  order: -1;
  border-radius: 4px 100px 4px 100px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(23,18,18,.1);
}

.hero-static__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  animation: heroFadeIn 1s ease forwards;
}

.hero-static__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: heroSlideUp 0.8s ease forwards;
}

.hero-static__heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

/* Markenzeile im Hero: optisch identisch zur Überschrift, aber semantisch
   kein zweites <h1>. Stellt wieder her, was <p> statt <h1> verliert. */
.hero-static__brand {
  color: inherit;
  max-width: none;
  letter-spacing: -0.01em;
}

.hero-static__brand em {
  font-style: italic;
  color: var(--deep-rose);
}

.hero-static__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 550px;
  color: var(--gray);
}

.hero-static__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

@media (min-width: 769px) {
  .hero-static__btns {
    justify-content: flex-start;
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

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

/* Tablet hero */
@media (min-width: 641px) {
  .hero-static__heading {
    font-size: 2.2rem;
  }

  .hero-static__text {
    font-size: 0.95rem;
  }
}

/* Desktop hero */
@media (min-width: 769px) {
  .hero-static__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-static__image {
    order: 0;
    max-width: none;
    max-height: none;
    aspect-ratio: 3/4;
    border-radius: 4px 160px 4px 160px;
    margin: 0;
  }

  .hero-static__heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.25rem;
  }

  .hero-static__text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1200px) {
  .hero-static__inner {
    gap: 4rem;
  }
}

/* --- Price Duration --- */
.price-item__duration {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: var(--gray);
  margin-left: 0.75rem;
  white-space: nowrap;
  min-width: 52px;
  text-align: right;
}

/* --- Treatment Accordion --- */
.treatment-accordion {
  max-width: 700px;
  margin: 0 auto;
}

.treatment-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.treatment-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.treatment-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s;
}

.treatment-item summary:hover {
  background: var(--pink-light);
}

.treatment-item summary::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.treatment-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray);
  transition: transform 0.3s;
}

.treatment-item[open] summary::after {
  content: '\2212';
}

.treatment-item > div {
  padding: 0 1.5rem 1.25rem;
}

.treatment-item ul {
  list-style: none;
  padding: 0;
}

.treatment-item li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
}

.treatment-item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* --- Block Offer Box --- */
.block-offer {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-rose) 100%);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.block-offer p {
  max-width: none;
}

.block-offer__badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.block-offer__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.block-offer__text {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.block-offer__saving {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 0.5rem;
  margin-top: 0.75rem;
}

/* --- Contact Card hover --- */
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* --- Instagram Floating CTA --- */
.floating-cta__ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(225, 48, 108, 0.3);
}

.floating-cta__ig:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.floating-cta__ig svg {
  width: 20px;
  height: 20px;
}

/* --- Page Hero --- */
.page-hero {
  height: 45vh;
  min-height: 280px;
  max-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (min-width: 769px) {
  .page-hero {
    height: 50vh;
    min-height: 350px;
    max-height: 600px;
  }
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,18,18,0.65) 0%, rgba(23,18,18,0.15) 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 1.5rem;
}

@media (min-width: 769px) {
  .page-hero__content {
    padding-bottom: 3rem;
  }
}

.page-hero__title {
  color: var(--white);
  font-size: clamp(1.75rem, 5vw, 3.2rem);
}

.page-hero__breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .page-hero__breadcrumb {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }
}

.page-hero__breadcrumb a:hover {
  color: var(--white);
}

.page-hero__breadcrumb span {
  margin: 0 0.5rem;
}

/* --- Content Sections --- */
.content-block {
  padding: 3rem 0;
}

@media (min-width: 769px) {
  .content-block {
    padding: 5rem 0;
  }
}

/* Mobile: single column, text first */
.content-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 769px) {
  .content-block__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1025px) {
  .content-block__grid {
    gap: 4rem;
  }
}

/* On mobile, text always comes first (natural order) */
/* On desktop, reverse puts text on the right */
@media (min-width: 769px) {
  .content-block__grid--reverse .content-block__text {
    order: -1;
  }
}

.content-block__text h2 {
  margin-bottom: 1rem;
}

@media (min-width: 769px) {
  .content-block__text h2 {
    margin-bottom: 1.25rem;
  }
}

.content-block__text h3 {
  margin-bottom: 0.75rem;
}

.content-block__text p {
  margin-bottom: 1rem;
}

.content-block__text p:last-child {
  margin-bottom: 0;
}

.content-block__image {
  border-radius: 1rem;
  overflow: hidden;
  max-height: 280px;
}

@media (min-width: 769px) {
  .content-block__image {
    max-height: 380px;
  }
}

.content-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.content-block__image:hover img {
  transform: scale(1.03);
}

/* Modifier: show full image (e.g. product bottles) instead of cropping */
.content-block__image--contain {
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  max-height: none;
  height: auto;
}

.content-block__image--contain img {
  object-fit: contain;
  object-position: center;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 320px;
}

@media (min-width: 769px) {
  .content-block__image--contain img {
    max-height: 400px;
  }
}

/* --- Stats --- */
.stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
}

@media (min-width: 769px) {
  .stats {
    gap: 3rem;
    margin: 2rem 0;
  }
}

.stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

@media (min-width: 769px) {
  .stat__label {
    font-size: 0.875rem;
  }
}

/* --- Price List --- */
.price-section {
  margin-bottom: 2.5rem;
}

@media (min-width: 769px) {
  .price-section {
    margin-bottom: 3.5rem;
  }
}

.price-section__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--pink-rose);
}

@media (min-width: 769px) {
  .price-section__title {
    margin-bottom: 1.5rem;
  }
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 0.5rem;
}

@media (min-width: 769px) {
  .price-item {
    padding: 0.875rem 0;
    gap: 1rem;
  }
}

.price-item:last-child {
  border-bottom: none;
}

.price-item__name {
  font-weight: 400;
  font-size: 0.875rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 769px) {
  .price-item__name {
    font-size: 0.95rem;
  }
}

.price-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--gray-light);
  min-width: 1rem;
  margin-bottom: 0.3rem;
  display: none;
}

@media (min-width: 481px) {
  .price-item__dots {
    display: block;
    min-width: 2rem;
  }
}

.price-item__price {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--dark);
  flex-shrink: 0;
  min-width: 62px;
  text-align: right;
}

@media (min-width: 769px) {
  .price-item__price {
    font-size: 1rem;
  }
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 641px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 1025px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }
}

.gallery-logo-cell {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 1rem;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,18,18,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(23,18,18,0.2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  max-width: 95vw;
  max-height: 85vh;
}

@media (min-width: 769px) {
  .lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
  }
}

.lightbox__content img,
.lightbox__content video {
  max-width: 95vw;
  max-height: 85vh;
  object-fit: contain;
}

@media (min-width: 769px) {
  .lightbox__content img,
  .lightbox__content video {
    max-width: 90vw;
    max-height: 90vh;
  }
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

@media (min-width: 769px) {
  .lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
  }
}

.lightbox__close:hover {
  opacity: 0.7;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

@media (min-width: 769px) {
  .lightbox__nav {
    font-size: 2rem;
  }
}

.lightbox__nav:hover { opacity: 0.7; }
.lightbox__nav--prev { left: 0.5rem; }
.lightbox__nav--next { right: 0.5rem; }

@media (min-width: 769px) {
  .lightbox__nav--prev { left: 1.5rem; }
  .lightbox__nav--next { right: 1.5rem; }
}

/* --- Contact Form --- */
.form {
  max-width: 600px;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

@media (min-width: 769px) {
  .form__label {
    font-size: 0.8125rem;
  }
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  min-height: 44px;
  font-family: var(--font);
  font-size: 1rem; /* 16px prevents iOS zoom */
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 0.5rem;
  background-color: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

@media (min-width: 769px) {
  .form__input,
  .form__textarea {
    font-size: 0.95rem;
  }
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--dark);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

@media (min-width: 769px) {
  .form__textarea {
    min-height: 160px;
  }
}

/* Mobile: stack form fields */
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 481px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 0.125rem;
}

.contact-info__value {
  font-size: 1rem;
}

.contact-info__value a:hover {
  color: var(--accent);
}

/* --- Map --- */
.map-container {
  width: 100%;
  height: 280px;
  margin-top: 2rem;
}

@media (min-width: 769px) {
  .map-container {
    height: 400px;
    margin-top: 3rem;
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer --- */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

@media (min-width: 769px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}

/* Mobile: single column footer */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 641px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1025px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer__logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(10);
}

@media (min-width: 769px) {
  .footer__logo img {
    height: 60px;
  }
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 769px) {
  .footer__heading {
    margin-bottom: 1.25rem;
  }
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  padding: 0.375rem 0;
}

@media (max-width: 768px) {
  .footer__links a {
    padding: 0.5rem 0;
  }
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 641px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 0.8125rem;
    padding-top: 1.5rem;
  }
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--green-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (min-width: 769px) {
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

@media (min-width: 769px) {
  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background-color: var(--dark);
  color: var(--white);
  padding: 1rem;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  color: rgba(255,255,255,0.8);
  max-width: none;
}

.cookie-banner a {
  text-decoration: underline;
  color: rgba(255,255,255,0.8);
}

.cookie-banner__btn {
  padding: 0.5rem 1.5rem;
  background-color: var(--white);
  color: var(--dark);
  font-weight: 500;
  font-size: 0.8125rem;
  white-space: nowrap;
  transition: background var(--transition);
  min-height: 44px;
}

.cookie-banner__btn:hover {
  background-color: var(--pink-light);
}

@media (min-width: 641px) {
  .cookie-banner {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    padding: 1.25rem;
    font-size: 0.875rem;
  }
}

/* --- Booking Embed --- */
.booking-embed {
  width: 100%;
  min-height: 80vh;
  border: none;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Image Grid (Service Pages) --- */
.image-grid {
  display: grid;
  gap: 0.75rem;
}

/* Mobile: single column, constrained heights */
.image-grid--3 {
  grid-template-columns: 1fr;
}

.image-grid--masonry {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}

@media (min-width: 481px) {
  .image-grid--3 {
    grid-template-columns: 1fr 1fr;
  }

  .image-grid--masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
}

@media (min-width: 769px) {
  .image-grid {
    gap: 1rem;
  }

  .image-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-grid--masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }

  .image-grid--masonry .image-grid__item:nth-child(1) {
    grid-row: span 2;
  }
}

.image-grid__item {
  overflow: hidden;
  border-radius: 1rem;
  max-height: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

@media (min-width: 769px) {
  .image-grid__item {
    max-height: 280px;
  }
}

.image-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow), box-shadow 0.3s ease;
}

.image-grid__item:hover img {
  transform: scale(1.04);
}

.image-grid__item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* --- Image Strip (Mobile horizontal scroll, Desktop grid) --- */
.image-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.image-strip::-webkit-scrollbar {
  display: none;
}

.image-strip__item {
  flex: 0 0 78%;
  scroll-snap-align: start;
  border-radius: 1rem;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.image-strip__item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.image-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform var(--transition-slow);
}

.image-strip__item:hover img {
  transform: scale(1.04);
}

.image-strip__item--contain {
  background: var(--pink-light);
}

.image-strip__item--contain img {
  object-fit: contain;
  object-position: center;
}

@media (min-width: 769px) {
  .image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .image-strip__item {
    flex: none;
    height: 220px;
    scroll-snap-align: unset;
  }
}

/* --- Quote --- */
.quote {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--pink-rose);
  max-width: none;
}

@media (min-width: 769px) {
  .quote {
    padding: 2rem 0 2rem 2rem;
  }
}

/* --- Legal Pages --- */
.legal-content {
  padding: 2rem 0;
}

@media (min-width: 769px) {
  .legal-content {
    padding: 3.5rem 0;
  }
}

.legal-content h1 {
  margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
  .legal-content h1 {
    margin-bottom: 2rem;
  }
}

.legal-content h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

@media (min-width: 769px) {
  .legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}

.legal-content h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

@media (min-width: 769px) {
  .legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
  }
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* --- Utility --- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* --- Responsive Grids (replacing inline styles) --- */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 769px) {
  .responsive-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.responsive-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 641px) {
  .responsive-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .responsive-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.responsive-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 481px) {
  .responsive-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .responsive-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

#my-cal-inline {
  width: 100%;
  overflow: visible;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Press Cards --- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 641px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .press-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.press-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.press-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.press-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.press-card:hover .press-card__image img {
  transform: scale(1.05);
}

.press-card__source {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.press-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 769px) {
  .press-card__body {
    padding: 1.5rem;
  }
}

.press-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.press-card__desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
  max-width: none;
}

.press-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: gap var(--transition);
}

.press-card:hover .press-card__link {
  gap: 0.7rem;
}

/* --- Reviews --- */
.reviews-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
  .reviews-badges {
    grid-template-columns: 1fr;
  }
}

.reviews-highlight {
  text-align: center;
  margin-bottom: 0;
  padding: 2rem;
  background: var(--pink-light);
  border-radius: 2px;
}

.reviews-highlight__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  display: block;
}

.reviews-highlight__stars {
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0.5rem 0;
  letter-spacing: 0.15em;
}

.reviews-highlight__count {
  font-size: 0.875rem;
  color: var(--gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 641px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.review-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-rose) 0%, var(--accent) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.review-card__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.review-card__service {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--pink-light);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.review-card__text {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark-soft);
  margin-bottom: 1rem;
  max-width: none;
}

.review-card__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Neukunden-Box --- */
.neukunden-box {
  background: linear-gradient(135deg, #d4919a 0%, #b8707a 100%);
  color: #fff !important;
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(212, 145, 154, 0.3);
}

.neukunden-box__label,
.neukunden-box__title,
.neukunden-box__text {
  color: #fff !important;
}

.neukunden-box__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.neukunden-box__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

@media (min-width: 481px) {
  .neukunden-box__title {
    font-size: 1.5rem;
  }
}

.neukunden-box__text {
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* --- Price List on Pink Background --- */
.section--pink .price-list {
  background: transparent;
  padding: 0;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: #d4919a;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: #b8707a;
}

.faq-item summary:hover {
  color: #b8707a;
}

.faq-item summary:hover::after {
  background-color: #b8707a;
}

.faq-item > div {
  padding: 0 0 1.25rem 0;
  color: var(--gray);
  line-height: 1.8;
  animation: fadeIn 0.3s ease;
}

.faq-item > div ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-item > div li {
  margin-bottom: 0.25rem;
}

.faq-item > div p + p {
  margin-top: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Floating CTA Bar --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 0.625rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-cta.is-visible {
  transform: translateY(0);
}

.floating-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.floating-cta__text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  display: none;
}

@media (min-width: 641px) {
  .floating-cta__text {
    display: block;
  }
}

.floating-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  background: linear-gradient(135deg, #d4919a 0%, #b8707a 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s ease;
  white-space: nowrap;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.floating-cta__btn:hover {
  background: linear-gradient(135deg, #b8707a 0%, #a5606a 100%);
  transform: translateY(-1px);
  color: #fff;
}

.floating-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-cta__phone:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.floating-cta__phone svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .floating-cta__phone-text {
    display: none;
  }
}

/* WhatsApp in floating bar */
.floating-cta__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--green-whatsapp);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.floating-cta__wa:hover {
  background-color: #1da851;
  transform: scale(1.08);
  color: #fff;
}

.floating-cta__wa svg {
  width: 20px;
  height: 20px;
}

/* --- Trust Badge (Hero) --- */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray);
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: trustBadgeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes trustBadgeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badge__stars {
  color: var(--rosegold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.trust-badge__sep {
  opacity: 0.4;
  margin: 0 0.25rem;
}

@media (max-width: 480px) {
  .trust-badge {
    flex-direction: column;
    gap: 0.25rem;
  }

  .trust-badge__sep {
    display: none;
  }
}

/* --- Pulse Animation --- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 145, 154, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(212, 145, 154, 0); }
}

.btn--pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* --- Mini CTA (between sections) --- */
.mini-cta {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
}

.mini-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--pink-rose);
}

.mini-cta__text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  max-width: none;
}

.mini-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: gap 0.3s ease, color 0.3s ease;
}

.mini-cta__link:hover {
  gap: 0.7rem;
  color: #b8707a;
}

/* --- Staggered Scroll Animations --- */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.fade-in-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.fade-in-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.fade-in-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }

/* --- Enhanced Image Hover --- */
.content-block__image {
  position: relative;
}

.content-block__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(212, 145, 154, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.content-block__image:hover::after {
  opacity: 1;
}

/* --- Service Cards (Startseite Leistungen) --- */
a.service-card {
  text-decoration: none;
  color: inherit;
}

.service-card {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: none;
  flex: 1;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s ease;
}

.service-card__link:hover {
  gap: 0.6rem;
}

/* --- Trust Items (Warum Beauty By Lenz) --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 769px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.trust-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.trust-item__text {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: none;
}

/* --- Final CTA Section --- */
.final-cta {
  text-align: center;
  padding: 3rem 0;
}

.final-cta__heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

@media (min-width: 769px) {
  .final-cta__heading {
    font-size: 2.25rem;
  }
}

.final-cta__text {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* --- Section Heading (centered) --- */
.section__heading {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .section__heading {
    font-size: 2.25rem;
  }
}

.section__subtext {
  text-align: center;
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Parallax Page Hero --- */
.page-hero--parallax .page-hero__bg img {
  will-change: transform;
  height: 120%;
  object-fit: cover;
}

/* --- Fade-In Scale Animation --- */
.fade-in-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Before/After Comparison Slider --- */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1rem;
  cursor: col-resize;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
}

.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}

.ba-slider__overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.ba-slider__handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.ba-slider__handle::after {
  content: '\2039  \203A';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.6rem;
  z-index: 1;
  white-space: nowrap;
}

.ba-slider__label {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(23, 18, 18, 0.6);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}

.ba-slider__label--before {
  left: 0.75rem;
}

.ba-slider__label--after {
  right: 0.75rem;
}

/* --- Mobile-Specific Fixes --- */

/* Nav CTA button - ensure proper touch target */
.nav__link.btn.btn--primary {
  padding: 10px 20px !important;
  font-size: 13px !important;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
}

/* Before/After grid - stack on mobile */
.ba-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 481px) {
  .ba-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* Trust badges on booking page */
.booking-trust {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

@media (min-width: 641px) {
  .booking-trust {
    gap: 2rem;
  }
}

.booking-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-trust__stars {
  color: #f5a623;
  font-size: 1.1rem;
}

.booking-trust__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.booking-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4919a 0%, #b8707a 100%);
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Form submit button full width */
.form__submit {
  width: 100%;
  min-height: 48px;
}

/* Form char count */
.form__char-count {
  display: block;
  text-align: right;
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-top: 0.25rem;
}

/* Form success message */
.form__success {
  display: none;
  padding: 2rem;
  background: var(--pink-light);
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 1rem;
}

.form__success-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form__success-text {
  color: var(--gray);
}

/* Neukunden box mobile */
@media (max-width: 480px) {
  .neukunden-box {
    padding: 1.25rem 1rem;
  }

  .neukunden-box__title {
    font-size: 1.125rem;
  }
}

/* Footer bottom credit */
.footer__credit {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__credit a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: rgba(255,255,255,0.7);
}

/* --- Price List Enhancements --- */
.price-list {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
}

/* --- Expandable Price Item (accordion in price list) --- */
.price-item--expandable {
  display: block;
  padding: 0;
}

.price-item--expandable > summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 2rem 0.75rem 0;
  gap: 0.5rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

.price-item--expandable > summary::-webkit-details-marker {
  display: none;
}

.price-item--expandable > summary::marker {
  display: none;
}

.price-item--expandable > summary:hover {
  color: var(--accent);
}

.price-item--expandable > summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.price-item--expandable[open] > summary::after {
  transform: translateY(-50%) rotate(180deg);
  background-color: #b8707a;
}

.price-item--expandable > summary:hover::after {
  background-color: #b8707a;
}

@media (min-width: 769px) {
  .price-item--expandable > summary {
    padding: 0.875rem 2rem 0.875rem 0;
    gap: 1rem;
  }
}

/* Align non-expandable items with expandable siblings */
.price-item--expandable ~ .price-item:not(.price-item--expandable) {
  padding-right: 2rem;
}

/* Align all price items on pages with mixed expandable/non-expandable sections */
.price-list--aligned .price-item:not(.price-item--expandable) {
  padding-right: 2rem;
}

.price-item__details {
  padding: 0.25rem 0 1rem 0.25rem;
  animation: fadeIn 0.3s ease;
}

.price-item__details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-item__details li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

.price-item__details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
