/* ============================================================
   zeitlos schön – Stylesheet (Figma-Design)
   ============================================================ */

@import url('https://use.typekit.net/fmm2kyk.css');

@font-face {
  font-family: 'Cinema Sunday';
  src: url('../fonts/cinemasunday-Regular.woff2') format('woff2'),
       url('../fonts/cinemasunday-Regular.woff')  format('woff'),
       url('../fonts/cinemasunday-Regular.woff.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }
strong, b { font-weight: 500; }

/* ── Tokens ── */
:root {
  --bg:       #ffffff;
  --surface:  #e3dddd;   /* Figma: #e3dddd – alle Cards & Footer */
  --dark:     #1d1d1d;   /* Figma: #1d1d1d */
  --text:     #1d1d1d;
  --muted:    #666260;
  --border:   #e3dddd;
  --gold:     #ccab62;   /* Figma: #ccab62 – primärer Button */
  --white:    #ffffff;
  --radius:   20px;
  --max-w:    1440px;
  --card-gap: clamp(8px, 1.9vw, 27px);   /* Seitenabstand der Cards */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Cinema Sunday', Georgia, serif;
  --font-body:    'natom-pro', 'Helvetica Neue', Arial, sans-serif;

  /* Header: 29px dunkler Balken + weißes Nav-Card */
  --header-bar:  29px;
  --header-card: 130px;
  --nav-h:       159px;  /* bar + card */
}

/* ── Base ── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5.35vw, 5rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding-inline: 1.75rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.7rem, 1.14vw, 1rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: normal;
}
.btn--gold:hover { background: #000; color: var(--white); }

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

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn--outline:hover { background: var(--dark); color: var(--white); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding-inline: 2rem;
}
.btn--outline-light:hover { background: var(--white); color: var(--dark); }

/* ── Header – dunkler Balken + weißes Nav-Card ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: var(--header-bar);
}
.header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: calc(var(--header-bar) + var(--radius));
  background: var(--dark);
}

.nav {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, white, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: var(--radius) var(--radius) 0 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-card);
  padding-inline: clamp(1.5rem, 5.35vw, 5rem);
  gap: 1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.5rem);
}
.nav__links--left  { justify-content: flex-start; }
.nav__links--right { justify-content: flex-end; gap: clamp(0.75rem, 1.5vw, 2rem); }

.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.7rem, 1.14vw, 1.02rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__links a:not(.btn):hover,
.nav__links a:not(.btn)[aria-current="page"] { color: var(--gold); }

.nav__logo a {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  width: clamp(140px, 15vw, 200px);
  height: auto;
  display: block;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Overlay ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.mobile-nav.is-open { transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--dark);
}

/* ── Reveal Animations ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
[data-reveal].is-visible   { opacity: 1; transform: translateY(0); }
[data-reveal="fade"]       { transform: none; }
[data-reveal="scale"]      { opacity: 0; transform: scale(0.95); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal="scale"].is-visible { opacity: 1; transform: scale(1); }

[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"] { transition-delay: 0.40s; }

/* ── Hero Card ── */
/* Kein Full-Viewport; abgerundete Card direkt unter dem Header */
.hero {
  margin-inline: var(--card-gap);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: clamp(380px, 43.8vw, 631px);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0.4);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5.35vw, 5rem);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.21vw, 4.69rem); /* 75px at 1440 */
  font-weight: normal;
  color: var(--white);
  line-height: 1.05;
  max-width: 10ch;
  margin-bottom: 1rem;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.39vw, 1.25rem); /* 20px at 1440 */
  color: var(--white);
  max-width: 26ch;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* ── Section Base ── */
.section { padding-block: clamp(3rem, 6vw, 6rem); }
.section--surface {
  background: var(--surface);
  margin-inline: var(--card-gap);
  border-radius: var(--radius);
  padding-inline: clamp(2rem, 5.35vw, 5rem);
  margin-bottom: clamp(1rem, 3vw, 3rem);
}

