/* ============================================================
   Jelena's Beauty Lounge — Home Studio Leiblfing
   Sage / Cream / Gold — cozy editorial one-pager
   ============================================================ */

/* ---------- self-hosted fonts (DSGVO: keine Google-Server) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/great-vibes-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format("woff2");
}

:root {
  /* Palette aus dem Hero-Foto: warmes Holz, Kerzenlicht, dunkles Olivgrün, Creme */
  --sage: #e7dcc4;
  --sage-soft: #f1ead9;
  --sage-deep: #a2854f;
  --olive: #4c5f3b;
  --olive-dark: #3c4b30;
  --cream: #f7f3ea;
  --cream-deep: #efe8da;
  --blush: #ece0d4;
  --ink: #3b4437;
  --muted: #6b7263;
  --gold: #b3945f;
  --white: #ffffff;
  --radius-arch: 999px 999px 0 0;
  --shadow-soft: 0 18px 50px -18px rgba(60, 75, 48, 0.25);
  --font-head: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 400; color: var(--ink); }

.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  display: block;
  margin-bottom: 0.6rem;
  transform: rotate(-2deg);
}

.h-display {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.22;
  color: var(--olive-dark);
}

.h-section {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--olive-dark);
}

.lead { color: var(--muted); max-width: 62ch; }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 400;
  margin-bottom: 0.9rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-dark { background: var(--olive); color: var(--cream); }
.btn-dark:hover { background: var(--olive-dark); transform: translateY(-2px); }

.btn-ghost { border-color: var(--olive); color: var(--olive); background: transparent; }
.btn-ghost:hover { background: var(--olive); color: var(--cream); }

.btn-wa { background: var(--olive-dark); color: var(--cream); }
.btn-wa:hover { background: #2e3a25; transform: translateY(-2px); }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 95, 59, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand img { width: 58px; height: 58px; }

.brand-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--olive-dark);
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.main-nav { display: flex; align-items: center; gap: 1.8rem; }

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.main-nav a:hover { color: var(--sage-deep); border-color: var(--sage-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--olive-dark);
  color: var(--cream) !important;
  padding: 0.6rem 1.3rem !important;
  border-bottom: none !important;
  border-radius: 999px;
  transition: background 0.25s;
}
.nav-cta:hover { background: #2e3a25; }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--olive-dark);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- hero: Studio-Foto in voller Größe, unbeschnitten ---------- */
.hero { position: relative; overflow: hidden; background: var(--sage-soft); }

.hero-media { position: relative; overflow: hidden; }
.hero-media img { display: block; width: 100%; height: auto; }

/* Verlauf für Textlesbarkeit – nur auf dem Desktop-Overlay sichtbar */
.hero-scrim {
  display: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 30, 20, 0.72) 0%, rgba(24, 30, 20, 0.45) 36%, rgba(24, 30, 20, 0) 62%),
    linear-gradient(0deg, rgba(24, 30, 20, 0.35) 0%, rgba(24, 30, 20, 0) 30%);
  pointer-events: none;
}

