/* ============================================================
   EBRU MUA — Make-up Artistry
   Cream-Editorial: Playfair Display + Karla, warme Creme-Töne,
   Kino-Klammer (helle Seite, dunkler Espresso-Abschluss).
   ============================================================ */

:root {
  --cream: #f7f2e9;
  --cream-2: #efe8da;
  --ivory: #fcf9f3;
  --ink: #2d2622;
  --ink-strong: #201a16;
  --ink-soft: rgba(45, 38, 34, 0.66);
  --label: rgba(45, 38, 34, 0.52);
  --hair: rgba(45, 38, 34, 0.14);
  --hair-soft: rgba(45, 38, 34, 0.09);
  --rose: #c08e74;
  --rose-deep: #9c6f55;
  --dark: #241d18;
  --dark-2: #2b231d;
  --bone: #f3ede2;
  --bone-mut: rgba(243, 237, 226, 0.62);
  --hair-d: rgba(243, 237, 226, 0.13);
  --display: "Josefin Sans", "Futura", "Avenir Next", sans-serif;
  --sans: "Karla", -apple-system, "Segoe UI", sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* natives smooth-scroll NUR ohne JS — mit ScrollSmoother kollidiert es
   (per-Frame-Writes werden selbst animiert, Smoothing wirkt "weg") */
html { scroll-behavior: auto; }
html:not(.js) { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: #e4cbb3; color: var(--ink-strong); }

:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 2px; }
.dark-zone :focus-visible, footer :focus-visible { outline-color: var(--bone); }

.skip {
  position: fixed; left: 1rem; top: -4rem; z-index: 2000;
  background: var(--ink); color: var(--bone);
  padding: 0.7rem 1.2rem; border-radius: 999px;
  font-size: 0.85rem; text-decoration: none;
  transition: top 0.3s var(--ease);
}
.skip:focus-visible { top: 1rem; }

/* ============================================================
   INTRO-VORHANG (1x pro Session) + SCROLL-PROGRESS
   ============================================================ */
.curtain {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--cream-2);
  display: grid; place-items: center;
}
html:not(.js) .curtain, html.rm .curtain { display: none; }
.curtain__word {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-strong);
  opacity: 0;
  transform: translateY(18px);
}
.curtain__word i { font-style: italic; font-weight: 400; color: var(--rose-deep); }
body.intro-lock { overflow: hidden; }
/* Hero-Entrance wartet auf den Vorhang */
@media (prefers-reduced-motion: no-preference) {
  html.js.intro .hero__title .line__inner { animation-delay: 1.55s; }
  html.js.intro .hero__title .line:nth-child(2) .line__inner { animation-delay: 1.67s; }
  html.js.intro .hero .fade-in--1 { animation-delay: 1.9s; }
  html.js.intro .hero .fade-in--2 { animation-delay: 2.05s; }
  html.js.intro .hero .fade-in--3 { animation-delay: 2.2s; }
  html.js.intro .hero__media { animation-delay: 1.7s; }
  html.js.intro .hero__media img { animation-delay: 1.7s; }
  html.js.intro .hero__mini { animation-delay: 2.45s; }
  html.js.intro .hero__badge { animation-delay: 2.7s; }
}

.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 1000;
  pointer-events: none;
}
.progress i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  transform: scaleX(0);
  transform-origin: left;
}
html:not(.js) .progress { display: none; }

/* ============================================================
   TYPO-BAUSTEINE
   ============================================================ */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label);
}
.h-display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--ink-strong);
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
}

