/* Vertikale Scrollbar nur anzeigen, wenn nötig */
html, body {
  overflow-y: auto;
}

/* ========================================
  HAUTnah Kosmetik – Main Stylesheet 2026
  (c) 2026
  ======================================== */

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ---- 2. CSS Variables ---- */
:root {
  --gold:        #c9a070;
  --gold-dark:   #a67c52;
  --gold-light:  #e8d5b7;
  --gold-xlight: #f8f0e3;
  --rose:        #c9959b;
  --rose-light:  #f2e3e5;
  --dark:        #1c1917;
  --charcoal:    #2d2926;
  --cream:       #faf7f2;
  --off-white:   #f5f0e8;
  --white:       #ffffff;
  --text:        #3a3634;
  --text-muted:  #7a7573;
  --border:      #e8e0d8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --container:     1200px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);

  --radius:    4px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --shadow-hover:0 30px 80px rgba(0,0,0,0.15);

  --transition:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height:          80px;
  --header-height-scrolled: 65px;
}

/* ---- 3. Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--charcoal);
}

/* ---- 4. Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---- 5. Section helpers ---- */
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section__title em { font-style: italic; color: var(--gold); }

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section__header { text-align: center; margin-bottom: 4rem; }

/* ---- 6. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,160,112,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
  backdrop-filter: blur(10px);
}
.btn--ghost-white:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-nav {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
}
.btn--outline-nav:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--full { width: 100%; }

/* ---- 7. Navigation ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.header--scrolled {
  background: rgba(28,25,23,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav { width: 100%; background-color: var(--charcoal); }

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-scrolled);
  transition: height var(--transition);
}
.header--scrolled .nav__container { height: var(--header-height-scrolled); }

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.nav__logo-haut {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav__logo-nah {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-left: 0.35rem;
  align-self: flex-end;
  padding-bottom: 0.15em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.75rem;
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.5rem);
  height: 1px;
  background: var(--gold);
  transition: transform var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--gold-light); }
.nav__link:hover::after,
.nav__link.active::after { transform: translateX(-50%) scaleX(1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 0;
}
.nav__toggle-bar {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.active .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active .nav__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- 8. Hero ---- */
.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  background-image: url('../img/hero.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem var(--container-pad);
  max-width: 820px;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem var(--container-pad);
  max-width: 820px;
}

.hero__media {
  display: none;
}
.hero__parallax {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28,25,23,0.50) 0%,
    rgba(45,41,38,0.32) 38%,
    rgba(45,41,38,0.22) 62%,
    rgba(28,25,23,0.58) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem var(--container-pad);
  max-width: 820px;
}
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero__title-line { display: block; }
.hero__title-accent { color: var(--gold); font-style: italic; }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.0rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  cursor: pointer;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
}
.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ---- 9. Quote Section ---- */
.quote-section {
  position: relative;
  padding: 0 0 8rem 0;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}
