/* ============================================
   BecauseMe Hairsystems — Master Stylesheet
   ============================================ */

:root {
  --bg: #E8DCC4;
  --bg-2: #F5EFE4;
  --bg-3: #EFE5D0;
  --bg-4: #0B0B0C;
  --bg-dark: #0B0B0C;
  --ink: #2C2418;
  --ink-muted: #5F5648;
  --ink-dim: #8A7F6E;
  --ink-on-dark: #F5EFE4;
  --ink-on-dark-muted: #B8AFA0;
  --gold: #8A6E2F;
  --gold-bright: #C9A24A;
  --gold-dark: #5C4A1F;
  --line: rgba(138, 110, 47, 0.25);
  --line-strong: rgba(138, 110, 47, 0.55);
  --whatsapp: #25d366;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- SCROLLBAR (gold accent) ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(138, 110, 47, 0.08); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 0;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.08; }
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--gold-bright); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  cursor: pointer;
  transition: all .35s ease, box-shadow .5s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(201, 162, 74, 0.25) 50%,
    transparent 80%
  );
  transition: left .7s ease;
  pointer-events: none;
}
.btn:hover::before { left: 100%; }
.btn:hover { background: var(--gold); color: #0b0b0c; letter-spacing: 0.18em; box-shadow: 0 4px 24px rgba(201, 162, 74, 0.25); }
.btn.solid { background: var(--gold); color: #0b0b0c; }
.btn.solid:hover { background: var(--gold-bright); color: #0b0b0c; box-shadow: 0 4px 28px rgba(201, 162, 74, 0.35); }
.btn.small { padding: 10px 20px; font-size: 0.74rem; }

/* ---------- NAVIGATION ---------- */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(232, 220, 196, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-link img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.84rem;
  align-items: center;
}
.nav-links a {
  color: var(--ink-muted);
  transition: color .3s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: flex;
  gap: 4px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.lang-switch button {
  color: var(--ink-muted);
  padding: 4px 8px;
  border: 1px solid transparent;
  transition: all .3s;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.lang-switch button.active { color: var(--gold-bright); border-color: var(--line); }
.lang-switch button:hover { color: var(--gold-bright); }

.burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 110;
}
.burger span {
  display: block;
  height: 1px;
  background: var(--gold);
  transition: all .4s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .logo-link img { height: 44px; }

  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* dynamic viewport für mobile browser bars */
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    font-size: 1.4rem;
    font-family: var(--serif);
    z-index: 200;
    padding: 90px 20px 40px;
    overflow-y: auto;
  }
  .nav-links.mobile-open a { color: var(--ink); }
  .nav-links.mobile-open .btn { font-size: 0.82rem; font-family: var(--sans); }

  /* FIX: Wenn Menü offen ist, backdrop-filter auf nav.top ausschalten,
     damit das Menü wirklich fullscreen fixed ist und nicht auf nav.top
     als Containing-Block beschränkt wird. */
  body.nav-open nav.top {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    border-bottom: none;
  }
  /* Burger bleibt klickbar und über allem */
  body.nav-open .burger { z-index: 210; position: relative; }
  body.nav-open .logo-link { z-index: 210; position: relative; }
  /* Sticky Shop-Tabs während Menü ausblenden (sonst überragen sie das Menü NICHT,
     aber sie stören optisch durch den blur-Effekt) */
  body.nav-open .shop-tabs { display: none; }
}

/* ---------- SECTIONS ---------- */
section { padding: 120px 0; position: relative; }
@media (max-width: 700px) { section { padding: 80px 0; } }
section .head { max-width: 760px; margin-bottom: 64px; }
section .head h2 { margin-top: 22px; }
section .head p { color: var(--ink-muted); margin-top: 24px; font-size: 1.05rem; }
section .head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- HERO GENERIC ---------- */
.hero-basic {
  min-height: 50vh;
  display: grid;
  place-items: center;
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-basic::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,162,74,0.14), transparent 60%);
  pointer-events: none;
}
.hero-basic .wrap { position: relative; z-index: 2; max-width: 880px; }
.hero-basic h1 { margin: 26px 0 24px; }
.hero-basic p.lede { color: var(--ink-muted); font-size: 1.15rem; max-width: 620px; margin: 0 auto; }

/* ---------- HERO HOME ---------- */
.hero-home {
  min-height: 100vh;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  --hero-parallax: 0;
}
.hero-home::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at calc(85% - (var(--hero-parallax) * 8%)) calc(40% + (var(--hero-parallax) * 6%)), rgba(201,162,74,0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at calc(15% + (var(--hero-parallax) * 6%)) calc(80% - (var(--hero-parallax) * 8%)), rgba(201,162,74,0.06), transparent 60%);
  pointer-events: none;
  transition: background .15s linear;
}
.hero-home .wrap { position: relative; z-index: 2; width: 100%; }
.hero-home .intro { max-width: 820px; }
.hero-home h1 { margin: 26px 0 30px; }
.hero-home p.lede {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 620px;
}