/* ============================================================
   BUTTONS — weiche Pills
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              transform 0.35s var(--ease);
}
.btn--ink {
  background: var(--ink);
  color: var(--bone);
}
.btn--ink:hover {
  background: var(--ink-strong);
  box-shadow: 0 16px 30px -18px rgba(32, 26, 22, 0.55);
}
.btn--ghost {
  border-color: rgba(45, 38, 34, 0.32);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(45, 38, 34, 0.04); }
.btn--bone {
  background: var(--bone);
  color: var(--ink-strong);
}
.btn--bone:hover {
  background: #fff;
  box-shadow: 0 18px 34px -18px rgba(0, 0, 0, 0.55);
}
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAV — transparent über Hero, Creme-Glas beim Scrollen
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem calc(max((100% - 1240px) / 2, 0px) + var(--pad));
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.45s var(--ease), background-color 0.45s var(--ease),
              border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.nav--solid, html:not(.js) .nav {
  padding-top: 0.75rem; padding-bottom: 0.75rem;
  background: rgba(250, 246, 238, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--hair-soft);
  box-shadow: 0 10px 30px -22px rgba(45, 38, 34, 0.35);
}
.nav__logo {
  justify-self: start;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--ink-strong);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.16em;
  transition: opacity 0.25s;
}
.nav__logo:hover { opacity: 0.75; }
.nav__logo .mua {
  font-family: var(--sans);
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-left: 0.35rem;
  vertical-align: 0.12em;
}
.nav__links {
  display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.2rem);
}
.nav__links > a, .dd__btn {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0.1rem;
  position: relative;
}
.nav__links > a::after, .dd__btn::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0.1rem;
  height: 1px; background: var(--ink);
  transition: right 0.4s var(--ease);
}
.nav__links > a:hover::after, .dd__btn:hover::after,
.ddwrap:focus-within .dd__btn::after { right: 0; }
.nav__meta { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.nav__cta { padding: 0.7rem 1.45rem; font-size: 0.74rem; }

/* Dropdown "Leistungen" */
.ddwrap { position: static; }
.dd__btn .caret {
  display: inline-block;
  font-size: 0.6em;
  transform: translateY(-0.1em);
  transition: transform 0.3s var(--ease);
}
.dd {
  position: absolute;
  left: 0; right: 0; top: 100%;
  padding: 0 calc(max((100% - 1240px) / 2, 0px) + var(--pad)) 0;
  pointer-events: none;
}
/* Hover-Brücke: füllt die Lücke zwischen Nav-Zeile und Panel,
   damit der Cursor auf dem Weg ins Panel den Hover nicht verliert */
.dd::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -1.8rem; height: 1.8rem;
}
.dd__panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.15fr;
  gap: 2rem;
  background: rgba(252, 249, 243, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--hair-soft);
  border-radius: 0 0 22px 22px;
  padding: 2rem 2.2rem 2.2rem;
  box-shadow: 0 34px 70px -38px rgba(45, 38, 34, 0.4);
  opacity: 0;
  transform: translateY(-8px);
  clip-path: inset(0 0 100% 0);
  /* kleine Schließ-Verzögerung verzeiht Mikro-Ausrutscher des Cursors */
  transition: opacity 0.35s var(--ease) 0.18s, transform 0.4s var(--ease) 0.18s,
              clip-path 0.45s var(--ease) 0.18s;
}
@media (hover: hover) {
  .ddwrap:hover .dd, .ddwrap:focus-within .dd { pointer-events: auto; }
  .ddwrap:hover .dd__panel, .ddwrap:focus-within .dd__panel {
    opacity: 1; transform: translateY(0); clip-path: inset(0 0 -40px 0);
    transition-delay: 0s;
  }
  .ddwrap:hover .dd__btn .caret { transform: translateY(-0.1em) rotate(180deg); }
}
.ddwrap:focus-within .dd { pointer-events: auto; }
.ddwrap:focus-within .dd__panel { opacity: 1; transform: translateY(0); clip-path: inset(0 0 -40px 0); }
.dd__item { text-decoration: none; display: block; padding-top: 0.2rem; }
.dd__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink-strong);
  margin-bottom: 0.35rem;
  transition: color 0.3s;
}
.dd__item p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
.dd__item:hover strong { color: var(--rose-deep); }
.dd__side {
  background: var(--cream-2);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  justify-content: center;
  text-decoration: none;
}
.dd__side strong { font-family: var(--display); font-weight: 500; font-size: 1.1rem; color: var(--ink-strong); }
.dd__side p { font-size: 0.82rem; color: var(--ink-soft); }
.dd__side .faux { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-deep); }
.dd__side:hover .faux { text-decoration: underline; }

