@import url("fonts/fraunces.css");
@import url("fonts/inter.css");

/* =========================================================
   DS HEALTH — Daniel Schade
   Design-System
   ========================================================= */

:root {
  /* Farben */
  --bg:            #F4F0E8;   /* warmes Bone/Ivory */
  --bg-2:          #EDE7DC;   /* leicht abgesetzt */
  --surface:       #FCFAF5;   /* Karten / helle Flächen */
  --ink:           #1B1A16;   /* warmes Fast-Schwarz */
  --ink-soft:      #46443D;
  --muted:         #7C7970;
  --line:          rgba(27,26,22,.13);
  --line-soft:     rgba(27,26,22,.08);
  --accent:        #5B0C22;   /* tiefes Bordeaux (aus Logo gemessen) */
  --accent-deep:   #420818;
  --accent-soft:   #8A4452;
  --gold:          #A9854F;   /* Bronze-Akzent */
  --gold-soft:     #C3A878;
  --dark:          #1B1A16;
  --dark-2:        #232119;
  --on-dark:       #EFEAE0;
  --on-dark-mut:   rgba(239,234,224,.62);

  /* Typografie */
  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --container: 1180px;
  --container-narrow: 760px;
  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-sans);
  background: transparent;
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* ---------- Lebendiger Aurora-Hintergrund ---------- */
/* Aurora-Effekt – portiert von Aceternity „Aurora Background" (React/Tailwind)
   in reines CSS und an das Bordeaux/Gold-Branding angepasst. Dezent gehalten. */