.dual-weiche {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 820px) { .dual-weiche { grid-template-columns: 1fr; } }
.weiche-card {
  padding: 44px 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all .4s ease;
  display: block;
  position: relative;
  overflow: hidden;
}
.weiche-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s ease;
}
.weiche-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.weiche-card:hover::before { transform: scaleY(1); }
.weiche-card .tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.weiche-card h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 18px;
}
.weiche-card p {
  color: var(--ink-muted);
  font-size: 0.96rem;
  margin-bottom: 26px;
}
.weiche-card .arrow {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .3s;
}
.weiche-card:hover .arrow { gap: 18px; }

/* ---------- VIDEO PLACEHOLDER ---------- */
.video-hero {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1d 0%, #0f0f11 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  cursor: pointer;
}
.video-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
}
.video-hero .play-btn {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(11, 11, 12, 0.7);
  display: grid; place-items: center;
  position: relative;
  z-index: 2;
  transition: all .4s;
}
.video-hero .play-btn::before {
  content: "";
  border: 12px solid transparent;
  border-left: 18px solid var(--gold-bright);
  margin-left: 6px;
}
.video-hero:hover .play-btn { background: var(--gold); transform: scale(1.08); }
.video-hero:hover .play-btn::before { border-left-color: #0b0b0c; }
.video-hero .label {
  position: absolute;
  bottom: 24px; left: 28px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  z-index: 2;
}

/* ---------- STATS ---------- */
.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-bright);
  line-height: 1;
}
.hero-stats .stat span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
  display: block;
}

/* ---------- CARDS / GRIDS ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.card {
  padding: 40px 34px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all .4s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); }
.card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.card h3 { margin: 14px 0 18px; color: var(--gold-bright); }
.card p { color: var(--ink-muted); font-size: 0.94rem; }
.card ul { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.card ul li { font-size: 0.88rem; color: var(--ink); padding-left: 22px; position: relative; }
.card ul li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 12px; height: 1px; background: var(--gold);
}

/* ---------- PULL QUOTE ---------- */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  border-left: 2px solid var(--gold);
  padding: 10px 0 10px 32px;
}
.pull-quote footer {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
}