/* Burger + Mobile-Menü */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  position: relative;
  z-index: 60;
}
.nav__toggle span {
  position: absolute; left: 11px; right: 11px;
  height: 1.6px; background: var(--ink);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease), opacity 0.3s;
}
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 25px; }
body.nav-open .nav__toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__toggle { display: block; justify-self: end; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; inset: 0;
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s var(--ease);
  }
  body.nav-open .nav__links { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  /* backdrop-filter macht .nav zum Containing Block für fixed-Kinder —
     bei offenem Menü abschalten, sonst klebt das Overlay an der Nav-Box */
  body.nav-open .nav {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }
  .nav__links > a, .dd__btn {
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0;
    transform: translateY(14px);
  }
  body.nav-open .nav__links > a, body.nav-open .dd__btn {
    opacity: 1; transform: none;
    transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
  }
  body.nav-open .nav__links > *:nth-child(1) { transition-delay: 0.08s; }
  body.nav-open .nav__links > *:nth-child(2) { transition-delay: 0.14s; }
  body.nav-open .nav__links > *:nth-child(3) { transition-delay: 0.2s; }
  body.nav-open .nav__links > *:nth-child(4) { transition-delay: 0.26s; }
  body.nav-open .nav__links > *:nth-child(5) { transition-delay: 0.32s; }
  .nav__links .dd { display: none; }
  .dd__btn::after, .nav__links > a::after { display: none; }
  .nav--solid { background: rgba(250, 246, 238, 0.92); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(6.5rem, 14vh, 9rem) var(--pad) clamp(3rem, 8vh, 5rem);
}
.hero__copy { max-width: 34rem; }
.hero__title {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  margin: 1.1rem 0 1.4rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__inner { display: block; }
.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: var(--ink-soft);
  max-width: 28rem;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Entrance rein per CSS (Race-Regel: GSAP fasst diese Elemente nicht an) */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero__title .line__inner {
    transform: translateY(110%);
    animation: heroLine 1.1s var(--ease) forwards;
  }
  html.js .hero__title .line:nth-child(2) .line__inner { animation-delay: 0.12s; }
  html.js .hero .fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: heroFade 0.9s var(--ease) forwards;
  }
  html.js .hero .fade-in--1 { animation-delay: 0.35s; }
  html.js .hero .fade-in--2 { animation-delay: 0.5s; }
  html.js .hero .fade-in--3 { animation-delay: 0.65s; }
  html.js .hero__media { clip-path: inset(6% 6% 6% 6% round 300px 300px 18px 18px); animation: heroClip 1.4s var(--ease) 0.15s forwards; }
  html.js .hero__media img { transform: scale(1.12); animation: heroZoom 1.8s var(--ease) 0.15s forwards; }
  html.js .hero__mini { opacity: 0; transform: translateY(20px) rotate(-4deg); animation: heroMini 1s var(--ease) 0.9s forwards; }
  html.js .hero__badge { opacity: 0; animation: heroFadeOnly 0.8s var(--ease) 1.15s forwards; }
}
@keyframes heroLine { to { transform: translateY(0); } }
@keyframes heroFade { to { opacity: 1; transform: none; } }
@keyframes heroFadeOnly { to { opacity: 1; } }
@keyframes heroClip { to { clip-path: inset(0 0 0 0 round 300px 300px 18px 18px); } }
@keyframes heroZoom { to { transform: scale(1); } }
@keyframes heroMini { to { opacity: 1; transform: rotate(-4deg); } }

.hero__visual { position: relative; }
.hero__media {
  border-radius: 300px 300px 18px 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  clip-path: inset(0 round 300px 300px 18px 18px);
  background: var(--cream-2);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__mini {
  position: absolute;
  left: -14%; bottom: 6%;
  width: 38%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 26px 50px -30px rgba(45, 38, 34, 0.5);
  transform: rotate(-4deg);
  border: 6px solid var(--ivory);
  background: var(--ivory);
}
.hero__mini img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.hero__badge {
  position: absolute;
  right: -6%; top: 4%;
  width: clamp(96px, 10vw, 128px);
  aspect-ratio: 1;
  color: var(--ink);
  text-decoration: none;
  display: grid; place-items: center;
}
.hero__badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__badge text {
  font-family: var(--sans); font-size: 8.4px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  fill: var(--ink);
}
html.js:not(.rm) .hero__badge svg { animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #7fa470;
  box-shadow: 0 0 0 5px rgba(127, 164, 112, 0.22);
}
.hero__cue {
  position: absolute; left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--label);
}
html.js:not(.rm) .hero__cue::after {
  content: "";
  display: block;
  width: 1px; height: 2rem;
  margin: 0.5rem auto 0;
  background: linear-gradient(var(--ink), transparent);
  animation: cue 2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    gap: 3rem;
    text-align: left;
  }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; width: 88%; }
  .hero__mini { left: -8%; }
  .hero__badge { right: -4%; top: -4%; }
  .hero__cue { display: none; }
}