/* Mobil/Tablet: Text unter dem Bild */
.hero-copy-wrap { padding: clamp(2.2rem, 5vw, 3rem) 0 clamp(2.6rem, 6vw, 3.4rem); }
.hero-copy { max-width: 560px; margin: 0 auto; text-align: center; }
.hero-copy p { margin: 1.4rem 0 1.9rem; color: var(--ink); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

.hero-meta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-meta svg { width: 15px; height: 15px; color: var(--gold); }

/* Desktop: Text liegt links über dem vollflächigen Foto */
@media (min-width: 981px) {
  .hero { background: none; }
  .hero-scrim { display: block; }
  .hero-copy-wrap { position: absolute; inset: 0; display: flex; align-items: center; padding: 0; }
  .hero-copy { max-width: 520px; margin: 0; text-align: left; }
  .hero-copy .h-display { color: var(--cream); }
  .hero-copy p { color: rgba(247, 243, 234, 0.92); }
  .hero-ctas, .hero-meta { justify-content: flex-start; }
  .hero-meta { color: rgba(247, 243, 234, 0.85); }
  .hero .btn-ghost { border-color: rgba(247, 243, 234, 0.85); color: var(--cream); }
  .hero .btn-ghost:hover { background: var(--cream); color: var(--olive-dark); border-color: var(--cream); }
}

/* ---------- quick tiles ---------- */
.tiles { padding: clamp(2rem, 5vw, 3.4rem) 0 0; }

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.tile {
  text-align: center;
  text-decoration: none;
  padding: 1.6rem 1rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.tile:nth-child(1) { background: var(--blush); }
.tile:nth-child(2) { background: var(--sage-soft); }
.tile:nth-child(3) { background: var(--cream-deep); }

.tile small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.tile strong {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

/* ---------- intro ---------- */
.intro { padding: clamp(3.5rem, 8vw, 6rem) 0; text-align: center; }
.intro .h-section { max-width: 21ch; margin: 0 auto 1.4rem; }
.intro p { max-width: 74ch; margin: 0 auto; color: var(--muted); }
.intro p + p { margin-top: 1rem; }

/* ---------- treatments ---------- */
.treatments { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--sage-soft); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); }
.section-head p { color: var(--muted); margin-top: 1rem; }

.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.treat-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 34px -18px rgba(60, 75, 48, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.treat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.treat-card figure { aspect-ratio: 4 / 3; overflow: hidden; }
.treat-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.treat-card:hover figure img { transform: scale(1.05); }

.treat-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.treat-body h3 {
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.treat-body p { font-size: 0.95rem; color: var(--muted); flex: 1; }

.treat-link {
  margin-top: 1.2rem;
  align-self: flex-start;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
  transition: color 0.25s;
}
.treat-link:hover { color: var(--gold); }

.treat-note {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 2.8rem);
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- focus / treatment details ---------- */
.focus { padding: clamp(3.5rem, 8vw, 6rem) 0; overflow: hidden; }
.focus--deep { background: var(--cream-deep); }
.focus--sage { background: var(--sage-soft); }

.focus-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.focus-copy--center { max-width: 720px; margin: 0 auto; }

.focus-inner--alt .focus-copy { order: 2; }
.focus-inner--alt .focus-figure { order: 1; }

.focus-copy p { color: var(--muted); margin: 1.3rem 0; }

.focus-lead {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--olive) !important;
}

.focus-close {
  font-style: italic;
  color: var(--olive) !important;
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
}

.focus-figure { position: relative; margin: 0; justify-self: center; width: min(440px, 100%); }
.focus-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 3.9;
  object-fit: cover;
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow-soft);
}
.focus-figure figcaption {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.focus-figure--card img { border-radius: 24px; aspect-ratio: 3 / 4; }

/* Vorher/Nachher-Bilder niemals beschneiden – immer vollständig zeigen */
.focus-figure--full { width: min(380px, 100%); }
.focus-figure--full img {
  aspect-ratio: auto;
  height: auto;
  object-fit: unset;
  border-radius: 24px;
}

.focus-list { list-style: none; margin: 1.5rem 0 2rem; }
.focus-list li {
  position: relative;
  padding: 0.42rem 0 0.42rem 2rem;
  color: var(--ink);
}
.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.ba-item { position: relative; }
.ba-item img {
  width: 100%;
  height: auto; /* schlägt das height-Attribut, damit aspect-ratio greift */
  aspect-ratio: 3 / 4.6;
  object-fit: cover;
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow-soft);
}
.ba-item:nth-child(2) { margin-top: 2.6rem; }

.ba-item figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- studio ---------- */
.studio { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--blush); }

.studio-media {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

/* Das Foto-Raster bestimmt die Höhe; das Video füllt seine Spalte komplett aus */
.studio-video { position: relative; margin: 0; }
.studio-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px 999px 24px 24px;
  box-shadow: var(--shadow-soft);
  background: #2e3628;
}
.studio-video figcaption {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  background: rgba(60, 75, 48, 0.55);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.studio-grid a { overflow: hidden; display: block; }
.studio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.studio-grid a:hover img { transform: scale(1.06); }

.studio-grid a:nth-child(1) { grid-column: span 2; }
.studio-grid a:nth-child(4) { grid-column: span 2; }

/* ---------- about ---------- */
.about { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.about-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.about-figure { position: relative; }
.about-figure img {
  width: 100%;
  height: auto; /* schlägt das height-Attribut, damit aspect-ratio greift */
  border-radius: var(--radius-arch);
  aspect-ratio: 3 / 3.7;
  object-fit: cover;
  object-position: 50% 22%; /* Gesicht bleibt beim Beschnitt im Bogen sichtbar */
  box-shadow: var(--shadow-soft);
}
.about-figure::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 92%;
  height: 92%;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-arch);
  opacity: 0.5;
  z-index: -1;
}

.about-copy p { color: var(--muted); margin: 1.3rem 0; }

.about-lead {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--olive) !important;
}

.about-sign {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--gold) !important;
  margin-top: 1.6rem;
}

/* ---------- certificate ---------- */
.cert { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--cream-deep); overflow: hidden; }

.cert-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.cert-inner > * { min-width: 0; }
.cert-copy .h-section { overflow-wrap: break-word; }
.cert-copy p { color: var(--muted); margin: 1.3rem 0; }
.cert-copy strong { font-weight: 400; color: var(--olive-dark); }
.cert-copy .btn { margin-top: 0.4rem; }