/* ---------- PROBLEM LIST ---------- */
.problem-list { list-style: none; display: grid; gap: 18px; }
.problem-list li {
  padding: 22px 26px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.problem-list li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-top: 10px;
  flex-shrink: 0;
}
.problem-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 500;
}
.problem-list span { color: var(--ink-muted); font-size: 0.92rem; }

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line);
}
.step:last-child { border-right: none; }
@media (min-width: 901px) {
  .step { padding-left: 32px; }
  .step:first-child { padding-left: 0; }
}
@media (max-width: 900px) {
  .step { border-right: none; border-bottom: 1px solid var(--line); padding: 30px 0; }
  .step:last-child { border-bottom: none; }
}
.step-num {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--ink-muted); font-size: 0.9rem; }

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1a1d, #0f0f11);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s;
}
.gallery-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.gallery-item .split {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gallery-item .split > div {
  position: relative;
  display: grid;
  place-items: end center;
  padding-bottom: 22px;
}
.gallery-item .split > div:first-child { background: linear-gradient(180deg, #202024, #131315); }
.gallery-item .split > div:last-child  { background: linear-gradient(180deg, #1f1a10, #2a2212); }
.gallery-item .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold-bright);
  z-index: 2;
}
.gallery-item .split > div:first-child .label { color: var(--ink-muted); }
.gallery-item::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: var(--gold);
}
.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-family: var(--serif);
  font-size: 0.86rem;
  font-style: italic;
  color: var(--ink);
  z-index: 3;
}

/* ---------- PRODUCT CARDS (SHOP) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all .4s;
  overflow: hidden;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.product-card .image {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #1a1a1d, #0f0f11);
  position: relative;
  display: grid;
  place-items: center;
}
.product-card .image::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.product-card .coming {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  padding: 12px 20px;
  border: 1px solid var(--gold);
  background: rgba(11, 11, 12, 0.85);
}
.product-card .info { padding: 26px 24px; }
.product-card .category {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.product-card h3 { margin-bottom: 8px; color: var(--ink); font-size: 1.2rem; }
.product-card p { color: var(--ink-muted); font-size: 0.88rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; margin: 0 auto; }
details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--ink);
  transition: color .3s;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { color: var(--gold-bright); }
details summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  transition: transform .4s;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }

/* Sanft animierter Inhalt */
details > *:not(summary) {
  overflow: hidden;
}
details p {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 0.96rem;
  max-width: 780px;
  animation: details-reveal .8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes details-reveal {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  padding: 40px 34px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 10px; left: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.04rem;
  color: var(--ink);
  margin: 40px 0 28px;
  position: relative;
}
.testimonial footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial footer strong { font-family: var(--serif); font-size: 1rem; }
.testimonial footer span { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; }

/* ---------- FORMS ---------- */
.form-grid {
  display: grid;
  gap: 22px;
  max-width: 640px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-grid label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.94rem;
  transition: border-color .3s;
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-grid .consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.form-grid .consent input { width: auto; margin-top: 4px; }

.form-success {
  display: none;
  padding: 36px 28px;
  border: 1px solid var(--gold);
  background: rgba(201,162,74,0.08);
  color: var(--gold-bright);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
}
.form-success.show {
  display: block;
  animation: success-appear .6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.form-success .success-check {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
}
.form-success .success-check circle {
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: check-circle .7s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.form-success .success-check path {
  stroke: var(--gold-bright);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: check-stroke .4s .55s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
@keyframes success-appear {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes check-circle {
  to { stroke-dashoffset: 0; }
}
@keyframes check-stroke {
  to { stroke-dashoffset: 0; }
}

/* ---------- DARK SECTION (reusable utility) ---------- */
.dark-section {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  position: relative;
  border-top: 1px solid rgba(201,162,74,0.12);
  border-bottom: 1px solid rgba(201,162,74,0.12);
}
.dark-section .eyebrow { color: var(--gold-bright); }
.dark-section .eyebrow::before { background: var(--gold-bright); }
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: var(--ink-on-dark); }
.dark-section h2 em, .dark-section h1 em, .dark-section h3 em { color: var(--gold-bright); }
.dark-section p { color: var(--ink-on-dark-muted); }
.dark-section .btn { color: var(--gold-bright); border-color: var(--gold-bright); }
.dark-section .btn:hover { background: var(--gold-bright); color: #0b0b0c; }
.dark-section .btn.solid { background: var(--gold-bright); color: #0b0b0c; border-color: var(--gold-bright); }

/* ---------- VERSPRECHEN (PDF-style statement) ---------- */
.versprechen { padding: 130px 0; }
.versprechen .wrap { max-width: 1040px; }
.versprechen .pull-quote-dark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.28;
  color: var(--ink-on-dark);
  border-left: 2px solid var(--gold-bright);
  padding: 18px 0 18px 36px;
  margin-top: 30px;
  max-width: 860px;
}
.versprechen .pull-quote-dark em { color: var(--gold-bright); font-style: italic; }
.versprechen .pull-quote-dark footer {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .versprechen { padding: 90px 0; }
  .versprechen .pull-quote-dark { padding: 14px 0 14px 24px; }
}

/* ---------- CTA SECTION (dark stage) ---------- */
.cta-section {
  padding: 130px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,162,74,0.18), transparent 65%),
    var(--bg-dark);
  color: var(--ink-on-dark);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(201,162,74,0.16);
}
.cta-section .wrap { max-width: 880px; position: relative; z-index: 2; }
.cta-section .eyebrow { color: var(--gold-bright); }
.cta-section .eyebrow::before { background: var(--gold-bright); }
.cta-section h2 { margin: 26px 0 24px; color: var(--ink-on-dark); }
.cta-section h2 em { color: var(--gold-bright); }
.cta-section p { max-width: 600px; margin: 0 auto 40px; color: var(--ink-on-dark-muted); font-size: 1.06rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* Outline-Button auf dunklem Grund bleibt gut lesbar dank gold-bright */
.cta-section .btn { color: var(--gold-bright); border-color: var(--gold-bright); }
.cta-section .btn:hover { background: var(--gold-bright); color: #0b0b0c; }
.cta-section .btn.solid { background: var(--gold-bright); color: #0b0b0c; border-color: var(--gold-bright); }
.cta-section .btn.solid:hover { background: var(--gold); color: #0b0b0c; }

/* ---------- FOOTER ---------- */
footer.site {
  background: #0B0B0C;
  color: var(--ink-on-dark);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
footer.site h4 { color: var(--gold-bright) !important; }
footer.site a, footer.site p { color: var(--ink-on-dark-muted) !important; }
footer.site a:hover { color: var(--gold-bright) !important; }
footer.site .foot-bottom { color: rgba(245, 239, 228, 0.5) !important; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.foot-grid a, .foot-grid p {
  color: var(--ink-muted);
  font-size: 0.86rem;
  display: block;
  margin-bottom: 10px;
  transition: color .3s;
}
.foot-grid a:hover { color: var(--gold-bright); }
.foot-grid .about img { height: 56px; margin-bottom: 18px; }
.foot-grid .about p { max-width: 340px; }

.social-placeholders { display: flex; gap: 12px; margin-top: 14px; }
.social-placeholders a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-dim);
  margin: 0;
  transition: all .3s;
}
.social-placeholders a:hover { border-color: var(--gold); color: var(--gold); }
.social-placeholders svg { width: 16px; height: 16px; fill: currentColor; }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.74rem;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.foot-bottom a { color: var(--ink-dim); }
.foot-bottom a:hover { color: var(--gold-bright); }
.foot-bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- WHATSAPP FLOAT BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@media (max-width: 600px) {
  .whatsapp-float { bottom: 18px; left: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ---------- CHATBOT ---------- */
.chatbot-toggle {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(201, 162, 74, 0.4);
  z-index: 91;
  transition: all .3s;
  color: #0b0b0c;
}
.chatbot-toggle:hover { transform: scale(1.08); background: var(--gold-bright); }
.chatbot-toggle svg { width: 28px; height: 28px; }
@media (max-width: 600px) {
  .chatbot-toggle { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

.chatbot-panel {
  position: fixed;
  bottom: 100px;
  right: 26px;
  width: 440px;
  max-width: calc(100vw - 40px);
  height: 680px;
  max-height: calc(100vh - 140px);
  background: var(--bg-2);
  border: 1px solid var(--gold);
  z-index: 92;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
  padding: 18px 22px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-header .title strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-bright);
  display: block;
}
.chatbot-header .title span {
  font-size: 0.68rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.chatbot-close {
  color: var(--ink-muted);
  font-size: 1.6rem;
  padding: 0 6px;
  line-height: 1;
}
.chatbot-close:hover { color: var(--gold); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chatbot-messages::-webkit-scrollbar { width: 6px; }
.chatbot-messages::-webkit-scrollbar-track { background: var(--bg-3); }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--gold-dark); }

.msg {
  max-width: 88%;
  padding: 12px 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.msg.bot {
  align-self: flex-start;
  background: var(--bg-3);
  border-left: 2px solid var(--gold);
  color: var(--ink);
}
.msg.user {
  align-self: flex-end;
  background: var(--gold);
  color: #0b0b0c;
  font-weight: 500;
}
.chatbot-suggestions {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--bg-3);
}
.chatbot-suggestions button {
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.76rem;
  transition: all .3s;
}
.chatbot-suggestions button:hover { background: var(--gold); color: #0b0b0c; border-color: var(--gold); }

@media (max-width: 600px) {
  .chatbot-panel {
    right: 10px; left: 10px;
    width: auto; bottom: 88px;
    height: calc(100vh - 160px);
  }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-3);
  border-top: 1px solid var(--gold);
  padding: 22px 0;
  z-index: 95;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .wrap {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner p { color: var(--ink-muted); font-size: 0.86rem; flex: 1; min-width: 260px; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }

/* ---------- REVEAL ANIM ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.3s ease, transform 1.3s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Stagger: wenn mehrere .reveal-Geschwister zusammen eingeblendet werden,
   bekommt jedes einen kleinen Versatz — wirkt wie ein Aufblättern */
.reveal.in.reveal-delay-1 { transition-delay: 0.2s; }
.reveal.in.reveal-delay-2 { transition-delay: 0.4s; }
.reveal.in.reveal-delay-3 { transition-delay: 0.6s; }

/* ---------- HERO-WORT-STAGGER (Startseite) ---------- */
.hero-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade-up 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-reveal { animation-delay: 0.2s; }

.hero-title-stagger .hero-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: hero-fade-up 1.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-title-stagger .hero-line:nth-child(1) { animation-delay: 0.45s; }
.hero-title-stagger .hero-line:nth-child(3) { animation-delay: 1.05s; }
.hero-title-stagger .hero-line:nth-child(5) { animation-delay: 1.75s; }

/* Goldene "Zurück."-Line: zusätzlicher Schimmer-Effekt */
.hero-title-stagger .hero-line-gold {
  position: relative;
}
.hero-title-stagger .hero-line-gold::after {
  content: "";
  position: absolute;
  top: 0; left: -10%;
  width: 0;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(201, 162, 74, 0.3) 50%,
    transparent 100%
  );
  animation: hero-shimmer 2.2s ease-out forwards;
  animation-delay: 2.6s;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Lede (Untertitel) fadet nach den drei Zeilen ein */
.hero-home .lede.hero-reveal { animation-delay: 2.2s; }

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-shimmer {
  0%   { width: 0; left: -10%; opacity: 0; }
  25%  { opacity: 1; }
  100% { width: 120%; left: 110%; opacity: 0; }
}

/* Respektiere prefers-reduced-motion (barrierefrei) */
@media (prefers-reduced-motion: reduce) {
  .hero-reveal,
  .hero-title-stagger .hero-line {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-title-stagger .hero-line-gold::after { display: none; }
  .reveal { transition: none; }
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  text-align: center;
  padding: 40px 30px;
}
.team-card .avatar {
  width: 120px; height: 120px;
  margin: 0 auto 24px;
  background: var(--bg-3);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.team-card .role {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.team-card p { color: var(--ink-muted); font-size: 0.9rem; }

/* ---------- DOWNLOAD ITEMS ---------- */
.download-list { display: grid; gap: 18px; max-width: 860px; }
.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all .3s;
  gap: 20px;
  flex-wrap: wrap;
}
.download-item:hover { border-color: var(--gold); }
.download-item .info strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}
.download-item .info span { font-size: 0.82rem; color: var(--ink-muted); }

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 800px;
  padding-top: 40px;
}
.legal-content h2 { font-size: 1.8rem; margin: 40px 0 18px; }
.legal-content h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--gold-bright); }
.legal-content p, .legal-content ul { color: var(--ink-muted); font-size: 0.94rem; margin-bottom: 14px; }
.legal-content ul { padding-left: 24px; }
.legal-content strong { color: var(--ink); }

/* ---------- BEFORE/AFTER SLIDER ---------- */
.ba-slider { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line); cursor: ew-resize; user-select: none; background: #0f0f11; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-slider .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); transform: translateX(-50%); pointer-events: none; }
.ba-slider .ba-handle::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--gold); border: 2px solid #0b0b0c; transition: box-shadow .4s ease, transform .4s ease; }
.ba-slider.ba-hinting .ba-handle::before {
  box-shadow: 0 0 0 8px rgba(201, 162, 74, 0.18), 0 0 30px rgba(201, 162, 74, 0.4);
  transform: translate(-50%, -50%) scale(1.08);
}
.ba-slider .ba-handle::after { content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: #0b0b0c; font-weight: 700; font-size: 14px; letter-spacing: 2px; }
.ba-slider .ba-label { position: absolute; top: 16px; padding: 6px 12px; background: rgba(11,11,12,0.75); color: var(--gold-bright); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; z-index: 2; }
.ba-slider .ba-label.before { left: 16px; }
.ba-slider .ba-label.after { right: 16px; }
.ba-caption { margin-top: 14px; font-family: var(--serif); font-style: italic; color: var(--gold-bright); font-size: 0.95rem; text-align: center; }

/* ---------- AUDIENCE SWITCH HINT ---------- */
.audience-switch-wrap { margin-bottom: 28px; }
.audience-switch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 239, 228, 0.6);
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
  transition: all .3s ease;
}
.audience-switch:hover {
  border-color: var(--gold);
  background: rgba(245, 239, 228, 0.9);
}
.audience-switch span { color: var(--ink); }
.audience-switch a {
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.audience-switch a::after { content: "→"; transition: transform .3s; }
.audience-switch:hover a::after { transform: translateX(4px); }
.audience-switch .sep {
  width: 1px;
  height: 14px;
  background: var(--line);
}

/* ---------- CHATBOT CATEGORIES ---------- */
.chatbot-suggestions { flex-direction: column; align-items: stretch; }
.cat-btn {
  display: flex !important; align-items: center; gap: 12px;
  padding: 12px 16px !important; text-align: left !important;
  border: 1px solid var(--line) !important; color: var(--ink-on-dark) !important;
  font-size: 0.88rem !important; background: transparent;
  transition: all .3s;
}
.cat-btn:hover { background: var(--gold) !important; color: #0b0b0c !important; border-color: var(--gold) !important; }
.cat-btn svg { flex-shrink: 0; color: var(--gold-bright); }
.cat-btn:hover svg { color: #0b0b0c; }
.cat-back {
  padding: 8px 12px !important; font-size: 0.78rem !important;
  color: var(--ink-on-dark-muted) !important; border: none !important;
  text-align: left !important; margin-bottom: 4px;
}
.cat-back:hover { color: var(--gold-bright) !important; }
.q-btn {
  padding: 10px 14px !important; font-size: 0.82rem !important;
  text-align: left !important; border: 1px solid var(--line) !important;
  color: var(--gold-bright) !important;
}
.q-btn:hover { background: var(--gold) !important; color: #0b0b0c !important; }
.cat-escape {
  display: block; margin-top: 8px; padding: 10px 12px;
  font-size: 0.78rem; color: var(--gold-bright) !important;
  text-align: center; border-top: 1px solid var(--line);
  font-style: italic;
}
.cat-escape:hover { color: #fff !important; }
.chatbot-print {
  color: var(--ink-on-dark-muted); font-size: 1rem; padding: 4px 10px;
  margin-right: 6px; transition: color .3s;
}
.chatbot-print:hover { color: var(--gold-bright); }

/* ---------- CHATBOT CONTRAST FIX (override v2) ---------- */
.chatbot-panel { background: #F5EFE4 !important; border-color: var(--gold) !important; }
.chatbot-header { background: #EFE5D0 !important; border-bottom: 1px solid var(--line) !important; }
.chatbot-header .title strong { color: var(--ink) !important; }
.chatbot-header .title span { color: var(--ink-muted) !important; }
.chatbot-close, .chatbot-print { color: var(--ink-muted) !important; }
.chatbot-close:hover, .chatbot-print:hover { color: var(--gold-dark) !important; }
.chatbot-messages { background: #F5EFE4; }
.msg.bot { background: #EFE5D0 !important; border-left: 3px solid var(--gold-dark) !important; color: var(--ink) !important; }
.msg.user { background: var(--gold-dark) !important; color: #F5EFE4 !important; }
.chatbot-suggestions { background: #EFE5D0 !important; border-top: 1px solid var(--line) !important; }
.cat-btn {
  color: var(--ink) !important;
  font-weight: 500 !important;
  background: #F5EFE4 !important;
  border: 1px solid var(--gold-dark) !important;
}
.cat-btn svg { color: var(--gold-dark) !important; }
.cat-btn:hover { background: var(--gold-dark) !important; color: #F5EFE4 !important; }
.cat-btn:hover svg { color: #F5EFE4 !important; }
.q-btn {
  color: var(--ink) !important;
  font-weight: 500 !important;
  background: #F5EFE4 !important;
  border: 1px solid var(--gold-dark) !important;
}
.q-btn:hover { background: var(--gold-dark) !important; color: #F5EFE4 !important; }
.cat-back { color: var(--ink-muted) !important; font-weight: 500 !important; }
.cat-back:hover { color: var(--gold-dark) !important; }
.cat-escape { color: var(--gold-dark) !important; font-weight: 500; border-top-color: var(--line) !important; }
.cat-escape:hover { color: var(--ink) !important; }

/* Fix: chatbot suggestion buttons must stack vertically and scroll internally */
.chatbot-suggestions {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  max-height: 240px !important;
  overflow-y: auto !important;
}

/* ---------- STICKY CTA (bottom-center, erscheint bei >60% Scroll) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease, transform .5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sticky-cta .btn {
  box-shadow: 0 10px 40px rgba(11, 11, 12, 0.3);
  background: var(--gold-bright);
  color: #0b0b0c;
  border-color: var(--gold-bright);
  font-size: 0.78rem;
  border-radius: 100px;
  padding: 13px 30px;
}
.sticky-cta .btn:hover {
  background: var(--gold);
}
@media (max-width: 600px) {
  .sticky-cta { bottom: 22px; }
  .sticky-cta .btn { padding: 11px 22px; font-size: 0.72rem; letter-spacing: 0.12em; }
}