/* ============================================================
   MARQUEE-BAND
   ============================================================ */
.marq {
  border-top: 1px solid var(--hair-soft);
  border-bottom: 1px solid var(--hair-soft);
  padding: 1.15rem 0;
  overflow: hidden;
  background: var(--ivory);
}
.marq__track { display: flex; width: max-content; }
html.js:not(.rm) .marq__track { animation: marq 36s linear infinite; }
@keyframes marq { to { transform: translateX(-50%); } }
.marq span {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  white-space: nowrap;
  padding-right: 1.4rem;
}
.marq .sep { color: var(--rose); font-style: normal; }

/* ============================================================
   SEKTIONS-GERÜST
   ============================================================ */
.sec { padding: clamp(5rem, 12vh, 8.5rem) 0; }
.sec__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--pad); }
.shead { max-width: 1240px; margin: 0 auto clamp(2.6rem, 6vh, 4.2rem); padding: 0 var(--pad); }
.shead .h-display { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-top: 0.9rem; }
.shead__sub { color: var(--ink-soft); max-width: 30rem; margin-top: 1rem; }

/* Reveals (GSAP data-r) — sichtbar ohne JS */
html:not(.js) [data-r] { opacity: 1 !important; transform: none !important; }

/* ============================================================
   STATEMENT / PHILOSOPHIE
   ============================================================ */
.state { background: var(--cream); text-align: center; }
.state__quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.25;
  max-width: 46rem;
  margin: 0 auto 1.6rem;
  color: var(--ink-strong);
}
.state__quote .w { display: inline-block; }
.state__quote em { font-style: italic; font-weight: 400; color: var(--rose-deep); }
.state__sub { color: var(--ink-soft); max-width: 34rem; margin: 0 auto; }
.state__imgs {
  max-width: 1240px;
  margin: clamp(3rem, 7vh, 5rem) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: end;
}
.state__imgs figure { border-radius: 16px; overflow: hidden; }
.state__imgs figure:nth-child(1) { aspect-ratio: 16 / 9; }
.state__imgs figure:nth-child(2) { aspect-ratio: 4 / 5; margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.state__imgs img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) {
  .state__imgs { grid-template-columns: 1fr; }
  .state__imgs figure:nth-child(2) { margin: 0; max-width: 70%; justify-self: end; margin-top: -3rem; border: 6px solid var(--ivory); }
}

/* ============================================================
   LEISTUNGEN — asymmetrisches Karten-Grid, keine Preise
   ============================================================ */