body::before {
  content: "";
  position: fixed;
  inset: -10px;
  z-index: -1;
  pointer-events: none;
  --aurora: repeating-linear-gradient(100deg,
    #5B0C22 10%, #8A4452 15%, #A9854F 20%, #C3A878 25%, #5B0C22 30%);
  --streaks: repeating-linear-gradient(100deg,
    #F4F0E8 0%, #F4F0E8 7%, transparent 10%, transparent 12%, #F4F0E8 16%);
  background-image: var(--streaks), var(--aurora);
  background-size: 300% 200%;
  background-position: 50% 50%, 50% 50%;
  filter: blur(10px);
  opacity: .34;
  will-change: background-position;
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, #000 10%, transparent 72%);
          mask-image: radial-gradient(ellipse at 100% 0%, #000 10%, transparent 72%);
  animation: aurora 60s linear infinite;
}
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 50% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 380;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  color: var(--ink);
}

.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 360;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h2.section-title { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 420; }

.lead {
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

p { color: var(--ink-soft); }
em, .italic { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

/* Eyebrow / Kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-family: var(--f-sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: var(--container-narrow); margin-left: auto; margin-right: auto; }
section { position: relative; }
.section-pad { padding: clamp(72px, 11vw, 140px) 0; }
.section-pad-sm { padding: clamp(56px, 8vw, 96px) 0; }

.bg-alt { background: var(--bg-2); }
.bg-surface { background: var(--surface); }

.divider { height: 1px; background: var(--line); border: none; }

/* Intro-Block */
.intro { max-width: 720px; }
.intro.center { margin: 0 auto; text-align: center; }
.intro .eyebrow { margin-bottom: 22px; }
.intro .lead { margin-top: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 15px 30px;
  font-family: var(--f-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
  text-align: center;
  line-height: 1.2;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 14px 30px -14px rgba(91,12,34,.7); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(27,26,22,.03); }

.btn-light {
  background: var(--on-dark);
  color: var(--dark);
}
.btn-light:hover { background: #fff; box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }

.btn-ghost-light {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid rgba(239,234,224,.28);
}
.btn-ghost-light:hover { border-color: var(--on-dark); background: rgba(239,234,224,.06); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* Text-Link mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  font-size: .95rem;
  color: var(--accent);
  letter-spacing: .01em;
}
.link-arrow span.arr { transition: transform .35s var(--ease); }
.link-arrow:hover span.arr { transform: translateX(5px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(244,240,232,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  letter-spacing: .04em;
}
.brand .mark {
  width: 44px; height: 44px;
  object-fit: contain;
  display: block;
  flex: none;
}
.brand .brand-name {
  font-size: 1.18rem;
  font-weight: 420;
  line-height: 1;
}
.brand .brand-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 16px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius);
  position: relative;
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1.5px;
  background: var(--gold);
}
.nav-cta { margin-left: 14px; padding: 11px 22px; }
/* Button-Textfarbe gegen .nav-links a durchsetzen */
.site-header .nav-links a.nav-cta,
.site-header .nav-links a.nav-cta:hover { color: var(--bg); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  border-radius: var(--radius);
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.6px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile-Menü */
@media (max-width: 920px) {
  .nav-toggle { display: block; z-index: 120; }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%; height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    background: var(--bg);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 110;
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.6rem; font-family: var(--f-display); font-weight: 380; color: var(--ink); padding: 8px 0; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--accent); }
  .nav-cta { margin-left: 0; margin-top: 18px; font-size: 1rem !important; padding: 14px 28px; font-family: var(--f-sans) !important; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: 78px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 110px);
}
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy .display { margin-bottom: 26px; }
.hero-copy .display .accent-word { font-style: italic; color: var(--accent); }
.hero-copy .lead { max-width: 30ch; margin-bottom: 38px; }
.hero-copy .btn-row { margin-bottom: 34px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}

.hero-figure {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-figure .ph { width: 100%; height: 100%; border-radius: var(--radius-lg); }
.hero-figure .badge {
  position: absolute;
  left: -22px; bottom: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 24px 50px -24px rgba(27,26,22,.4);
  max-width: 230px;
}
.hero-figure .badge .num {
  font-family: var(--f-display);
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
}
.hero-figure .badge .lbl {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
}
.hero-figure .ring {
  position: absolute;
  inset: auto -18px -18px auto;
  width: 120px; height: 120px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 440px; margin: 0 auto; order: -1; }
  .hero-figure .badge { left: 16px; }
}

/* =========================================================
   SCROLL-HERO (gepinnt, nur Desktop)
   ========================================================= */
.scroll-hero { display: none; }

@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
  .scroll-hero { display: block; height: 240vh; position: relative; }
  .hero { display: none; }
}

.sh-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--dark);
}
.sh-media { position: absolute; inset: 0; z-index: 0; }
.sh-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.04);
  transform-origin: center 30%;
  will-change: transform;
}
.sh-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,8,11,.55) 0%, rgba(15,8,11,.18) 32%, rgba(15,8,11,.30) 64%, rgba(15,8,11,.78) 100%),
    radial-gradient(60vmax 50vmax at 70% 18%, rgba(91,12,34,.30), transparent 60%);
}