/* rundes EMA-Medaillon – persönlicher Qualifikationsnachweis, kein Zertifikatsangebot */
.cert-medal { justify-self: center; }

.cert-medal-ring {
  width: min(360px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fffdf9;
  border: 1px solid #c9ab72;
  outline: 8px solid #fffdf9;
  box-shadow:
    0 0 0 9px #c9ab72,
    0 26px 60px -22px rgba(60, 75, 48, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  color: #b3945f;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cert-medal:hover .cert-medal-ring { transform: scale(1.03) rotate(1.5deg); }

.cert-medal-ring svg { width: 96px; height: 72px; }
.cert-ema {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 30px;
  fill: #b3945f;
  letter-spacing: 0.02em;
}

.cert-medal-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  line-height: 1.2;
  color: #695d43;
}

.cert-medal-sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b3945f;
}

/* ---------- faq ---------- */
.faq { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--sage-soft); }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  margin-bottom: 0.9rem;
  box-shadow: 0 8px 26px -16px rgba(60, 75, 48, 0.25);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3.2rem 1.15rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1.22rem;
  color: var(--olive-dark);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-a { padding: 0 1.5rem 1.3rem; color: var(--muted); font-size: 0.97rem; }

/* ---------- contact ---------- */
.contact { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(76, 95, 59, 0.14);
}
.contact-item svg { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 0.2rem; }
.contact-item strong {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.25rem;
}
.contact-item a { color: var(--ink); text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

.contact-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }

.map-wrap {
  grid-column: 1 / -1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
  margin-top: clamp(1rem, 3vw, 2rem);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: sepia(0.18) saturate(0.85); }

/* ---------- contact form ---------- */
.contact-form {
  background: var(--white);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-form .form-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field { margin-bottom: 1.1rem; }

.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(76, 95, 59, 0.18);
  border-radius: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234c5f3b' stroke-width='1.6'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}

.form-field textarea { min-height: 130px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(162, 133, 79, 0.2);
}

.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.4rem 0 1.3rem;
}
.form-consent input {
  margin-top: 0.28rem;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--olive);
}
.form-consent a { color: var(--olive); }

/* Honeypot: für Menschen unsichtbar */
.hp-field { position: absolute; left: -6000px; top: auto; height: 1px; overflow: hidden; }

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.93rem;
}
.form-status.ok { display: block; background: var(--sage-soft); color: var(--olive-dark); border-left: 3px solid var(--sage-deep); }
.form-status.err { display: block; background: #f6e4dc; color: #7a4632; border-left: 3px solid #b3603f; }

.btn[disabled] { opacity: 0.6; cursor: wait; transform: none !important; }

/* ---------- map consent (DSGVO two-click) ---------- */
.map-wrap { position: relative; background: var(--sage-soft); }

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem clamp(1.5rem, 5vw, 3.5rem);
  background: var(--sage-soft);
  z-index: 2;
}
.map-consent svg { width: 42px; height: 42px; color: var(--sage-deep); }
.map-consent p { font-size: 0.9rem; color: var(--muted); max-width: 42ch; }
.map-consent .map-hint { font-size: 0.78rem; }
.map-consent .map-hint a { color: var(--olive); }

/* ---------- Vorher/Nachher-Vergleich (Lymph Sculpting) ---------- */
.compare-section {
  background: var(--olive-dark);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.compare-section .script { color: var(--gold); }
.compare-section .h-section { color: var(--cream); }
.compare-section > .container > p {
  color: rgba(247, 243, 234, 0.8);
  max-width: 58ch;
  margin: 1rem auto 2.4rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.compare-item { position: relative; margin: 0; }
.compare-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 24px 55px -22px rgba(0, 0, 0, 0.55);
}
.compare-item figcaption {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.compare-item--vorher figcaption { background: rgba(247, 243, 234, 0.88); color: var(--olive-dark); }
.compare-item--nachher figcaption { background: var(--gold); color: #fff; }

.compare-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(247, 243, 234, 0.06);
}
.compare-arrow svg { width: 22px; height: 22px; }

.compare-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.6);
}

@media (max-width: 760px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-arrow { margin: 0 auto; transform: rotate(90deg); }
}

/* ---------- Unterseiten: Seitenkopf, weitere Behandlungen, CTA-Band ---------- */
.page-hero {
  background: var(--sage-soft);
  padding: clamp(2.4rem, 6vw, 3.8rem) 0 clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
}
.page-hero .kicker { margin-bottom: 0.7rem; }
.page-hero h1 { max-width: 24ch; margin: 0 auto; }
.page-hero-lead {
  margin: 1rem auto 0;
  max-width: 60ch;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--olive);
}