.services { background: var(--ivory); }
.sgrid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-auto-rows: auto;
  gap: clamp(1.1rem, 2.2vw, 1.8rem);
}
.scard {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--hair-soft);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.scard:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -34px rgba(45, 38, 34, 0.42);
}
.scard--lead { grid-row: span 2; }
.scard__media { overflow: hidden; aspect-ratio: 4 / 3; }
.scard--lead .scard__media { aspect-ratio: auto; flex: 1; min-height: 300px; }
.scard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.scard:hover .scard__media img { transform: scale(1.05); }
.scard__body { padding: 1.4rem 1.5rem 1.6rem; }
.scard__kicker {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-deep);
}
.scard__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--ink-strong);
  margin: 0.45rem 0 0.5rem;
}
.scard__desc { font-size: 0.92rem; color: var(--ink-soft); }
.scard__more {
  margin-top: 1rem;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.scard__more .arr { transition: transform 0.35s var(--ease); }
.scard:hover .scard__more .arr { transform: translateX(4px); }
.services__note {
  max-width: 1240px;
  margin: 2.2rem auto 0;
  padding: 0 var(--pad);
  color: var(--label);
  font-size: 0.86rem;
}
@media (max-width: 900px) {
  .sgrid { grid-template-columns: 1fr; }
  .scard--lead { grid-row: auto; }
  .scard--lead .scard__media { aspect-ratio: 16 / 9; min-height: 0; }
}

/* ============================================================
   GALERIE — horizontale Kamerafahrt (Desktop gepinnt,
   mobil/rm: eleganter Swipe mit Scroll-Snap)
   ============================================================ */
.gallery { background: var(--cream); overflow: hidden; }
.hgal { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity; scrollbar-width: none; }
.hgal::-webkit-scrollbar { display: none; }
.hgal--pinned { overflow: visible; }
.hgal__track {
  display: flex;
  align-items: flex-end;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  padding: 0 max(calc((100vw - 1240px) / 2), var(--pad)) 1rem;
  width: max-content;
  will-change: transform;
}
.hgal__item {
  position: relative;
  flex: none;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
}
.hgal__item img {
  height: clamp(300px, 54vh, 520px);
  width: auto;
  aspect-ratio: 4 / 5; /* stabile Breite vor dem Lazy-Load — der Pin misst sonst 0 */
  display: block;
  object-fit: cover;
}
.hgal__item:nth-child(even) img { height: clamp(260px, 46vh, 440px); }
.hgal__item figcaption {
  position: absolute; left: 0.9rem; bottom: 0.8rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: rgba(36, 29, 24, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* ============================================================
   FOTO-BAND — zwei gegenläufige Endlos-Reihen
   ============================================================ */
.fotoband {
  background: var(--ivory);
  border-top: 1px solid var(--hair-soft);
  border-bottom: 1px solid var(--hair-soft);
  padding: clamp(2.2rem, 5vh, 3.5rem) 0;
  overflow: hidden;
}
.fotoband__row { display: flex; width: max-content; }
.fotoband__row + .fotoband__row { margin-top: clamp(0.8rem, 1.6vw, 1.3rem); }
.fotoband__set {
  display: flex;
  gap: clamp(0.8rem, 1.6vw, 1.3rem);
  padding-right: clamp(0.8rem, 1.6vw, 1.3rem);
}
html.js:not(.rm) .fotoband__row--a { animation: bandA 46s linear infinite; }
html.js:not(.rm) .fotoband__row--b { animation: bandA 54s linear infinite reverse; }
.fotoband__row:hover { animation-play-state: paused; }
@keyframes bandA { to { transform: translateX(-50%); } }
.fotoband figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.fotoband figure:nth-child(3n) { transform: rotate(1.2deg); }
.fotoband figure:nth-child(3n+1) { transform: rotate(-1deg); }
.fotoband figure:hover { transform: rotate(0) scale(1.05); z-index: 2; }
.fotoband img {
  height: clamp(120px, 19vh, 185px);
  width: auto;
  display: block;
}
/* rm/No-JS: Band steht, aber bleibt horizontal wischbar */
html.rm .fotoband, html:not(.js) .fotoband { overflow-x: auto; scrollbar-width: none; }

/* ============================================================
   GLANZ-SWEEP auf Karten-Fotos
   ============================================================ */
.scard__media, .look__media { position: relative; }
.scard__media::after, .look__media::after, .hgal__item::after {
  content: "";
  position: absolute; inset: -20% -60%;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.26) 50%, transparent 58%);
  transform: translateX(-75%);
  transition: transform 0.95s var(--ease);
  pointer-events: none;
}
.scard:hover .scard__media::after,
.look:hover .look__media::after,
.hgal__item:hover::after { transform: translateX(75%); }

/* Hero-Slideshow: gestapelte Slides */
.hero__media { position: relative; }
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media img:not(:first-child) { opacity: 0; }

/* ============================================================
   MARKEN — „womit ich arbeite" (ruhiges Wordmark-Band)
   ============================================================ */
.brands {
  background: var(--ivory);
  border-top: 1px solid var(--hair-soft);
  padding: clamp(2.4rem, 5vh, 3.6rem) 0 clamp(2.6rem, 5.5vh, 4rem);
  overflow: hidden;
  text-align: center;
}
.brands__label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--label);
  margin-bottom: 1.7rem;
}
.brands__track { display: flex; width: max-content; }
html.js:not(.rm) .brands__track { animation: bandA 38s linear infinite; }
.brands__track:hover { animation-play-state: paused; }
.brands__set {
  display: flex; align-items: center;
  gap: clamp(2.6rem, 6vw, 5.5rem);
  padding-right: clamp(2.6rem, 6vw, 5.5rem);
  font-size: clamp(26px, 3vw, 34px); /* Basis für die Logo-Höhen (em) */
}
.brands__set img {
  height: var(--h, 1em);
  width: auto;
  filter: grayscale(1) contrast(0.85);
  opacity: 0.6;
  transition: opacity 0.35s, filter 0.35s;
}
.brands__set img:hover { opacity: 0.95; }
html.rm .brands, html:not(.js) .brands { overflow-x: auto; scrollbar-width: none; }