.section__header {
  text-align: center;
  max-width: 770px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.47vw, 3.125rem); /* 50px at 1440 */
  font-weight: normal;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.39vw, 1.25rem);
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* ── Treatment Cards ── */
.treatment-card {
  margin-inline: var(--card-gap);
  background: var(--surface);
  border: 1px solid var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 45.76vw, 659px);
  margin-bottom: clamp(1rem, 3vw, 3rem);
}

/* Image-Links: nur linke Ecken runden */
.treatment-card__img {
  overflow: hidden;
}
.treatment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: transform 0.7s var(--ease);
  aspect-ratio: 4 / 3;
}
.treatment-card:hover .treatment-card__img img { transform: scale(1.04); }

/* Umgekehrte Cards: Bild rechts */
.treatment-card--reverse {
  direction: rtl;
}
.treatment-card--reverse > * { direction: ltr; }
.treatment-card--reverse .treatment-card__img img {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.treatment-card__content {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
}

.treatment-card__category {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.39vw, 1.25rem);
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.treatment-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.47vw, 3.125rem); /* 50px */
  font-weight: normal;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

/* ── Price Items (Figma-Stil) ── */
/* Name + Preis: Cinema Sunday; Beschreibung: Natom Pro */
.price-list { display: flex; flex-direction: column; gap: 0; }

.price-item {
  border-top: 1px solid rgba(29,29,29,0.15);
  padding-block: clamp(0.75rem, 1.5vw, 1.25rem);
}
.price-item:last-child { border-bottom: 1px solid rgba(29,29,29,0.15); }

.price-item__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.price-item__left {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-item__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.08vw, 1.875rem); /* 30px at 1440 */
  font-weight: normal;
  color: var(--dark);
  line-height: 1;
}

.price-item__meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted);
}

.price-item__price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.08vw, 1.875rem); /* 30px at 1440 */
  font-weight: normal;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-item__desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.39vw, 1.25rem); /* 20px at 1440 */
  color: var(--text);
  line-height: 1.4;
  margin-top: 0.5rem;
}

.treatment-card__cta { margin-top: auto; padding-top: 2rem; }

/* ── Behandlungen Intro ── */
.treatments-intro {
  padding-block: clamp(3rem, 5vw, 5rem);
  text-align: center;
}

/* ── CTA Banner Card ── */
.cta-banner {
  margin-inline: var(--card-gap);
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5.56vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 3rem);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.56vw, 5rem); /* 80px at 1440 */
  font-weight: normal;
  color: var(--dark);
  line-height: 1.08;
}

.cta-banner__text {
  font-size: clamp(0.9rem, 1.39vw, 1.25rem);
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* ── Bio Section ── */
.bio {
  margin-inline: var(--card-gap);
  border: 1px solid var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 41.32vw, 595px);
  margin-bottom: clamp(1rem, 3vw, 3rem);
}

.bio__content {
  padding: clamp(2.5rem, 5.35vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.bio__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.47vw, 3.125rem); /* 50px */
  font-weight: normal;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.bio__qualifier {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.bio__text {
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.bio__text + .bio__text { margin-bottom: 2rem; }
.bio__content .btn { align-self: flex-start; }

.bio__image {
  overflow: hidden;
}
.bio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Footer – Light Card ── */
.footer {
  margin-inline: var(--card-gap);
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: var(--card-gap);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5.35vw, 5rem);
}

.footer__logo {
  display: flex;
  flex-direction: column;
}
.footer__logo-img {
  width: clamp(120px, 12vw, 170px);
  height: auto;
  display: block;
}
.footer__logo p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer__col {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.footer__col strong {
  display: block;
  color: var(--dark);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer__col span { display: block; }
.footer__col a {
  display: block;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--gold); }

/* ── Standort Strip ── */
.location-strip {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.location-strip__text {
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  color: var(--muted);
  line-height: 1.8;
}
.location-strip__text strong { color: var(--dark); }

/* ── Page Hero (Unterseiten) ── */
.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(240px, 30vw, 400px);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  margin-inline: var(--card-gap);
  border-radius: var(--radius);
  margin-bottom: clamp(1rem, 3vw, 3rem);
  background: var(--dark) url('/images/kosmetik-header.jpeg') center / cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0.42);
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(2rem, 5.35vw, 5rem);
  width: 100%;
}
.page-hero__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: normal;
  color: var(--white);
  line-height: 1.1;
  max-width: 18ch;
}
.page-hero__sub {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 1.39vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  line-height: 1.5;
}

/* ── Leistungen Preistabelle ── */
.price-section { margin-bottom: 3rem; }
.price-section__head {
  border-bottom: 2px solid var(--dark);
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}
.price-section__head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.08vw, 1.875rem);
  font-weight: normal;
  color: var(--dark);
}
.price-section__intro {
  font-size: 0.875rem;
  color: var(--muted);
  margin-block: 0.5rem 0.25rem;
  line-height: 1.6;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 0.8rem;
  border-bottom: 1px solid rgba(29,29,29,0.12);
  gap: 1rem;
}
.price-row__info { flex: 1; }
.price-row__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.74vw, 1.5rem);
  font-weight: normal;
  color: var(--dark);
}
.price-row__sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.15rem;
  line-height: 1.45;
}
.price-row__desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.15rem;
  line-height: 1.45;
}
.price-row__note {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-row__price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.74vw, 1.5rem);
  font-weight: normal;
  color: var(--dark);
  white-space: nowrap;
}