.sh-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  will-change: opacity, transform;
}
.sh-intro .container { max-width: 880px; }
.sh-intro .eyebrow { margin-bottom: 24px; }
.sh-title {
  color: var(--on-dark);
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.sh-title .accent-word { font-style: italic; color: var(--gold-soft); }
.sh-lead {
  color: rgba(239,234,224,.86);
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  max-width: 46ch;
  margin-bottom: 36px;
}
.sh-intro .btn-row { gap: 14px; }

/* Feature-Karten (blenden beim Scrollen ein) */
.sh-features { opacity: 0; }
.sh-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sh-card {
  background: rgba(28,16,20,.42);
  border: 1px solid rgba(239,234,224,.16);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  -webkit-backdrop-filter: blur(10px) saturate(130%);
          backdrop-filter: blur(10px) saturate(130%);
}
.sh-card .n {
  font-family: var(--f-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.sh-card h3 { color: var(--on-dark); font-size: 1.25rem; margin-bottom: 10px; }
.sh-card p { color: rgba(239,234,224,.7); font-size: .96rem; }

/* Fortschrittsbalken */
.sh-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(239,234,224,.16);
  z-index: 2;
}
.sh-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

/* Scroll-Hinweis */
.sh-hint {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(239,234,224,.7);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  transition: opacity .4s var(--ease);
}
.sh-hint svg { width: 18px; height: 18px; animation: shBounce 1.8s var(--ease) infinite; }
@keyframes shBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Header über dem Bild: helle Schrift */
.site-header.over-hero .brand-name { color: var(--on-dark); }
.site-header.over-hero .brand-sub { color: rgba(239,234,224,.7); }
.site-header.over-hero .nav-links a { color: rgba(239,234,224,.82); }
.site-header.over-hero .nav-links a:hover,
.site-header.over-hero .nav-links a.active { color: #fff; }
.site-header.over-hero .nav-toggle span { background: var(--on-dark); }
.site-header.over-hero.scrolled { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent; box-shadow: none; }

/* =========================================================
   AUSTRALIEN (Über mich) — Fenster-Reveal-Zoom + Mobil-Fallback
   ========================================================= */
/* Mobil / reduced-motion (Default): normaler Fluss = Banner + Text */
.au-bg { margin: clamp(40px, 7vw, 80px) 0 0; }
.au-bg img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--radius-lg);
}
.au-scrim, .au-eyebrow, .au-progress, .au-hint { display: none; }
.au-reveal { padding: clamp(56px, 8vw, 96px) 0; }

/* Desktop: Fenster zieht sich aus der Mitte auf, bis der Abschnitt allein zu sehen ist */
@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
  .au-stage { position: relative; height: 260vh; }
  .au-sticky {
    position: sticky; top: 0;
    height: 100vh; height: 100dvh;
    overflow: hidden; background: var(--dark);
  }
  .au-bg { position: absolute; inset: 0; margin: 0; z-index: 0; }
  .au-bg img { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; }
  .au-scrim {
    display: block; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,8,11,.45), rgba(15,8,11,.14) 35%, rgba(15,8,11,.55));
  }
  .au-eyebrow {
    display: block; position: absolute; z-index: 2;
    top: clamp(96px, 16vh, 180px); left: 0; right: 0;
    text-align: center; will-change: opacity;
  }
  .au-reveal {
    position: absolute; inset: 0; z-index: 1; padding: 0;
    display: flex; align-items: center;
    background: var(--bg);
    clip-path: inset(42% round 26px);
    will-change: clip-path;
  }
  .au-progress {
    display: block; position: absolute; left: 0; right: 0; bottom: 0;
    height: 3px; background: rgba(239,234,224,.16); z-index: 3;
  }
  .au-progress span {
    display: block; height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--gold));
  }
  .au-hint {
    display: flex; position: absolute; left: 50%; bottom: 26px;
    transform: translateX(-50%); z-index: 3;
    flex-direction: column; align-items: center; gap: 4px;
    color: rgba(239,234,224,.7); font-size: .72rem;
    letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
    will-change: opacity;
  }
  .au-hint svg { width: 18px; height: 18px; animation: shBounce 1.8s var(--ease) infinite; }
}

/* =========================================================
   SOCIAL (Footer-Icons, Instagram-Vorschau, Google-Zeile)
   ========================================================= */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(244,240,232,.07); border: 1px solid rgba(244,240,232,.16);
  color: rgba(244,240,232,.85);
  transition: border-color .2s, background .2s, transform .2s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(244,240,232,.12); transform: translateY(-1px); }
.footer-social svg { display: block; }

/* Instagram-Vorschau-Karte */
.ig-card {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; padding: 13px 16px; border-radius: 16px;
  text-decoration: none; color: #fff;
  background: linear-gradient(105deg, #515BD4 0%, #8134AF 32%, #DD2A7B 64%, #F58529 92%, #FEDA77 100%);
  box-shadow: 0 10px 24px rgba(221,42,123,.22);
  transition: transform .2s, box-shadow .2s;
}
.ig-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(221,42,123,.30); }
.ig-card .ig-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.18); flex: none; }
.ig-card .ig-meta { display: flex; flex-direction: column; line-height: 1.25; }
.ig-card .ig-k { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .92; }
.ig-card .ig-h { font-weight: 700; font-size: 1.02rem; }
.ig-card .ig-cta { margin-left: auto; background: rgba(255,255,255,.22); padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: .9rem; white-space: nowrap; }
.ig-card:hover .ig-cta { background: rgba(255,255,255,.32); }

