/* =============================================================================
   SEVE AESTHETICS - Laser-Haarentfernung Landingpage
   Redesign im Stil von jessica.mauvestudio.co (Meta-Ads, conversion first)
   Look:  Rethink Sans ExtraBold (Uppercase-Display) . warmes Off-White + Greige
          . fast schwarzer Text . Pill-Buttons (Outline + Solid) . Ghost-Watermarks
          . Vollflaechige Fotografie . asymmetrische Bild-Collagen
   Theme: Light (bewusst ein Modus - Page Theme Lock)
   ========================================================================== */

@import url("../assets/fonts/fonts.css");

/* ----------------------------------------------------------------- tokens */
:root {
  --base:      #FCFBFA;   /* warmes Off-White (Haupt-Canvas) */
  --greige:    #EBE7E0;   /* warme Putty-Baender */
  --greige-2:  #E3DED4;   /* etwas tiefer (Collage / Hover) */
  --card:      #FFFFFF;

  --ink:       #111111;   /* Text / Buttons / Linien */
  --ink-2:     #3A3733;
  --muted:     #726B60;   /* Fliesstext gedaempft */
  --line:      rgba(17,17,17,.14);
  --line-soft: rgba(17,17,17,.08);

  --wa:        #1FA855;    /* WhatsApp-Gruen (nur Icon) */

  --r-pill: 999px;
  --r-card: 4px;          /* Karten fast rechtwinklig (editorial) */

  --sh-soft: 0 20px 50px rgba(17,17,17,.10);
  --sh-lift: 0 30px 70px rgba(17,17,17,.16);

  --maxw:   1280px;
  --maxw-narrow: 820px;
  --gutter: clamp(20px, 5vw, 60px);

  --ease: cubic-bezier(.2,.7,.2,1);

  --disp: "Rethink Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ----------------------------------------------------------------- reset  */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--disp);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font-family: inherit; }
::selection { background: var(--ink); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ----------------------------------------------------------------- type   */
h1, h2, h3 {
  font-family: var(--disp);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .45em;
}
.display { text-transform: uppercase; }
.eyebrow {
  font-family: var(--disp);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.4rem;
  display: block;
}
.eyebrow.muted { color: var(--muted); }
.eyebrow.center { text-align: center; }

p { margin: 0 0 1rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 54ch; line-height: 1.6; font-weight: 500; }
.muted { color: var(--muted); }
strong { font-weight: 700; color: var(--ink); }

/* Display-Groessen (uppercase, sehr fett, eng) */
.h1 { font-size: clamp(2rem, 3.8vw, 3.5rem); }
.h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h3 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.h4 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

/* ----------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--greige { background: var(--greige); }
.section--ink { background: var(--ink); color: #EDE9E3; }
.section-head { max-width: 62ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: .6rem; }
.section-head.center .lead { margin-inline: auto; }

/* Ghost-Watermark (grosse, blasse Hintergrund-Typo) */
.ghost {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3rem, 11vw, 10rem); line-height: 1; letter-spacing: -0.03em;
  color: rgba(255,255,255,.55); white-space: nowrap; z-index: 0; max-width: 96vw; overflow: hidden;
  pointer-events: none; user-select: none;
}
.section--ink .ghost { color: rgba(255,255,255,.06); }
.section .wrap { position: relative; z-index: 1; }
@media (max-width: 720px) { .ghost { font-size: clamp(3.4rem, 22vw, 8rem); } }

/* reveal on scroll */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal:not(.in) { opacity: 0; transform: translateY(28px); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1:not(.in) { transition-delay: .08s; }
.js .reveal.d2:not(.in) { transition-delay: .16s; }
.js .reveal.d3:not(.in) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal:not(.in) { opacity: 1; transform: none; } }

/* ----------------------------------------------------------------- buttons */
.btn {
  --bg: transparent; --fg: var(--ink); --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  font-family: var(--disp); font-weight: 700; font-size: .76rem; line-height: 1;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 1.15rem 2rem; border-radius: var(--r-pill);
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Solid (Primaer) - fuellt sich, hoher Kontrast fuer Conversion */
.btn--primary { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--primary:hover { --bg: #2c2a27; box-shadow: var(--sh-soft); }

/* Outline (Sekundaer) */
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; }

/* WhatsApp */
.btn--wa { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--wa:hover { --bg: rgba(31,168,85,.10); --bd: var(--wa); }
.btn--wa .ico-wa { color: var(--wa); }

/* Auf dunklem Grund (Hero-Foto, Band, Final, Footer) */
.on-dark .btn--primary,
.btn--on-dark.btn--primary { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.on-dark .btn--primary:hover,
.btn--on-dark.btn--primary:hover { --bg: #ece7e0; }
.on-dark .btn--ghost,
.btn--on-dark.btn--ghost { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.7); }
.on-dark .btn--ghost:hover,
.btn--on-dark.btn--ghost:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.on-dark .btn--wa,
.btn--on-dark.btn--wa { --fg: #fff; --bd: rgba(255,255,255,.55); }
.on-dark .btn--wa .ico-wa,
.btn--on-dark.btn--wa .ico-wa { color: #66d18f; }

.btn--block { width: 100%; }
.btn--lg { padding: 1.25rem 2.3rem; font-size: .82rem; }
.btn .ico { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

.cta-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.reassure { font-size: .82rem; color: var(--muted); margin-top: 1.3rem; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.reassure span { display: inline-flex; align-items: center; gap: .5em; }
.reassure .ico { width: 1em; height: 1em; flex: 0 0 auto; }
.on-dark .reassure { color: rgba(255,255,255,.75); }

/* ----------------------------------------------------------------- header */
/* ----------------------------------------------------------------- angebots-leiste */
.offer-bar { background: var(--ink); color: #fff; position: relative; z-index: 61; }
.offer-bar .wrap { padding-block: .55rem; }
.offer-bar p { margin: 0; display: flex; align-items: center; justify-content: center; gap: .55rem; flex-wrap: wrap; text-align: center; font-size: .82rem; font-weight: 500; letter-spacing: .01em; }
.offer-bar b { font-weight: 800; }
.offer-bar__tag { font-size: .62rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; background: #fff; color: var(--ink); padding: .2rem .5rem; border-radius: 2px; }
.offer-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: opacity .2s var(--ease); }
.offer-bar a:hover { opacity: .75; }
@media (max-width: 480px) { .offer-bar p { font-size: .72rem; gap: .4rem; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252,251,250,.9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
  padding-top: 1.1rem; }
.header-social { display: flex; align-items: center; gap: 1rem; }
.header-social a { color: var(--ink); opacity: .8; transition: opacity .2s; display: inline-flex; }
.header-social a:hover { opacity: 1; }
.header-social .ico { width: 1.15rem; height: 1.15rem; }
.brand { justify-self: center; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .8rem; }
.header-cta {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--disp); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding: .7rem 1.15rem; border: 1.5px solid var(--ink); border-radius: var(--r-pill);
  transition: background .2s, color .2s;
}
.header-cta:hover { background: var(--ink); color: #fff; }
.header-cta:hover .ico-wa { color: #66d18f; }
.header-cta .ico-wa { width: 1.05em; height: 1.05em; color: var(--wa); }

.header-nav { display: flex; justify-content: center; gap: clamp(1.2rem, 3vw, 2.6rem);
  padding: .9rem 0 1.1rem; }
.header-nav a {
  font-family: var(--disp); font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; opacity: .78; transition: opacity .2s; padding: .2rem 0;
}
.header-nav a:hover { opacity: 1; }
@media (max-width: 860px) {
  .header-social { display: none; }
  .header-top { grid-template-columns: 1fr auto 1fr; padding-top: .9rem; }
  .brand img { height: 38px; }
  .header-nav { display: none; }
  .header-cta span { display: none; } .header-cta { padding: .7rem .85rem; }
}

/* ----------------------------------------------------------------- hero   */
.hero {
  position: relative; min-height: clamp(660px, 100vh, 1080px);
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero__img { position: absolute; inset: 0; z-index: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(17,15,13,.62) 0%, rgba(17,15,13,.30) 45%, rgba(17,15,13,.12) 100%),
    linear-gradient(180deg, rgba(17,15,13,.15), rgba(17,15,13,.45)); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin-inline: auto; padding: 0 var(--gutter) clamp(64px, 10vw, 130px); }
.hero__copy { max-width: 40rem; }
.hero .eyebrow { color: #fff; opacity: .9; }
.hero h1 { color: #fff; margin: 0 0 .4rem; }
.hero h1 .line2 { color: #fff; }
.hero .sub { font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 700; color: #fff;
  letter-spacing: -.01em; margin: 0 0 1.9rem; max-width: 34rem; line-height: 1.2; }
.hero .cta-row { margin-bottom: .2rem; }

/* Hero – Karten-Slider */
.hero--slider { display: block; }
.hero__stack { position: absolute; inset: 0; z-index: 1; }
.hslide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  opacity: 0; visibility: hidden; transform: translateY(0);
  transition: transform 1.25s var(--ease), opacity .9s var(--ease);
  will-change: transform, opacity;
}
.hslide.is-active { opacity: 1; visibility: visible; z-index: 2; transform: translateY(0); }
.hslide.is-below  { opacity: 0; visibility: visible; z-index: 1; transform: translateY(100%); }
.hslide.is-above  { opacity: 0; visibility: visible; z-index: 1; transform: translateY(-100%); }

.hslide__img { position: absolute; inset: 0; z-index: 0; }
.hslide__img img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hslide__scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(17,15,13,.62) 0%, rgba(17,15,13,.30) 45%, rgba(17,15,13,.12) 100%),
    linear-gradient(180deg, rgba(17,15,13,.15), rgba(17,15,13,.45)); }
.hslide__scrim--base { display: none; }
.hslide__copy {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin-inline: auto; padding: 0 var(--gutter) clamp(64px, 10vw, 130px);
}
.hslide__copy > * { max-width: 40rem; }
.hslide .eyebrow { color: #fff; opacity: .9; }
.hslide h1, .hslide .h1 { color: #fff; margin: 0 0 .4rem; }
.hslide .h1 .line2 { color: #fff; }
.hslide .sub { font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 700; color: #fff;
  letter-spacing: -.01em; margin: 0 0 1.9rem; max-width: 34rem; line-height: 1.2; }
.hslide .cta-row { margin-bottom: .2rem; max-width: none; }

/* Slider-Steuerung */
.hero__nav {
  position: absolute; z-index: 5; right: var(--gutter); bottom: clamp(28px, 8vw, 60px);
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
}
.hero__arrow {
  width: 52px; height: 52px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.5); background: rgba(17,15,13,.28);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.hero__arrow:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.hero__arrow svg { width: 22px; height: 22px; }
.hero__count { font-family: var(--disp); font-weight: 700; font-size: .8rem; letter-spacing: .16em; color: #fff; display: flex; gap: .3rem; align-items: center; }
.hero__count-sep { opacity: .5; }
@media (max-width: 640px) {
  .hero__nav { right: 50%; transform: translateX(50%); flex-direction: row; bottom: 16px; gap: .8rem; }
  .hero__arrow { width: 46px; height: 46px; }
  .hslide__copy { padding-bottom: 96px; }
}

/* Scroll-Cue */
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .55rem; color: rgba(255,255,255,.85); }
.scroll-cue span { font-family: var(--disp); font-size: .64rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 999px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 6px; border-radius: 2px;
  background: rgba(255,255,255,.9); transform: translateX(-50%); animation: mouseMove 1.6s var(--ease) infinite; }
@keyframes mouseMove { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,10px)} }
@media (prefers-reduced-motion: reduce) { .scroll-cue .mouse::after { animation: none; } }
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* ----------------------------------------------------------------- intro / editorial */
.editorial { overflow: hidden; }
.editorial .ghost {
  top: auto; bottom: clamp(-6px, -0.6vw, -18px); left: 50%;
  transform: translateX(-50%);
  font-size: clamp(2.2rem, 10.5vw, 8.6rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(17,17,17,.16);
  text-stroke: 1.5px rgba(17,17,17,.16);
}

.ed-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.14fr 0.94fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: stretch;
}
.ed-col { display: flex; flex-direction: column; gap: clamp(18px, 2.2vw, 34px); }
.ed-col--left { position: relative; z-index: 3; }      /* Headline liegt ueber dem Bild */
.ed-col--center, .ed-col--right { position: relative; z-index: 1; }
/* Kleines Bild links + Textblock rechts nach unten schieben -> bündig mit grossem Bild */
.ed-col--left .ed-img--small { margin-top: auto; }
.ed-col--right .ed-desc { margin-top: auto; }

/* Headline block – ragt (wie im Inspo) ueber die linke Kante des mittleren Bildes */
.ed-head { padding-top: clamp(2px, 1vw, 18px); position: relative; z-index: 3; }
.ed-title {
  margin: 0; position: relative; z-index: 3;
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  line-height: .94; letter-spacing: -0.03em; color: var(--ink);
  white-space: nowrap;                 /* jede Zeile bleibt einzeilig, darf ueber das Bild ragen */
}

/* Bilder */
.ed-img { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-card); background: var(--greige-2); box-shadow: var(--sh-soft); }
.ed-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-img--small { aspect-ratio: 4 / 5; }
.ed-img--main  { aspect-ratio: 3 / 4.1; box-shadow: var(--sh-lift); }
.ed-img--side  { aspect-ratio: 4 / 5; }
.ed-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.1rem .9rem; color: #fff;
  font-size: .78rem; letter-spacing: .04em; font-weight: 600;
  background: linear-gradient(to top, rgba(17,17,17,.62), rgba(17,17,17,0));
}

/* Beschreibung + Angebot */
.ed-desc { align-self: start; }
.ed-desc__lead { font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.42; font-weight: 600; color: var(--ink); margin: 0 0 1rem; }
.ed-tags { font-size: .86rem; color: var(--muted); letter-spacing: .01em; margin: 0 0 1.4rem; }
.ed-offer {
  display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
  text-decoration: none; padding: .9rem 1.05rem;
  border: 1px solid var(--line); border-radius: var(--r-card); background: var(--card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ed-offer:hover { transform: translateY(-3px); box-shadow: var(--sh-soft); }
.ed-offer__k { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 700; color: #fff; background: var(--ink); padding: .3rem .55rem; border-radius: 2px; }
.ed-offer__v { font-size: .95rem; font-weight: 600; color: var(--ink); }
.ed-offer__v b { font-weight: 800; }
.ed-offer .arw { margin-left: auto; transition: transform .3s var(--ease); }
.ed-offer:hover .arw { transform: translateX(4px); }

@media (max-width: 900px) {
  .ed-grid { grid-template-columns: 1fr 1fr; }
  .ed-col--center, .ed-col--right { margin-top: 0; }
  .ed-col--center { grid-column: 1 / 3; order: -1; }   /* grosses Bild zuerst, volle Breite */
  .ed-img--main { aspect-ratio: 16 / 10; margin-left: 0; width: 100%; }
  .ed-title { white-space: normal; }
}
@media (max-width: 560px) {
  .ed-grid { grid-template-columns: 1fr; }
  .ed-col--center { grid-column: auto; }
  .ed-img--main { aspect-ratio: 4 / 5; margin-left: 0; width: 100%; }
}

/* ----------------------------------------------------------------- trust strip */
.trustbar { background: var(--base); border-block: 1px solid var(--line); }
.trustbar .wrap { padding-block: clamp(28px, 4vw, 44px); }
.trustbar ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.trustbar li { display: flex; align-items: center; gap: .6em; justify-content: center;
  font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); text-align: center; }
.trustbar .ico { width: 1.35em; height: 1.35em; flex: 0 0 auto; }
@media (max-width: 760px) { .trustbar ul { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .trustbar li { justify-content: flex-start; font-size: .76rem; } }

/* ----------------------------------------------------------------- feature (image + text) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.feature--reverse .feature__media { order: -1; }
.feature__media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-soft); aspect-ratio: 4/5; background: var(--greige-2); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media { aspect-ratio: 16/11; }
}
.relief-list { list-style: none; margin: 1.8rem 0 2rem; padding: 0; display: grid; gap: 1.1rem; }
.relief-list li { display: flex; gap: .9rem; align-items: flex-start; }
.relief-list .tick { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; margin-top: .15rem; }
.relief-list .tick .ico { width: 14px; height: 14px; }
.relief-list b { display: block; font-size: 1.02rem; color: var(--ink); font-weight: 700; }
.relief-list span { color: var(--muted); font-size: .96rem; }

/* ----------------------------------------------------------------- packages */
.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.2vw, 26px); margin-top: 3rem; }
@media (max-width: 760px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 2rem 1.9rem 1.8rem; display: flex; flex-direction: column;
  overflow: hidden; isolation: isolate;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
/* Körperbereich-Bild als dezenter Hintergrund (statt reinem Weiß) */
.pkg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(180deg, rgba(24,19,14,.24), rgba(24,19,14,.12)), var(--pkg-bg, none);
  background-size: cover; background-position: center top;
  opacity: 1; transform: scale(1.02); transition: transform .5s var(--ease);
}
.pkg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(252,251,250,.60) 0%,
    rgba(252,251,250,.86) 46%,
    rgba(252,251,250,.96) 74%,
    var(--card) 100%);
}
.pkg > * { position: relative; z-index: 2; }
.pkg:hover { transform: translateY(-4px); box-shadow: var(--sh-soft); border-color: var(--ink); }
.pkg:hover::before { transform: scale(1.06); }
/* Feature-Karte: etwas kräftigeres Bild, dunkler Rahmen bleibt lesbar */
.pkg--feature::after {
  background: linear-gradient(180deg,
    rgba(252,251,250,.52) 0%,
    rgba(252,251,250,.84) 46%,
    rgba(252,251,250,.96) 74%,
    var(--card) 100%);
}
.pkg--feature { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink) inset, var(--sh-soft); }
.pkg--feature .pkg__label { background: var(--ink); color: #fff; }
.pkg__label { align-self: flex-start; font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); background: var(--greige); padding: .38rem .8rem; border-radius: var(--r-pill); margin-bottom: 1.2rem; }
.pkg__name { font-size: 1.5rem; font-weight: 800; line-height: 1.05; letter-spacing: -.01em; margin: 0 0 .9rem; }
.pkg__areas { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.pkg__areas li { font-size: .74rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-2); background: var(--greige);
  padding: .32rem .7rem; border-radius: var(--r-pill); }
.pkg__meta { display: flex; align-items: center; gap: .45em; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem; font-weight: 600; }
.pkg__meta .ico { width: 1.05em; height: 1.05em; }
.pkg__benefit { font-size: .95rem; color: var(--muted); margin: 0 0 1.5rem; }
.pkg__price { display: flex; align-items: baseline; gap: .6rem; margin-top: auto; margin-bottom: .4rem; }
.pkg__now { font-size: 2.7rem; font-weight: 800; line-height: 1; color: var(--ink); letter-spacing: -.03em; }
.pkg__was { font-size: 1.05rem; color: var(--muted); text-decoration: line-through; text-decoration-thickness: 2px; }
.pkg__save { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--line); padding: .3rem .7rem; border-radius: var(--r-pill); margin-bottom: 1.4rem; }
.pkg .btn { width: 100%; }

/* ----------------------------------------------------------------- vorher/nachher marquee */
.results { overflow: hidden; }
.ba-marquee {
  margin-top: clamp(34px, 5vw, 60px); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ba-track { display: flex; gap: clamp(16px, 2vw, 26px); width: max-content; padding-inline: clamp(16px, 3vw, 40px); animation: baScroll 42s linear infinite; }
.ba-marquee:hover .ba-track { animation-play-state: paused; }
@keyframes baScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ba-card { flex: 0 0 auto; width: clamp(280px, 32vw, 420px); margin: 0; }
.ba-single { position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-soft); background: var(--greige-2) center/cover no-repeat; }
.ba-single::after { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: rgba(255,255,255,.7); }
.ba-tag { position: absolute; top: 12px; left: 12px; font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; background: rgba(17,17,17,.72); color: #fff; padding: .28rem .55rem; border-radius: 2px; z-index: 2; }
.ba-tag--after { left: auto; right: 12px; background: #B0902E; }
.ba-card figcaption { margin-top: .85rem; font-size: .88rem; font-weight: 600; color: var(--ink-2); text-align: center; letter-spacing: .01em; }
.ba-note { margin: clamp(26px, 4vw, 42px) auto 0; max-width: 60ch; text-align: center; font-size: .78rem; color: var(--muted); padding-inline: var(--gutter); }
@media (prefers-reduced-motion: reduce) {
  .ba-marquee { overflow-x: auto; }
  .ba-track { animation: none; }
}
.pkg-note { text-align: center; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 1.8rem; }

/* ----------------------------------------------------------------- singles */
.singles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 2.2rem 0 2rem; }
@media (max-width: 620px) { .singles-grid { grid-template-columns: 1fr; } }
.single { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 1.4rem 1.5rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  transition: border-color .2s, transform .2s var(--ease); }
.single:hover { border-color: var(--ink); transform: translateY(-2px); }
.single__name { font-weight: 700; font-size: 1rem; }
.single__dur { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: .2rem; }
.single__price { font-size: 1.5rem; font-weight: 800; color: var(--ink); white-space: nowrap; letter-spacing: -.02em; }
.single__price small { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ----------------------------------------------------------------- emotional band */
.band { position: relative; min-height: clamp(360px, 52vw, 560px); display: grid; place-items: center;
  text-align: center; color: #fff; overflow: hidden; }
.band__img { position: absolute; inset: 0; z-index: 0; }
.band__img img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(17,15,13,.5); }
.band__inner { position: relative; z-index: 2; max-width: 860px; padding: 3rem var(--gutter); }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 46ch; margin-inline: auto; margin-bottom: 2rem; font-weight: 500; }

/* ----------------------------------------------------------------- steps  */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 56px); margin-top: 3rem; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 2rem; } }
.step { border-top: 2px solid var(--ink); padding-top: 1rem; }
.step__n { font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.step h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.01em; margin: .6rem 0 .5rem; }
.step p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ----------------------------------------------------------------- reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 3rem; }
@media (max-width: 820px) { .reviews { grid-template-columns: 1fr; } }
.review { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.8rem 1.7rem; }
.review .qstars { font-size: .95rem; letter-spacing: .1em; color: var(--ink); margin-bottom: 1rem; }
.review p { font-size: 1.06rem; line-height: 1.5; color: var(--ink); margin: 0 0 1.3rem; font-weight: 500; }
.review .who { display: flex; align-items: center; gap: .7em; font-weight: 700; font-size: .9rem; }
.review .who .av { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.review .who small { font-weight: 500; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; }

/* ----------------------------------------------------------------- faq    */
.faq { max-width: var(--maxw-narrow); margin: 3rem auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.5rem .2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.faq .chev { width: 1.2em; height: 1.2em; color: var(--ink); transition: transform .28s var(--ease); flex: 0 0 auto; }
.faq details[open] .chev { transform: rotate(45deg); }
.faq .answer { padding: 0 .2rem 1.5rem; color: var(--muted); font-size: .99rem; max-width: 68ch; }

/* ----------------------------------------------------------------- form   */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; gap: 2.4rem; } .form-media { display: none; } }
.form-media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-soft); aspect-ratio: 4/5; background: var(--greige-2); }
.form-media img { width: 100%; height: 100%; object-fit: cover; }

.form-card { background: transparent; }
.form-card h2 { margin-bottom: .3rem; }
.form-card .lead { margin-bottom: 1.9rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.field label .req { color: var(--ink); }
.field .hint { font-size: .72rem; letter-spacing: .06em; text-transform: none; color: var(--muted); }
.field input, .field select {
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 2px;
  padding: .9rem 1rem; width: 100%; transition: border-color .18s, box-shadow .18s; min-height: 52px;
}
.field input::placeholder { color: #a9a294; }
.field input:focus, .field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17,17,17,.12); }
.field input:user-invalid { border-color: #b0472f; }
.field .err { font-size: .8rem; color: #b0472f; font-weight: 600; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select { border-color: #b0472f; }

.selected-pkg { display: none; align-items: center; gap: .55em; background: var(--ink); color: #fff;
  font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .7rem .95rem; border-radius: 2px; margin-bottom: 1.2rem; }
.selected-pkg.show { display: flex; }
.selected-pkg .ico { width: 1.1em; height: 1.1em; }

.consent { display: flex; gap: .7rem; align-items: flex-start; margin: .3rem 0 1.4rem; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--ink); }
.consent label { font-size: .84rem; color: var(--muted); line-height: 1.45; font-weight: 500; text-transform: none; letter-spacing: 0; }
.consent a { color: var(--ink); font-weight: 700; text-decoration: underline; }

.form-alt { text-align: center; margin-top: 1.6rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.form-alt p { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }

.form-status { display: none; font-size: .9rem; font-weight: 600; padding: .8rem 1rem; border-radius: 2px; margin-bottom: 1rem; }
.form-status.error { display: block; background: #fbeae5; color: #a5432c; border: 1px solid #f0c7bb; }

/* ----------------------------------------------------------------- final cta */
.final-cta { background: var(--ink); color: #EDE9E3; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.72); max-width: 44ch; margin-inline: auto; margin-bottom: 2rem; font-weight: 500; }
.final-cta .cta-row { justify-content: center; }

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: #C9C4BB; padding-block: clamp(48px, 7vw, 88px) 2.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem 2.5rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 44px; width: auto; margin-bottom: 1.1rem; filter: brightness(0) invert(1) sepia(.2); }
.footer-brand address { font-style: normal; font-size: .92rem; color: #C9C4BB; line-height: 1.7; }
.footer-brand .wa-link { display: inline-flex; align-items: center; gap: .5em; margin-top: 1.2rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--r-pill); padding: .7rem 1.15rem; transition: border-color .2s, background .2s; }
.footer-brand .wa-link:hover { border-color: var(--wa); background: rgba(31,168,85,.14); }
.footer-brand .wa-link .ico-wa { width: 1.05em; height: 1.05em; color: #66d18f; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin: 0 0 1.1rem; }
.footer-col a { display: block; font-size: .92rem; color: #C9C4BB; text-decoration: none; margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-legal { grid-column: 1 / -1; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14);
  font-size: .76rem; color: #8f8a80; letter-spacing: .02em; }

/* ----------------------------------------------------------------- sticky mobile bar */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none; gap: .6rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(252,251,250,.97); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.sticky-cta .btn { flex: 1; padding:1.05rem 1rem; }
.sticky-cta .btn--wa { flex: 0 0 auto; }
.sticky-cta.show { display: flex; }
@media (min-width: 901px) { .sticky-cta { display: none !important; } }
body.has-sticky { padding-bottom: 80px; }
@media (min-width: 901px) { body.has-sticky { padding-bottom: 0; } }

/* ----------------------------------------------------------------- danke  */
.thanks { min-height: 100dvh; display: grid; place-items: center; text-align: center; padding: 2rem var(--gutter); background: var(--greige); }
.thanks .inner { max-width: 580px; }
.thanks .check { width: 80px; height: 80px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; margin: 0 auto 1.9rem; }
.thanks .check .ico { width: 40px; height: 40px; }
.thanks h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); text-transform: uppercase; }
.thanks p { color: var(--muted); font-size: 1.06rem; max-width: 44ch; margin-inline: auto; margin-bottom: 2rem; font-weight: 500; }
.thanks .brand-top { margin-bottom: 2.4rem; }
.thanks .brand-top img { height: 58px; width: auto; display: block; margin-inline: auto; }
.thanks .back { display: inline-block; margin-top: 1.7rem; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.thanks .back:hover { color: var(--ink); }