.quote-section__parallax {
  position: absolute;
  inset: -30% 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
  z-index: 0;
}
.quote-card {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.quote-card__mark {
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1rem;
  display: block;
}
.quote-card__text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.quote-card__author {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ---- 10. About Section ---- */
.about {
  padding: 4rem 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__image-wrap { position: relative; }
.about__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.about__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about__image-frame:hover .about__image { transform: scale(1.04); }

.about__badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
}
.about__badge-text {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.about__badge-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.about__content { padding: 1rem 0; }
.about__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about__stat { text-align: center; }
.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.about__stat-plus {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}
.about__stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ---- 11. Services Section ---- */
.services {
  padding: 4rem 0;
  background: var(--off-white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
}

.service-card__image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  /* entfernt Flexbox, damit Bild am oberen Rand ausgerichtet ist */
}
.service-card__image {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card__image { transform: scale(1.08); }

.service-card__image--pmu {
  background-image: linear-gradient(135deg, rgba(201, 149, 155, 0.55) 0%, rgba(201, 160, 112, 0.55) 100%), url("../img/gallery-01.jpeg");
  background-position: center -50px;
  background-size: cover;
}
.service-card__image--laser {
  background:
    linear-gradient(135deg, rgba(45,41,38,0.65) 0%, rgba(201,160,112,0.45) 100%),
    url('../img/gallery-07.jpeg') center/cover;
}

.service-card__overlay {
  position: absolute; inset: 0;
  background: rgba(28,25,23,0.55);
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-card__overlay { opacity: 1; }

.service-card__body { padding: 2rem; }
.service-card__tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-xlight);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.service-card__title {
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.service-card__text {
  color: var(--text-muted);
  font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 1rem;
}
.service-card__list { margin-bottom: 1.25rem; }
.service-card__list li {
  font-size: 0.9rem; color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}
.service-card__list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold); font-size: 0.8rem;
}
.service-card__price-hint { font-size: 1rem; color: var(--text); }
.service-card__price-hint strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-dark); font-weight: 700;
}

/* ---- 12. Parallax Banner ---- */
.banner-parallax {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.banner-parallax__bg {
  position: absolute;
  inset: -30% 0;
  background:
    linear-gradient(135deg, rgba(28,25,23,0.85) 0%, rgba(45,41,38,0.75) 100%),
    url('../img/evi-portrait.jpg') center/cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.banner-parallax__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,160,112,0.12) 0%, transparent 100%);
  z-index: 1;
}
.banner-parallax__content { position: relative; z-index: 2; }
.banner-parallax__eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
}
.banner-parallax__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem;
}
.banner-parallax__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem; margin-bottom: 2.5rem;
}
.banner-parallax__actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

/* ---- 13. Gallery ---- */
.gallery {
  padding: 2rem 0;
  background: var(--cream);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }

.gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.08); }

.gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.5rem 1rem 0.75rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery__item:hover .gallery__caption { transform: translateY(0); }

/* ---- 14. Contact CTA ---- */
.contact-cta {
  padding: 8rem 0;
  background: var(--off-white);
}
.contact-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-cta__address {
  margin: 1.5rem 0;
  color: var(--text-muted);
  line-height: 1.8;
}
.contact-cta__links { margin-bottom: 2rem; }

.contact-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0;
  color: var(--text); font-size: 1rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.contact-link:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-light);
}
.contact-link__icon {
  font-size: 1.1rem; width: 1.5rem;
  text-align: center;
}
.contact-cta__social { display: flex; gap: 1rem; }

.social-link {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
  transition: var(--transition);
}
.social-link:hover { color: var(--gold-dark); border-bottom-color: var(--gold); }

.contact-cta__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-cta__card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.contact-cta__card > p {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.contact-cta__buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-cta__gift {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-cta__gift-icon { font-size: 2rem; }
.contact-cta__gift p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* ---- 15. Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem;
}
.footer__logo em { font-style: italic; color: var(--gold); }
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.25rem;
}
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__address {
  font-size: 0.9rem; line-height: 1.9;
  color: rgba(255,255,255,0.5);
}
.footer__address a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__address a:hover { color: var(--gold-light); }
.footer__bottom {
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  /* © 2026 HAUTnah Kosmetik */
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 1rem; }
.footer__legal a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--gold-light); }

/* ---- 16. Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  height: 52vh; min-height: 360px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-bottom: 4rem;
}
.page-hero__bg {
  position: absolute;
  inset: -30% 0;
  background:
    linear-gradient(to bottom, rgba(28,25,23,0.55) 0%, rgba(28,25,23,0.78) 100%),
    url('../img/evi-portrait.jpg') center/cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.page-hero__content { position: relative; z-index: 1; color: var(--white); }
.page-hero__eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.75rem;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700;
  color: var(--white); line-height: 1.1;
}

/* ---- 17. Treatments Page ---- */
.treatments {
  padding: 8rem 0;
  background: var(--cream);
}
.treatments__section { margin-bottom: 6rem; }
.treatments__section:last-child { margin-bottom: 0; }

.treatments__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.treatments__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
}
.treatments__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% calc(15% + 0px);
  transition: transform 0.8s ease;
}
.treatments__image:hover img { transform: scale(1.04); }