/* Google-Profil-Zeile */
.g-line { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; }
.g-line .g-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); flex: none; }
.g-line:hover { color: var(--accent); }

/* =========================================================
   CREDENTIALS STRIP
   ========================================================= */
.credstrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.cred-intro {
  text-align: center;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: 30px;
}
.cred-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3.5vw, 46px);
  padding: 20px 0 30px;
}
.cred {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cred-tile {
  flex: none;
  display: grid;
  place-items: center;
  height: 58px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--dark);
  box-shadow: 0 12px 24px -16px rgba(0,0,0,.7);
}
.cred-tile img { width: auto; object-fit: contain; }
.cred-tile .cred-otl { height: 20px; }
.cred-tile .cred-fresenius { height: 30px; }
.cred-tile-icon svg { width: 26px; height: 26px; color: var(--gold-soft); }
.cred-meta { display: flex; flex-direction: column; max-width: 26ch; }
.cred-meta strong { font-size: .9rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.cred-meta span { font-size: .78rem; color: var(--muted); margin-top: 3px; }
@media (max-width: 720px) {
  .cred { flex-direction: column; text-align: center; gap: 10px; }
  .cred-meta { align-items: center; }
}

/* Logo-Kacheln in den Qualifikations-Karten (ueber-mich) */
.qual-logo {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 50px;
  padding: 0 18px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: var(--dark);
  box-shadow: 0 12px 24px -16px rgba(0,0,0,.7);
}
.qual-logo img { width: auto; object-fit: contain; }
.qual-logo .cred-otl { height: 20px; }
.qual-logo .cred-fresenius { height: 30px; }
.qual-logo-icon { padding: 0; width: 50px; justify-content: center; }
.qual-logo-icon svg { width: 26px; height: 26px; color: var(--gold-soft); }

/* =========================================================
   FEATURE / SPLIT
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.split-media .media-img { transition: transform 1.1s var(--ease); }
.split-media:hover .media-img { transform: scale(1.045); }
.split-media .ph { aspect-ratio: 5/6; border-radius: var(--radius-lg); }
.split-media.tall .ph { aspect-ratio: 4/5; }
.split-copy .eyebrow { margin-bottom: 20px; }
.split-copy h2 { margin-bottom: 22px; }
.split-copy p + p { margin-top: 1.1em; }
.split-copy .btn-row, .split-copy .link-arrow { margin-top: 30px; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .split-media { max-width: 460px; }
}

/* Feature-Liste mit Häkchen */
.checklist { margin-top: 24px; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 13px;
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.checklist li svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 1px; }
.checklist li strong { display: block; color: var(--ink); }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 54px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(91,12,34,.35);
  box-shadow: 0 30px 60px -34px rgba(27,26,22,.45);
}
.card .ic {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid; place-items: center;
  margin-bottom: 26px;
}
.card .ic svg { width: 26px; height: 26px; }
.card .num-tag {
  font-family: var(--f-display);
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.card h3 { margin-bottom: 14px; }
.card p { font-size: .98rem; flex: 1; }
.card p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }

/* Partikel-Hintergrund + Cursor-Spotlight (portiert von Aceternity, Bordeaux/Gold) */
.leistungen-sec { position: relative; }
.leistungen-sec .container { position: relative; z-index: 1; }
.particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.spotlight-card { position: relative; overflow: hidden; }
.spotlight-card::before {
  content: "";
  position: absolute;
  left: -160px; top: -160px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 68%);
  opacity: 0;
  transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
  transition: opacity .45s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.spotlight-group:hover .spotlight-card::before { opacity: .15; }
.spotlight-card > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .spotlight-card::before { display: none; }
}
.card .link-arrow { margin-top: 26px; }

/* =========================================================
   ERNÄHRUNGSGUIDE-BAND + VORSCHAU
   ========================================================= */