/* ============================================================
   FLOATING KONTAKT-BUTTON (WhatsApp / Instagram)
   ============================================================ */
.fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 960;
}
.fab__toggle {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -12px rgba(45, 38, 34, 0.5);
  transition: transform 0.45s var(--ease), background-color 0.35s, box-shadow 0.35s;
  z-index: 2;
}
.fab__toggle:hover { transform: scale(1.07); box-shadow: 0 18px 36px -14px rgba(45, 38, 34, 0.6); }
.fab__toggle svg { width: 26px; height: 26px; transition: opacity 0.3s var(--ease), transform 0.45s var(--ease); }
.fab__toggle .ico-x { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.5); }
.fab--open .fab__toggle { background: var(--ink); }
.fab--open .fab__toggle .ico-chat { opacity: 0; transform: rotate(90deg) scale(0.5); }
.fab--open .fab__toggle .ico-x { opacity: 1; transform: rotate(0) scale(1); }
.fab__item {
  position: absolute;
  left: 50%; bottom: 0;
  width: 50px; height: 50px;
  margin-left: -25px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(0) scale(0.4);
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s var(--ease);
}
.fab__item svg { width: 24px; height: 24px; }
.fab__item--wa { background: #25d366; }
.fab__item--ig { background: radial-gradient(circle at 30% 110%, #fdca5c 0%, #f2653f 30%, #d6295e 55%, #9738a8 80%, #515bd4 100%); }
.fab--open .fab__item { pointer-events: auto; opacity: 1; }
.fab--open .fab__item--ig { transform: translateY(-70px) scale(1); }
.fab--open .fab__item--wa { transform: translateY(-132px) scale(1); transition-delay: 0.06s; }
.fab__item:hover { filter: brightness(1.08); }
html:not(.js) .fab { display: none; }

/* ============================================================
   SIGNATURE-LOOKS — editoriale Wechselzeilen
   ============================================================ */
.looks { background: var(--cream-2); }
.look {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.look__ghost {
  position: absolute;
  top: -0.12em;
  right: 2%;
  z-index: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(7rem, 17vw, 14rem);
  line-height: 1;
  color: rgba(45, 38, 34, 0.055);
  pointer-events: none;
  user-select: none;
}
.look:nth-child(even) .look__ghost { right: auto; left: 2%; }
.look__body, .look__media { position: relative; z-index: 1; }
.look + .look { margin-top: clamp(3.5rem, 8vh, 6rem); }
.look__media {
  border-radius: 220px 220px 16px 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  width: 100%;
  justify-self: center;
}
.look:nth-child(even) .look__media { order: 2; border-radius: 16px 16px 220px 220px; }
.look__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.look:hover .look__media img { transform: scale(1.035); }
.look__idx {
  font-family: var(--display);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.7rem;
}
.look__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  color: var(--ink-strong);
  margin-bottom: 0.9rem;
}
.look__title em { font-style: italic; font-weight: 400; color: var(--rose-deep); }
.look__desc { color: var(--ink-soft); max-width: 30rem; margin-bottom: 1.3rem; }
.look__chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.look__chips span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  background: var(--ivory);
}
@media (max-width: 820px) {
  .look { grid-template-columns: 1fr; gap: 1.8rem; }
  .look:nth-child(even) .look__media { order: 0; }
  .look__media { max-width: 400px; }
}

/* ============================================================
   FAQ — animiertes Akkordeon
   ============================================================ */
.faq { background: var(--ivory); }
.faq__list { max-width: 820px; margin: 0 auto; padding: 0 var(--pad); }
.faq__item { border-bottom: 1px solid var(--hair-soft); }
.faq__item:first-child { border-top: 1px solid var(--hair-soft); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem;
  text-align: left;
  padding: 1.35rem 0.2rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-strong);
  transition: color 0.3s;
}
.faq__q:hover { color: var(--rose-deep); }
.faq__icon {
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  position: relative;
  transition: transform 0.45s var(--ease), background-color 0.3s, border-color 0.3s;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 11px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease), background-color 0.3s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: var(--bone); }