/* ── Feature Highlight ── */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.feature-highlight__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.feature-highlight__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.feature-highlight__subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.feature-highlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.47vw, 3.125rem);
  font-weight: normal;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.feature-highlight__text {
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.feature-highlight__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.feature-highlight__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}
.feature-highlight__list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.75em;
}

/* ── Kontakt ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info__item { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-info__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-info__value {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.65;
}
.contact-info__value a { transition: color 0.25s var(--ease); }
.contact-info__value a:hover { color: var(--gold); }

/* ── Kontaktformular ── */
.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666260' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--dark); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--dark);
  flex-shrink: 0;
}
.form-check label { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.form-check a { color: var(--text); text-decoration: underline; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }

.msg { padding: 1rem 1.25rem; border-radius: 8px; font-size: 0.9375rem; margin-bottom: 1.5rem; }
.msg--success { background: #d6eddd; color: #1a4a24; }
.msg--error   { background: #fde8e8; color: #5c1a1a; }

/* ── Prose (Impressum / Datenschutz) ── */
.prose { max-width: 760px; margin-inline: auto; }
.prose h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: normal; color: var(--dark); margin-bottom: 2rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: normal; color: var(--dark); margin-top: 2.5rem; margin-bottom: 0.75rem; }
.prose h3 { font-size: 1.05rem; font-weight: 500; color: var(--dark); margin-top: 1.75rem; margin-bottom: 0.5rem; }
.prose p  { color: var(--text); line-height: 1.78; margin-bottom: 1rem; }
.prose a  { color: var(--dark); text-decoration: underline; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: var(--text); line-height: 1.7; margin-bottom: 0.3rem; }

/* ── Divider ── */
.divider { width: 3rem; height: 2px; background: var(--gold); margin-block: 1.5rem; }

/* ── Weitere Leistungen ── */
.add-services-list { columns: 2; column-gap: 2rem; }
.add-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.5rem;
  break-inside: avoid;
}
.add-services-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.6em;
}

/* ── Galerie ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.gallery-grid__item:first-child { grid-row: span 2; aspect-ratio: unset; }
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-grid__item:hover img { transform: scale(1.04); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root {
    --header-bar:  20px;
    --header-card: 80px;
    --nav-h:       100px;
  }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav { grid-template-columns: 1fr auto auto; }
  .nav__burger span { background: var(--dark); }

  .treatment-card,
  .treatment-card--reverse { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .treatment-card__img { aspect-ratio: 4/3; min-height: unset; order: -1; }
  .treatment-card__img img { border-radius: var(--radius) var(--radius) 0 0 !important; aspect-ratio: 1 / 1;}

  .cta-banner { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; }
  .bio__image { min-height: unset; order: -1; }
  .feature-highlight { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid__item:first-child { grid-row: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; text-align: left; }
  .footer__logo { grid-column: 1 / -1; text-align: center; align-items: center; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .add-services-list { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .footer__col { align-items: center; }
  .footer__logo { align-items: center; }

  /* Preisliste auf Mobil: 2-col auf 1-col */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