.treatments__text .section__title { text-align: left; }
.treatments__desc {
  color: var(--text-muted);
  font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem;
}
.treatments__note {
  font-size: 0.88rem; color: var(--gold-dark);
  font-style: italic; margin-bottom: 2rem;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.price-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 3px solid var(--gold-light);
}
.price-item:hover {
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.price-item__name {
  font-size: 0.9rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.2rem;
}
.price-item__note { font-size: 0.75rem; color: var(--text-muted); }
.price-item__right { text-align: right; flex-shrink: 0; }
.price-item__price {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold-dark);
}
.price-item__included { font-size: 0.7rem; color: var(--text-muted); display: block; }

.treatments__divider { height: 1px; background: var(--border); margin: 5rem 0; }

/* ---- 18. Contact Page ---- */
.contact-page { padding: 8rem 0; background: var(--cream); }
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: start;
}

.contact-info__item {
  display: flex; gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info__icon {
  font-size: 1.1rem;
  width: 2.5rem; height: 2.5rem;
  background: var(--gold-xlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-dark);
}
.contact-info__label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.25rem;
}
.contact-info__value { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.contact-info__value a { color: var(--text); transition: color var(--transition); }
.contact-info__value a:hover { color: var(--gold-dark); }

.contact-social {
  display: flex; gap: 0.75rem;
  flex-wrap: wrap; margin-top: 2rem;
}
.contact-social__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px; padding: 0.5rem 1rem;
  transition: var(--transition);
}
.contact-social__link:hover {
  background: var(--gold); color: var(--white);
  border-color: var(--gold); transform: translateY(-2px);
}

/* ---- 19. Gift Section ---- */
.gift-section { background: var(--off-white); padding: 6rem 0; }
.gift-card {
  max-width: 600px; margin: 0 auto; text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.gift-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
}
.gift-card__icon { font-size: 3rem; margin-bottom: 1rem; }
.gift-card h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.gift-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* ---- 20. Contact Image ---- */
.contact-image-section {
  background: var(--cream);
  padding: 4rem 0;
}

.contact-image-frame {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(145deg, var(--off-white), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  display: block;
  width: 100%;
  height: clamp(300px, 48vw, 520px);
  object-fit: contain;
  object-position: center;
}

.contact-map-section {
  background: var(--off-white);
  padding: 5rem 0;
}

.contact-map-frame {
  max-width: 980px;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-map-iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.contact-map-actions {
  text-align: center;
  margin-top: 1.5rem;
}

/* ---- 21. Contact Form ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.contact-form > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

.form__group { margin-bottom: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.4rem;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,160,112,0.15);
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(0,0,0,0.28); }
.form__textarea { resize: vertical; min-height: 130px; }
.form__checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem; color: var(--text-muted); cursor: pointer;
}
.form__checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--gold); cursor: pointer;
}
.form__submit { margin-top: 1rem; }
.form__note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }

/* ---- 22. WhatsApp Float ---- */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

/* ---- 23. Responsive ---- */
@media (max-width: 1024px) {
  .about__grid,
  .contact-cta__grid,
  .contact-page__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { bottom: 1rem; right: 1rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .treatments__header { grid-template-columns: 1fr; }
  /* entfernt */
  /* entfernt */
}

@media (max-width: 768px) {
  :root { --header-height: 65px; }

  .nav__toggle { display: flex; z-index: 1000; }
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 320px);
    background: var(--dark);
    flex-direction: column; align-items: flex-start;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__item { width: 100%; }
  .nav__link {
    display: block; padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .nav__link::after { display: none; }
  .nav__item--cta { margin-top: 1rem; width: 100%; }
  .nav__item--cta .btn { width: 100%; justify-content: center; }

  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .price-list { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .hero__parallax,
  .banner-parallax__bg,
  .page-hero__bg,
  .quote-section__parallax { inset: 0; }

  .hero,
  .quote-section {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
  }

  .hero__content,
  .quote-card {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero,
  .quote-section {
    display: block;
  }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .hero__actions,
  .banner-parallax__actions { flex-direction: column; align-items: center; }
  .about__stat-number { font-size: 1.75rem; }
  .contact-cta__card { padding: 1.5rem; }
}

.gallery__img.top {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% calc(10% + 0px);
  transition: transform 0.7s ease;
}

.gallery__img.down {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% calc(90% + 0px);
  transition: transform 0.7s ease;
}

.form__checkbox {
   flex-direction: column;
}