.faq__a { overflow: hidden; height: 0; }
html:not(.js) .faq__a { height: auto; }
.faq__a-inner { padding: 0 2.6rem 1.5rem 0.2rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   ABLAUF — 3 Schritte
   ============================================================ */
.steps { background: var(--cream-2); }
.steps__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
}
.stp { border-top: 1px solid var(--hair); padding-top: 1.4rem; }
.stp__idx {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 0.8rem;
}
.stp h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink-strong);
  margin-bottom: 0.5rem;
}
.stp p { font-size: 0.93rem; color: var(--ink-soft); }
@media (max-width: 720px) { .steps__grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ============================================================
   TERMINE — Kalender-Widget
   ============================================================ */
.book { background: var(--ivory); }
.book__wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.book__panel {
  background: var(--cream);
  border: 1px solid var(--hair-soft);
  border-radius: 24px;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  box-shadow: 0 40px 80px -50px rgba(45, 38, 34, 0.35);
}
.book__legend {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  justify-content: center;
  font-size: 0.78rem; color: var(--label);
  margin-top: 1.1rem;
}
.book__legend i {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  margin-right: 0.45rem;
  vertical-align: 0.02em;
}
.book__legend .free i { background: #7fa470; }
.book__legend .full i { background: rgba(45, 38, 34, 0.22); }

/* Monatskalender */
.cal { max-width: 560px; margin: 0 auto; }
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.cal__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink-strong);
}
.cal__nav {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: var(--ivory);
  font-size: 1.25rem;
  line-height: 1;
  display: grid; place-items: center;
  padding-bottom: 0.15rem;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, opacity 0.3s;
}
.cal__nav:not(:disabled):hover { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.cal__nav:disabled { opacity: 0.3; cursor: default; }
.cal__wd {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.3rem;
}
.cal__wd span {
  text-align: center;
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--label);
  padding: 0.3rem 0;
}
.cal__grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}
.cday {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.15rem;
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--ink);
  border: 1px solid transparent;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.25s var(--ease);
}
.cday--empty { pointer-events: none; }
.cday:not(:disabled):not(.cday--empty) { cursor: pointer; }
.cday:not(:disabled):not([aria-pressed="true"]):hover {
  border-color: rgba(45, 38, 34, 0.35);
  transform: scale(1.06);
}
.cday__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #7fa470;
}
.cday:disabled { color: rgba(45, 38, 34, 0.3); cursor: default; }
.cday:disabled .cday__dot { background: rgba(45, 38, 34, 0.16); }
.cday[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 12px 24px -14px rgba(32, 26, 22, 0.6);
}
.cday[aria-pressed="true"] .cday__dot { background: #b6d0aa; }
@media (max-width: 480px) {
  .cal__grid { gap: 0.1rem; }
  .cday { font-size: 0.95rem; }
}

.book__slots-label {
  margin: 1.4rem 0 0.8rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--label);
}
.book__slots { display: flex; flex-wrap: wrap; gap: 0.6rem; min-height: 2.9rem; }
.slot {
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem; font-weight: 600;
  background: var(--ivory);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.slot:not(:disabled):hover { border-color: var(--ink); transform: translateY(-2px); }
.slot[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.slot:disabled {
  color: rgba(45, 38, 34, 0.35);
  text-decoration: line-through;
  cursor: default;
  background: transparent;
}
.book__hint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* Anfrage-Formular */
.book__form { margin-top: 1.8rem; border-top: 1px solid var(--hair-soft); padding-top: 1.6rem; }
.book__pick {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.86rem; font-weight: 600;
  margin-bottom: 1.3rem;
}
.book__pick i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7fa470; display: inline-block;
}
.fgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.fld { display: grid; gap: 0.35rem; }
.fld--full { grid-column: 1 / -1; }
.fld label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--label);
}
.fld input, .fld select, .fld textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  min-height: 44px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.fld textarea { resize: vertical; min-height: 96px; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(156, 111, 85, 0.14);
}
.book__submit { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.book__status { font-size: 0.88rem; color: var(--ink-soft); }
.book__status.err { color: #a04b3a; }
.book__status a { color: inherit; text-decoration: underline; }

/* Ort-Wahl: zwei Pill-Karten (mobil / Studio) */
.ort { border: 0; padding: 0; margin: 0; min-width: 0; }
.ort legend {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 0.5rem;
  padding: 0;
}
.ort__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.ort__opt { position: relative; display: block; cursor: pointer; }
.ort__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ort__opt span {
  display: block;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(45, 38, 34, 0.16);
  border-radius: 14px;
  background: rgba(252, 249, 243, 0.7);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.ort__opt strong { display: block; font-weight: 600; font-size: 0.95rem; }
.ort__opt em {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--label);
  margin-top: 0.15rem;
}
.ort__opt:hover span { border-color: rgba(45, 38, 34, 0.4); }
.ort__opt input:checked + span {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  background: rgba(45, 38, 34, 0.045);
}
.ort__opt input:focus-visible + span {
  outline: 2px solid var(--rose-deep);
  outline-offset: 2px;
}
@media (max-width: 620px) { .ort__opts { grid-template-columns: 1fr; } }

/* Erfolgskarte */
.book__done { text-align: center; padding: 2.5rem 1rem; }
.book__done-check {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1.5px solid #7fa470;
  color: #64875a;
  font-size: 1.5rem;
  display: grid; place-items: center;
  margin: 0 auto 1.2rem;
}
.book__done h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.7rem; color: var(--ink-strong);
  margin-bottom: 0.6rem;
}
.book__done p { color: var(--ink-soft); max-width: 26rem; margin: 0 auto; }
.book__done .book__pick { margin: 1.2rem 0 0; }
.book__calbtns {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.book__calbtns .btn { padding: 0.7rem 1.3rem; font-size: 0.72rem; }

/* Cal.com-Integration (Click-to-Load) */
.book__calconsent { text-align: center; padding: 2.6rem 1rem; }
.book__calconsent h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-strong);
  margin-bottom: 0.7rem;
}
.book__calconsent p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 30rem;
  margin: 0 auto 1.5rem;
}
.book__calembed { min-height: 560px; }