.guide-band {
  background:
    radial-gradient(60vmax 40vmax at 88% 10%, rgba(91,12,34,.07), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--surface));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guide-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 16px;
}
.guide-preview .guide-stack { display: inline-flex; align-items: center; justify-content: center; }
.guide-preview img {
  width: clamp(150px, 22vw, 208px);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 26px 48px -26px rgba(27,26,22,.55);
  transition: transform .45s var(--ease);
}
.guide-preview .g1 { transform: rotate(-7deg); }
.guide-preview .g2 { transform: rotate(2deg) translateY(-14px); margin: 0 -18px; z-index: 2; }
.guide-preview .g3 { transform: rotate(8deg); }
.guide-preview:hover .g1 { transform: rotate(-11deg) translateX(-8px); }
.guide-preview:hover .g2 { transform: rotate(2deg) translateY(-22px); }
.guide-preview:hover .g3 { transform: rotate(12deg) translateX(8px); }
.guide-badge {
  position: absolute;
  right: 18px; bottom: 8px;
  background: var(--accent);
  color: var(--bg);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 100px;
  box-shadow: 0 8px 18px -8px rgba(91,12,34,.7);
}
@media (prefers-reduced-motion: reduce) {
  .guide-preview img, .guide-preview:hover img { transition: none; }
}

/* =========================================================
   PROMO-/EINBLICK-VIDEO (Hochformat)
   ========================================================= */
.promo-video { display: flex; justify-content: center; align-items: center; }
.promo-video video {
  height: clamp(380px, 50vw, 560px);
  aspect-ratio: 9 / 16;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #1b1014;
  box-shadow: 0 34px 60px -30px rgba(27,26,22,.55);
}
@media (max-width: 820px) {
  .promo-video { order: -1; margin-bottom: 8px; }
  .promo-video video { height: clamp(340px, 82vw, 480px); }
}

/* =========================================================
   GERÄTE-MOCKUP (Online Personal Training)
   ========================================================= */
.device-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px 36px;
  min-height: 340px;
}
.dm-laptop { width: 100%; max-width: 460px; filter: drop-shadow(0 34px 50px rgba(27,26,22,.28)); }
.dm-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 9px solid #1b1014;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  background: #000;
}
.dm-screen img,
.dm-screen video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; background: #1b1014; }
.dm-pill {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(20,8,12,.66);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 11px; border-radius: 100px;
}
.dm-dot { width: 7px; height: 7px; border-radius: 50%; background: #e0566f; animation: dmPulse 1.7s ease-in-out infinite; }
@keyframes dmPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }
.dm-self {
  position: absolute; right: 12px; bottom: 12px;
  width: 74px; height: 52px; border-radius: 7px;
  border: 1.5px solid rgba(255,255,255,.55);
  background: url("../images/online-selfview.jpg") center 30%/cover;
  box-shadow: 0 6px 14px rgba(0,0,0,.4);
}
.dm-base {
  height: 15px;
  margin: 0 -7%;
  background: linear-gradient(180deg, #d7d0c4, #b7afa1);
  border-radius: 0 0 14px 14px;
  position: relative;
}
.dm-base::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 5px; border-radius: 0 0 6px 6px; background: rgba(0,0,0,.16);
}
.dm-phone {
  position: absolute; right: 4px; bottom: 6px;
  width: 128px; aspect-ratio: 9 / 18.5;
  border: 7px solid #1b1014;
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 24px 40px -16px rgba(27,26,22,.5);
}
.dm-phone-screen { height: 100%; padding: 16px 12px; }
.dm-plan-head { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.dm-plan li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; color: var(--ink-soft);
  padding: 8px 0; border-bottom: 1px solid var(--line-soft);
}
.dm-plan .dm-sets { color: var(--accent); font-weight: 700; font-family: var(--f-display); }
.dm-plan li.done { color: var(--muted); }
.dm-plan li.done span:first-child { text-decoration: line-through; }
.dm-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 28px; font-style: italic; }

@media (max-width: 820px) {
  .device-mockup { order: -1; margin-bottom: 8px; }
}
@media (max-width: 420px) {
  .dm-phone { width: 104px; right: -2px; }
}