.other-treats { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.other-treats-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.6rem, 4vw, 2.4rem);
}
.other-treats-note { text-align: center; margin-top: 1.8rem; font-size: 0.95rem; }
.other-treats-note a { color: var(--olive); }

.cta-band {
  background: var(--olive-dark);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  text-align: center;
}
.cta-band .script { color: var(--gold); }
.cta-band .h-section { color: var(--cream); }
.cta-band p { color: rgba(247, 243, 234, 0.85); max-width: 56ch; margin: 1.1rem auto 1.8rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.cta-band .btn-ghost { border-color: rgba(247, 243, 234, 0.7); color: var(--cream); }
.cta-band .btn-ghost:hover { background: var(--cream); color: var(--olive-dark); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--olive-dark);
  color: rgba(247, 243, 234, 0.85);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.95rem; }
.footer-col a { color: rgba(247, 243, 234, 0.85); text-decoration: none; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }

.footer-col.right { text-align: right; }

.footer-brand { text-align: center; }
.footer-brand img { width: 130px; height: 130px; margin: 0 auto 1rem; }
.footer-brand .tagline {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold);
}

.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(247, 243, 234, 0.14);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(247, 243, 234, 0.55);
}
.footer-bottom a { color: rgba(247, 243, 234, 0.7); text-decoration: none; margin-left: 1.2rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4c8c4a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s;
}
.wa-float:hover { transform: scale(1.08); background: #3f753d; }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

.wa-float .wa-pulse {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #4c8c4a;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Kino-Auftakt im Hero ---------- */
/* 1. Das Foto "erwacht": dunkel & nah, dann hellt es auf und fährt zurück */
@keyframes hero-cine {
  0%   { transform: scale(1.14); filter: brightness(0.45) saturate(0.85); }
  100% { transform: scale(1); filter: brightness(1) saturate(1); }
}
/* 2. Danach: kaum merkliche, endlose Kamerafahrt */
@keyframes hero-drift {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}
.hero-media img {
  animation:
    hero-cine 2.6s cubic-bezier(0.22, 0.61, 0.36, 1) both,
    hero-drift 16s 2.6s ease-in-out infinite alternate;
}

/* 3. Headline-Wörter steigen nacheinander aus der Unschärfe auf */
.hero-copy .h-display .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  animation: word-in 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: calc(0.6s + var(--wi) * 0.13s);
}
@keyframes word-in {
  to { opacity: 1; transform: none; filter: none; }
}

/* 4. Restliche Hero-Elemente folgen gestaffelt */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-copy .script { opacity: 0; animation: rise-in 0.9s 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-copy p        { opacity: 0; animation: rise-in 0.9s 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-copy .hero-ctas { opacity: 0; animation: rise-in 0.9s 1.75s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-copy .hero-meta { opacity: 0; animation: rise-in 0.9s 2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }

/* 5. Kerzenlicht-Bokeh über dem Foto */
.hero-bokeh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

@keyframes script-in {
  from { opacity: 0; transform: rotate(-2deg) translateY(10px); }
  to   { opacity: 1; transform: rotate(-2deg) translateY(0); }
}
.visible .script, .hero-copy.visible .script { animation: script-in 1s 0.15s cubic-bezier(0.22, 0.61, 0.36, 1) both; }

/* FAQ-Antworten sanft einblenden */
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq-item[open] .faq-a { animation: faq-in 0.45s ease both; }

/* Header bekommt beim Scrollen einen feinen Schatten */
.site-header { transition: box-shadow 0.35s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(60, 75, 48, 0.35); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img,
  .visible .script,
  .hero-copy.visible .script,
  .faq-item[open] .faq-a,
  .wa-float .wa-pulse { animation: none; }
  .hero-copy .h-display .w,
  .hero-copy .script,
  .hero-copy p,
  .hero-copy .hero-ctas,
  .hero-copy .hero-meta { animation: none; opacity: 1; transform: none; filter: none; }
  .hero-bokeh { display: none; }
  .treat-card, .tile, .treat-card figure img, .studio-grid img { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-inner, .about-inner, .contact-inner, .cert-inner { grid-template-columns: 1fr; }
  .about-figure { max-width: 440px; margin: 0 auto; }
  .studio-media { grid-template-columns: 1fr; }
  .studio-video { max-width: 400px; margin: 0 auto; width: 100%; aspect-ratio: 9 / 16; }
  .studio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .studio-grid a:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col.right { text-align: center; }
  .footer-brand { order: -1; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 74px;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(76, 95, 59, 0.12);
    padding: 0.6rem 0 1.2rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 0; }
  .nav-toggle { display: block; }
  .nav-cta { margin-top: 0.6rem; }
  .tiles-grid { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: 1fr; }
  .ba-item:nth-child(2) { margin-top: 1.8rem; }
  .map-wrap, .map-wrap iframe { min-height: 340px; }
}