[hidden] { display: none !important; }
@media (max-width: 620px) { .fgrid2 { grid-template-columns: 1fr; } }

/* ============================================================
   FINALE — dunkle Klammer + Footer
   ============================================================ */
.finale {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--bone);
  text-align: center;
  padding: clamp(5.5rem, 13vh, 9rem) var(--pad) clamp(4rem, 9vh, 6rem);
}
.finale__bg {
  position: absolute; inset: -6% 0;
  width: 100%; height: 112%;
  object-fit: cover;
  opacity: 0.14;
  filter: saturate(0.7);
  pointer-events: none;
}
.finale > *:not(.finale__bg) { position: relative; z-index: 1; }
.finale .eyebrow { color: rgba(243, 237, 226, 0.5); }
.finale__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.14;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 1rem auto 1.4rem;
  max-width: 26ch;
  color: var(--bone);
}
.finale__title em { font-style: italic; font-weight: 400; color: #d9b294; }
.finale__sub { color: var(--bone-mut); max-width: 30rem; margin: 0 auto 2.2rem; }

footer {
  background: var(--dark);
  color: var(--bone-mut);
  border-top: 1px solid var(--hair-d);
  padding: 2.4rem var(--pad) 2.6rem;
}
.foot__row {
  max-width: 1240px;
  margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.2rem;
}
.foot__brand {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--bone);
  text-decoration: none;
}
.foot__brand .mua {
  font-family: var(--sans); font-size: 0.6em; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #d9b294; margin-left: 0.3rem;
}
.foot__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.foot__nav a {
  font-size: 0.8rem; color: var(--bone-mut);
  text-decoration: none;
  transition: color 0.3s;
}
.foot__nav a:hover { color: var(--bone); }
.foot__fine {
  max-width: 1240px;
  margin: 1.6rem auto 0;
  font-size: 0.74rem;
  color: rgba(243, 237, 226, 0.4);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html.js .hero__title .line__inner, html.js .hero .fade-in,
  html.js .hero__media, html.js .hero__media img,
  html.js .hero__mini, html.js .hero__badge {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    clip-path: inset(0 round 300px 300px 18px 18px) !important;
  }
  html.js .hero__media img { clip-path: none !important; }
  .marq__track { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}
html.rm .hero__title .line__inner, html.rm .hero .fade-in,
html.rm .hero__media, html.rm .hero__media img,
html.rm .hero__mini, html.rm .hero__badge {
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
}
html.rm .marq__track, html.rm .hero__badge svg, html.rm .hero__cue::after { animation: none !important; }

/* Im Landing-Iframe (Tablet-Preview): schwebende UI ausblenden, Hero sofort sichtbar */
html.framed .fab, html.framed .progress, html.framed .curtain { display: none !important; }