/* =========================================================
   PROZESS / METHODE (Schritte)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 56px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.step .step-num {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.step .step-num::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 1rem;
}
.step .step-num .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { font-size: .94rem; }

/* Mini-Guide-Vorschau in einem Schritt */
.step-guide {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.step-guide:hover { transform: translateY(-2px); border-color: rgba(91,12,34,.4); box-shadow: 0 16px 30px -20px rgba(27,26,22,.5); }
.step-guide img {
  width: 52px; height: 70px; flex: none;
  object-fit: cover; border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 14px -8px rgba(27,26,22,.6);
}
.step-guide span { display: flex; flex-direction: column; font-size: .9rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.step-guide small { font-weight: 500; font-size: .8rem; color: var(--accent); margin-top: 3px; }

/* =========================================================
   EINBLICKE / MARQUEE-GALERIE
   ========================================================= */
.gallery-sec .intro { margin-bottom: 48px; }
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 4px 10px;
  animation: marquee 64s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .shot {
  flex: none;
  width: clamp(240px, 26vw, 360px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 20px 44px -30px rgba(27,26,22,.5);
}
.marquee .shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.marquee .shot:hover img { transform: scale(1.06); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; }
}

/* =========================================================
   PULLQUOTE
   ========================================================= */
.pullquote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.pullquote .mark {
  font-family: var(--f-display);
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pullquote blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 360;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pullquote blockquote em { color: var(--accent); }
.pullquote .cite {
  margin-top: 28px;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 54px;
}
.stat { background: var(--bg); padding: 34px 28px; text-align: center; }
.stat .n { font-family: var(--f-display); font-size: clamp(2.2rem,4vw,3rem); color: var(--accent); line-height: 1; }
.stat .l { font-size: .86rem; color: var(--muted); margin-top: 10px; letter-spacing: .02em; }

/* =========================================================
   CTA-BAND (dunkel)
   ========================================================= */
.cta-band {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -120px; top: -180px;
  background: radial-gradient(circle, rgba(138,68,82,.32), transparent 68%);
  pointer-events: none;
}
.cta-band .inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.cta-band h2 { color: var(--on-dark); margin: 22px 0 18px; }
.cta-band p { color: var(--on-dark-mut); font-size: 1.1rem; margin-bottom: 36px; }
.cta-band .micro {
  margin-top: 26px;
  font-size: .82rem;
  color: var(--on-dark-mut);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}
.cta-band .micro span { display: inline-flex; align-items: center; gap: 8px; }
.cta-band .micro svg { width: 16px; height: 16px; color: var(--gold-soft); }

/* CTA mit Foto-Hintergrund */
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: .24;
  z-index: 0;
}
.cta-photo::before { z-index: 1; }
.cta-photo .inner { z-index: 2; }

/* =========================================================
   ECHTE BILDER in Media-Slots
   ========================================================= */
.media-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}
.hero-figure .media-img { height: 100%; aspect-ratio: 4 / 5; }
.contact-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin-bottom: 30px;
  display: block;
}

/* =========================================================
   PAGE HEADER (Unterseiten)
   ========================================================= */
.page-head {
  padding-top: calc(78px + clamp(50px, 8vw, 90px));
  padding-bottom: clamp(40px, 6vw, 64px);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.page-head .eyebrow { margin-bottom: 22px; }
.page-head h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 360; letter-spacing: -0.02em; }
.page-head .lead { margin-top: 24px; max-width: 56ch; }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 20px; letter-spacing: .02em; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

/* =========================================================
   KONTAKT / FORMULAR
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

.contact-aside h2 { font-size: clamp(1.7rem,3vw,2.3rem); margin-bottom: 18px; }
.contact-aside .lead { margin-bottom: 34px; font-size: 1.08rem; }

.contact-list { display: grid; gap: 22px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ic {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--accent);
}
.contact-item .ic svg { width: 20px; height: 20px; }
.contact-item .k { font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); font-weight: 600; }
.contact-item .v { font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-top: 3px; }
.contact-item .v a:hover { color: var(--accent); }
.contact-item .sub { font-size: .85rem; color: var(--muted); margin-top: 2px; }

.assurance {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.assurance .t { font-weight: 600; display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.assurance .t svg { width: 20px; height: 20px; color: var(--accent); }
.assurance p { font-size: .92rem; }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 70px -50px rgba(27,26,22,.5);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
}
.field label .req { color: var(--gold); }
.field .hint { font-size: .78rem; color: var(--muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  font-size: .98rem;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 132px; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(91,12,34,.12);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237C7970' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* Hinweis-Box im Kontaktformular (Anamnese-Anstupser) */
.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(91,12,34,.06);
  border: 1px solid rgba(91,12,34,.2);
  border-radius: var(--radius);
  padding: 13px 16px;
  margin-bottom: 22px;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-hint svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 1px; }
.form-hint strong { color: var(--ink); }
.form-hint .form-hint-btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--accent);
  color: var(--bg);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.form-hint .form-hint-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* Anamnese-Formular: Abschnitts-Überschriften */
.anamnese-form .form-sec {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 420;
  color: var(--ink);
  margin: 32px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.anamnese-form .form-sec:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.anamnese-form .pills { margin-top: 6px; }
.anamnese-form .field.full > .pills { margin-top: 8px; }

/* Pills für Themenauswahl */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  position: relative;
}
.pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill span {
  display: block;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.pill input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.pill input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Consent + Honeypot */
.consent {
  grid-column: 1/-1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--accent); }
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-foot { grid-column: 1/-1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-foot .note { font-size: .8rem; color: var(--muted); }

/* Form-Status */
.form-status { grid-column: 1/-1; border-radius: var(--radius); padding: 14px 18px; font-size: .92rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(91,12,34,.1); color: var(--accent-deep); border: 1px solid rgba(91,12,34,.3); }
.form-status.err { background: rgba(169,71,71,.1); color: #8a3a3a; border: 1px solid rgba(169,71,71,.3); }

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  display: grid; place-items: center; margin: 0 auto 22px;
}
.form-success .ic svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { font-size: 1rem; }

@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ (details / summary)
   ========================================================= */
.faq details {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 13px; height: 13px;
  margin-top: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B0C22' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p {
  padding: 0 44px 24px 0;
  font-size: .98rem;
  color: var(--ink-soft);
  animation: faqIn .4s var(--ease);
}
.faq details p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq details p { animation: none; } }

/* =========================================================
   PROSE (Impressum / Datenschutz)
   ========================================================= */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 8px; }
.prose p { margin-bottom: 14px; font-size: .98rem; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; font-size: .98rem; color: var(--ink-soft); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }
.prose .todo {
  background: #FBF3DF;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 4px 8px;
  font-size: .85rem;
  color: #7a5a1e;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(56px,8vw,84px) 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(239,234,224,.13);
}
.footer-brand .brand { color: var(--on-dark); margin-bottom: 18px; }
.footer-brand .brand .brand-sub { color: var(--on-dark-mut); }
.footer-brand p { color: var(--on-dark-mut); font-size: .94rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--f-sans);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: var(--on-dark-mut); font-size: .95rem; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--on-dark); }
.footer-col .ico-line { display: flex; align-items: center; gap: 10px; }
.footer-col .ico-line svg { width: 16px; height: 16px; color: var(--gold-soft); flex: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: .82rem;
  color: var(--on-dark-mut);
}
.footer-bottom a:hover { color: var(--on-dark); }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =========================================================
   PLATZHALTER-BILDER
   ========================================================= */
.ph {
  background:
    linear-gradient(135deg, rgba(91,12,34,.10), rgba(169,133,79,.10)),
    var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
  padding: 12px;
  max-width: 80%;
}
.ph .ph-ico {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -130%);
  width: 38px; height: 38px;
  color: var(--accent-soft);
  opacity: .7;
}
/* echtes Bild ersetzt Platzhalter: einfach <img> statt .ph nutzen,
   oder .ph { background-image:url(...); } setzen und .ph::after entfernen */
.ph.has-img { background-size: cover; background-position: center; }
.ph.has-img::after, .ph.has-img .ph-ico { display: none; }

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

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.maxw { max-width: 60ch; }
