/* ═══════════════════════════════════════════════════════════
   HENRI BARGE — Gitarrenunterricht Reinbek
   Design: Sonnenlicht-Creme, Walnuss, Terrakotta, Oliv —
   warm, hell, wohnzimmerig. (Bewusst eigenständig.)
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #faf4e8;
  --bg-2: #f2e8d4;
  --ink: #2e2318;
  --ink-dim: rgba(46, 35, 24, 0.64);
  --ink-faint: rgba(46, 35, 24, 0.38);
  --amber: #c2701e;
  --amber-deep: #99560f;
  --amber-soft: rgba(194, 112, 30, 0.4);
  --olive: #6f7f4e;
  --line: rgba(46, 35, 24, 0.14);
  --line-amber: rgba(194, 112, 30, 0.35);
  --font-d: 'Fraunces', Georgia, serif;
  --font-b: 'Work Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading { overflow: hidden; }

::selection { background: var(--amber); color: #fff8ec; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(194, 112, 30, 0.35); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(194, 112, 30, 0.6); }

a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-d); font-weight: 500; letter-spacing: -0.01em; }
main { position: relative; }

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

.caps {
  font-family: var(--font-b);
  font-weight: 600;
  letter-spacing: 0.22em;
}

.label {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
}

.accent { color: var(--amber); font-style: italic; }

/* ═══════════ GRAIN ═══════════ */
.grain {
  position: fixed;
  inset: -100px;
  z-index: 9800;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 280px;
  animation: grain-shift 0.9s steps(2) infinite;
}
@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-40px, 30px, 0); }
  50% { transform: translate3d(30px, -50px, 0); }
  75% { transform: translate3d(-30px, -20px, 0); }
  100% { transform: translate3d(40px, 40px, 0); }
}

/* ═══════════ CURSOR ═══════════ */
.cursor { display: none; }
body.cursor-on { cursor: none; }
body.cursor-on a, body.cursor-on button { cursor: none; }
body.cursor-on .cursor {
  display: block;
  position: fixed;
  top: 0; left: 0;
  z-index: 9900;
  pointer-events: none;
}
.cursor-dot {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(194, 112, 30, 0.6);
}
.cursor-ring {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(194, 112, 30, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.35s;
}
.cursor.is-hover .cursor-ring {
  width: 62px; height: 62px;
  border-color: rgba(153, 86, 15, 0.85);
}

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9990;
}
.pre-curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 50.5vw;
  background: linear-gradient(180deg, #fdf8ee, #f6edda);
}
.pre-curtain--l { left: 0; border-right: 1px solid rgba(194, 112, 30, 0.18); }
.pre-curtain--r { right: 0; }
.pre-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem 2.6rem;
}
.pre-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--ink-faint);
}
.pre-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  text-align: center;
}
.pre-logo {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
}
.pre-logo em { color: var(--amber); }
.pre-boot {
  min-height: 7.6em;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
  text-align: center;
  width: min(460px, 82vw);
}
.pre-boot .ok { color: var(--amber); font-weight: 600; }
.pre-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pre-status {
  font-size: 0.6rem;
  color: var(--ink-faint);
  padding-bottom: 1.2rem;
}
.pre-count {
  font-family: var(--font-d);
  font-size: clamp(4rem, 13vw, 8.5rem);
  font-weight: 400;
  line-height: 0.85;
  color: var(--ink);
  text-shadow: 0 0 60px rgba(194, 112, 30, 0.35);
  font-variant-numeric: tabular-nums;
}
.pre-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(46, 35, 24, 0.08);
}
.pre-bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--amber), var(--olive));
  box-shadow: 0 0 14px rgba(194, 112, 30, 0.5);
  transform: scaleX(0);
  transform-origin: left center;
}

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.6rem;
  opacity: 0;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250, 244, 232, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav__logo {
  font-family: var(--font-b);
  font-weight: 600;
  letter-spacing: 0.24em;
  font-size: 0.88rem;
}
.nav__logo span { color: var(--amber); }
.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--amber-deep); }
.nav__links a .caps {
  font-size: 0.55rem;
  color: var(--amber);
  vertical-align: super;
  margin-right: 0.2rem;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s, background 0.4s, color 0.4s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--amber);
  color: #fff8ec;
  box-shadow: 0 6px 24px -8px rgba(153, 86, 15, 0.5);
}
.btn--primary:hover {
  background: var(--amber-deep);
  box-shadow: 0 10px 34px -8px rgba(153, 86, 15, 0.65);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 251, 242, 0.5);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber-deep);
  box-shadow: 0 6px 24px -10px rgba(153, 86, 15, 0.4);
}
.btn--big {
  padding: 1.25rem 2.5rem;
  font-size: 1.05rem;
}

/* ═══════════ SEKTIONS-RAIL ═══════════ */
.rail {
  position: fixed;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
}
.rail__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  font-size: 0.58rem;
  color: var(--ink-faint);
  transition: color 0.4s;
}
.rail__item i {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: width 0.5s var(--ease);
}
.rail__item.is-active { color: var(--amber-deep); }
.rail__item.is-active i { width: 36px; }

/* ═══════════ MEDIA: Video (Desktop/Tablet) vs. Foto (Mobile) ═══════════ */
.media-photo {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 739px) {
  .hero__media video, .process__media video { display: none !important; }
  .media-photo { display: block; }
}

/* ═══════════ HERO — DAS SONNIGE WOHNZIMMER ═══════════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255, 214, 140, 0.5), transparent 55%),
    linear-gradient(180deg, #f7ecd6, #efe0c2);
}
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-fallback video { display: none; }
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 244, 232, 0.55) 0%, rgba(250, 244, 232, 0.05) 40%, rgba(250, 244, 232, 0.72) 100%),
    radial-gradient(ellipse at center, transparent 45%, rgba(46, 35, 24, 0.18) 100%);
}
.hero__meta {
  position: absolute;
  top: 6rem;
  z-index: 3;
  font-size: 0.58rem;
  color: var(--ink-dim);
}
.hero__meta--tl { left: 2.6rem; }
.hero__meta--tr { right: 2.6rem; }
.hero__center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.hero__kicker {
  font-size: 0.62rem;
  color: var(--amber-deep);
  margin-bottom: 1.8rem;
}
.hero__title {
  font-size: clamp(3.6rem, 13vw, 11.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-shadow: 0 2px 40px rgba(250, 244, 232, 0.85), 0 0 90px rgba(255, 214, 140, 0.5);
}
.hero__title .ch { display: inline-block; overflow: hidden; vertical-align: top; }
.hero__title .ch-in { display: inline-block; will-change: transform; }
.hero__sub {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.75;
  text-shadow: 0 1px 18px rgba(250, 244, 232, 0.9);
}
.hero__sub-em { color: var(--amber-deep); font-weight: 600; }
.hero__cta {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.55rem;
  color: var(--ink-dim);
}
.hero__scroll-line {
  position: relative;
  width: 2px;
  height: 52px;
  border-radius: 2px;
  background: rgba(46, 35, 24, 0.15);
  overflow: hidden;
}
.hero__scroll-line i {
  position: absolute;
  left: 0; top: -50%;
  width: 100%;
  height: 50%;
  background: var(--amber);
  animation: scroll-drip 2s var(--ease) infinite;
}
@keyframes scroll-drip {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* — Beats — */
.hero__beats {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__beat {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.hero__beat-inner {
  max-width: 760px;
  text-align: center;
  will-change: transform, opacity, filter;
}
.hero__beat-label {
  font-size: 0.62rem;
  color: var(--amber-deep);
  margin-bottom: 1.4rem;
}
.hero__beat-inner h3 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  text-shadow: 0 2px 34px rgba(250, 244, 232, 0.95), 0 0 80px rgba(255, 214, 140, 0.55);
}
.hero__beat-inner p {
  margin: 1.3rem auto 0;
  max-width: 54ch;
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.75;
  text-shadow: 0 1px 16px rgba(250, 244, 232, 0.95);
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  position: relative;
  z-index: 5;
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  padding: 1.05rem 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  font-size: 0.66rem;
  color: var(--ink-dim);
  animation: marquee 32s linear infinite;
}
.marquee__track em { color: var(--amber); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1.5rem)); }
}

/* ═══════════ 01 — ÜBER MICH (MANIFEST) ═══════════ */
.manifest {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.manifest__dust {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}
.manifest__glow {
  position: absolute;
  left: 60%; top: 30%;
  width: 70vw; height: 70vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 205, 120, 0.35), transparent 65%);
  pointer-events: none;
}
.manifest__inner {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto;
  padding: 8rem 2.6rem;
}
.manifest__inner .label { display: block; margin-bottom: 3.2rem; }
.manifest__text {
  font-family: var(--font-d);
  font-size: clamp(1.85rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.35;
}
.manifest__text .w { opacity: 0.15; }
.manifest__text em, .manifest__text .w--em {
  font-style: italic;
  color: var(--amber-deep);
}

/* ═══════════ 02 — SO LÄUFT DEIN UNTERRICHT ═══════════ */
.process {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.process__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(255, 214, 140, 0.45), transparent 55%),
    linear-gradient(180deg, #f6ebd4, #efe0c2);
}
.process__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 244, 232, 0.94) 0%, rgba(250, 244, 232, 0.72) 45%, rgba(250, 244, 232, 0.28) 100%);
}
.process__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 4rem;
  padding: 0 6vw;
}
.process__title {
  margin-top: 1.6rem;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 1.08;
}
.process__bar {
  margin-top: 3.2rem;
  width: min(240px, 100%);
  height: 3px;
  border-radius: 3px;
  background: rgba(46, 35, 24, 0.12);
}
.process__bar span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
}
.process__right {
  position: relative;
  height: 62vh;
}
.step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.step__ghost {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-d);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(194, 112, 30, 0.28);
  pointer-events: none;
  line-height: 1;
}
.step__tag {
  font-size: 0.6rem;
  color: var(--amber-deep);
  margin-bottom: 1.3rem;
}
.step h3 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}
.step p {
  margin-top: 1.2rem;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink-dim);
  max-width: 44ch;
  font-weight: 400;
}

/* ═══════════ 03 — FÜR WEN ═══════════ */
.services {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1.5px solid var(--line);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(111, 127, 78, 0.12), transparent 50%),
    var(--bg);
}
.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding: 0 6vw;
  margin-bottom: 4vh;
}
.services__head h2 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  margin-top: 1.4rem;
  line-height: 1.05;
}
.services__hint {
  font-size: 0.62rem;
  color: var(--amber-deep);
  padding-bottom: 0.8rem;
}
.services__viewport { overflow: visible; }
.services__track {
  display: flex;
  gap: 1.8rem;
  padding: 0 6vw;
  width: max-content;
  will-change: transform;
}
.card {
  position: relative;
  width: clamp(300px, 26vw, 400px);
  min-height: 58vh;
  padding: 2.3rem;
  border: 1.5px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(170deg, #fffdf6, #f8efdc);
  box-shadow: 0 18px 45px -28px rgba(46, 35, 24, 0.35);
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--ease), border-color 0.55s, box-shadow 0.55s;
}
.card:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  border-color: var(--line-amber);
  box-shadow: 0 34px 70px -30px rgba(153, 86, 15, 0.4);
}
.card__idx {
  font-size: 0.7rem;
  color: var(--ink-faint);
}
.card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 1.1rem;
  box-shadow: 0 10px 28px -16px rgba(46, 35, 24, 0.45);
}
.card h3 {
  margin-top: auto;
  font-size: 1.85rem;
  padding-top: 1.4rem;
}
.card p {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-dim);
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.7rem;
}
.card__tags span {
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  padding: 0.42rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-dim);
  background: rgba(255, 253, 246, 0.6);
}
.card--cta {
  border-color: var(--line-amber);
  background: linear-gradient(170deg, #ffedd2, #fbdba9);
  justify-content: flex-end;
}
.card--cta h3 { font-size: 2.2rem; }
.card--cta .card__idx {
  color: var(--amber-deep);
  font-size: 1.3rem;
}
.card__link {
  margin-top: 1.7rem;
  font-size: 0.62rem;
  color: var(--amber-deep);
}

/* ═══════════ 04 — ZAHLEN ═══════════ */
.stats {
  position: relative;
  border-top: 1.5px solid var(--line);
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255, 214, 140, 0.3), transparent 55%),
    var(--bg);
}
.stats__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(6rem, 14vh, 10rem) 2.6rem;
}
.stats__inner h2 {
  font-size: clamp(2.3rem, 5.2vw, 4.8rem);
  margin: 1.4rem 0 4.5rem;
  line-height: 1.08;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.stat {
  background: #fffdf6;
  padding: 2.6rem 2.2rem;
  transition: background 0.5s;
}
.stat:hover { background: #fdf4e2; }
.stat__value {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  font-weight: 500;
  color: var(--amber-deep);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 30ch;
}

/* ═══════════ 05 — KONTAKT ═══════════ */
.cta {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1.5px solid var(--line);
}
.cta__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 214, 140, 0.4), transparent 55%),
    linear-gradient(180deg, #f6ebd4, #efe0c2);
}
.cta__still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.cta__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 244, 232, 0.88) 0%, rgba(250, 244, 232, 0.55) 50%, rgba(250, 244, 232, 0.9) 100%);
}
.cta__inner {
  position: relative;
  z-index: 2;
  padding: 8rem 1.5rem;
}
.cta__title {
  margin-top: 1.8rem;
  font-size: clamp(3rem, 8.5vw, 8rem);
  line-height: 0.98;
  color: var(--ink);
}
.cta__title .ch { display: inline-block; overflow: hidden; vertical-align: top; }
.cta__title .ch-in { display: inline-block; will-change: transform; }
.cta__sub {
  margin: 2rem auto 2.6rem;
  font-size: 1.05rem;
  color: var(--ink-dim);
  line-height: 1.8;
}
.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__place {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.62rem;
  color: var(--ink-dim);
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  position: relative;
  border-top: 1.5px solid var(--line);
  padding: 5.5rem 6vw 2rem;
  background: linear-gradient(180deg, var(--bg), #efe3ca);
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.5fr;
  gap: 3rem;
}
.footer__col-title {
  font-size: 0.56rem;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}
.footer__col a {
  display: block;
  font-size: 0.93rem;
  color: var(--ink-dim);
  margin-bottom: 0.85rem;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.footer__col a:hover { color: var(--amber-deep); transform: translateX(6px); }
.footer__col--wide p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--ink-dim);
  max-width: 38ch;
}
.footer__brand {
  margin-top: 5.5rem;
  text-align: center;
  font-family: var(--font-d);
  font-size: clamp(3rem, 12.5vw, 12.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(194, 112, 30, 0.4);
  white-space: nowrap;
  user-select: none;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 4.5rem;
  padding-top: 1.6rem;
  border-top: 1.5px solid var(--line);
  font-size: 0.56rem;
  color: var(--ink-faint);
}
.footer__claim { color: var(--amber-deep); }
.footer__legal { display: inline-flex; gap: 1.4rem; }
.footer__base a { transition: color 0.3s; }
.footer__base a:hover { color: var(--amber-deep); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1000px) {
  .rail { display: none; }
  .nav__links { display: none; }
  .process__inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.5rem;
    padding: 0 8vw;
  }
  .process__right { height: 46vh; }
  .step__ghost { font-size: 9rem; right: -1rem; }
  .process__shade {
    background: linear-gradient(180deg, rgba(250, 244, 232, 0.92), rgba(250, 244, 232, 0.7));
  }
  .card { width: min(78vw, 380px); min-height: 52vh; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero__meta { display: none; }
  .hero__title { font-size: clamp(3.2rem, 17vw, 5.6rem); }
  .nav { padding: 1rem 1.4rem; }
  .nav .btn { padding: 0.6rem 1.1rem; font-size: 0.8rem; }
  .stats__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .services__head { flex-direction: column; align-items: flex-start; }
  .marquee__track { font-size: 0.56rem; }
  .pre-content { padding: 1.6rem 1.4rem; }
}

/* Sehr flache Höhen (Querformat-Tablets wie 1024×600, Fenster mit Browser-
   leiste): Der vertikal zentrierte Hero-Titel würde sonst in die oberen
   Eck-Labels laufen. Auf so wenig Höhe haben die Deko-Labels ohnehin keinen
   Platz — und dieselben Wörter stehen direkt darunter im Laufband. */
@media (max-height: 720px) {
  .hero__meta { display: none; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .marquee__track { animation: none; }
  .hero__scroll-line i { animation: none; }
  .manifest__text .w { opacity: 1; }
  .step { position: relative; opacity: 1; visibility: visible; height: auto; margin-bottom: 2rem; }
  .process { height: auto; padding: 6rem 0; }
  .process__right { height: auto; }
  .hero__beats { display: none; }
}

/* ═══════════ FALLBACK: Experience-Engine aus (body.no-fx) ═══════════
   Setzt js/main.js, wenn GSAP/ScrollTrigger nicht luden (CDN blockiert),
   das Intro hängt, das Gerät als zu schwach erkannt wird oder ?static aktiv
   ist. Kein notdürftiges Mobil-Abbild auf breitem Schirm mehr, sondern eine
   eigene, ruhige Desktop-Statik: zentrierte Spalten, Karten-Raster, warme
   Flächen statt schwerer Videos. (no-fx tritt immer ≥740px auf.) */
body.no-fx .preloader { display: none !important; }
body.no-fx.is-loading { overflow: auto !important; }
body.no-fx .manifest__dust { display: none; }
body.no-fx .hero__beats { display: none; }
body.no-fx [data-reveal] { opacity: 1 !important; visibility: visible !important; transform: none !important; }

/* Hero: leichtes Foto statt Video; Textblock voll sichtbar — auch wenn der
   Live-Wächter erst mitten in der Hero-Sektion abschaltet (GSAP-Reste). */
body.no-fx .hero__media video { display: none !important; }
body.no-fx .hero__media .media-photo { display: block; }
body.no-fx .hero__kicker,
body.no-fx .hero__sub,
body.no-fx .hero__cta,
body.no-fx .hero__meta { opacity: 1 !important; visibility: visible !important; transform: none !important; }
body.no-fx .hero__title .ch-in { transform: none !important; opacity: 1 !important; }
body.no-fx .hero__sub-scroll { display: none; }  /* nur Bild → kein "scroll dich rein" */

/* Über mich: alle Wörter sichtbar, ohne 100vh-Leerraum. */
body.no-fx .manifest { min-height: 0; }
body.no-fx .manifest__inner { padding: clamp(4.5rem, 11vh, 8rem) 2.6rem; }
body.no-fx .manifest__text .w { opacity: 1 !important; }

/* Unterricht: Titel oben, Schritte als ruhiges Karten-Raster auf warmer
   Fläche — statt gepinnt-gestapelt über Video. */
body.no-fx .process { height: auto; padding: clamp(4.5rem, 9vh, 7rem) 0; }
body.no-fx .process__media video,
body.no-fx .process__media .media-photo { display: none !important; }
body.no-fx .process__shade {
  background: linear-gradient(180deg, rgba(250, 244, 232, 0.78), rgba(250, 244, 232, 0.62));
}
body.no-fx .process__inner {
  display: block; height: auto;
  max-width: 1150px; margin: 0 auto; padding: 0 2.6rem;
}
body.no-fx .process__left { margin-bottom: 2.6rem; }
body.no-fx .process__bar span { transform: scaleX(1); }  /* voller Akzentstrich statt leerem Balken */
body.no-fx .process__right {
  position: static; height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}
body.no-fx .step {
  position: relative; inset: auto;
  opacity: 1 !important; visibility: visible !important; transform: none !important;
  height: auto; margin: 0;
  padding: 1.8rem 1.9rem;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(170deg, #fffdf6, #f8efdc);
  box-shadow: 0 18px 45px -30px rgba(46, 35, 24, 0.3);
}
body.no-fx .step__ghost { display: none; }

/* Für wen: Karten-Raster statt Horizontal-Scroll (der ohne JS tot wäre). */
body.no-fx .services { height: auto; display: block; padding: clamp(4.5rem, 9vh, 7rem) 0; }
body.no-fx .services__head {
  max-width: 1150px; margin: 0 auto 2.4rem; padding: 0 2.6rem;
}
body.no-fx .services__hint { display: none; }  /* "SCROLLEN →" ergibt statisch keinen Sinn */
body.no-fx .services__viewport { overflow: visible; }
body.no-fx .services__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  width: auto; max-width: 1150px; margin: 0 auto;
  padding: 0 2.6rem;
  transform: none !important;
}
body.no-fx .card { width: auto; min-height: 0; }
body.no-fx .card h3 { margin-top: 1.4rem; }         /* kein auto-Push in Rasterzellen */
body.no-fx .card--cta { justify-content: flex-start; }

/* Scroll-Hinweis entfernt (auf Wunsch des Kunden) */
.hero__scroll { display: none !important; }

/* ═══════════ FAQ ═══════════ */
.faq {
  border-top: 1.5px solid var(--line);
  background: var(--bg);
}
.faq__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) 2.6rem;
}
.faq__inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin: 1.2rem 0 2.6rem;
}
.faq details { border-bottom: 1.5px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--amber);
  transition: transform 0.3s var(--ease);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 0 1.5rem;
  color: var(--ink-dim);
  line-height: 1.75;
  max-width: 62ch;
}

/* ═══════════ Footer-Einzugsgebiet (NAP) ═══════════ */
.footer__area {
  max-width: 760px;
  margin: 3rem auto 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--ink-dim);
  text-align: center;
}
.footer__area a { text-decoration: underline; text-underline-offset: 3px; }
.footer__area a:hover { color: var(--amber-deep); }

/* ═══════════════════════════════════════════════════════════
   MOBILE (≤739px) — clean & statisch: kein Intro, keine
   Scroll-Effekte, keine gepinnten Sektionen. Desktop/Tablet
   (≥740px) bleiben komplett unberührt.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 739px) {
  /* — Kein Intro: Vorhang existiert visuell gar nicht — */
  .preloader { display: none !important; }
  body.is-loading { overflow: auto !important; }
  html { scroll-behavior: smooth; }
  section[id] { scroll-margin-top: 66px; }

  /* — Deko & Akku-Fresser aus — */
  .grain,
  .manifest__dust,
  .hero__beats,
  .process__bar,
  .step__ghost,
  .services__hint { display: none !important; }

  /* — Nav immer lesbar (kein JS-Fade nötig) — */
  .nav {
    opacity: 1 !important;
    background: rgba(250, 244, 232, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }

  /* — Reveals sofort sichtbar (GSAP läuft mobil nicht) — */
  [data-reveal] { opacity: 1 !important; visibility: visible !important; transform: none !important; }

  /* — HERO: Foto + Titel, ruhig — */
  .hero { height: 90svh; min-height: 500px; }
  .hero__sub-scroll { display: none; }  /* Handy zeigt Foto, kein Scroll-Scrub */

  /* — ÜBER MICH: normaler Textfluss — */
  .manifest { min-height: 0; padding: 4.5rem 0; }
  .manifest__inner { padding: 0 2rem; }
  .manifest__text { font-size: clamp(1.55rem, 6.4vw, 2.2rem); }
  .manifest__text .w { opacity: 1 !important; }

  /* — UNTERRICHT: Schritte gestapelt statt gepinnt — */
  .process { height: auto; }
  .process__inner { display: block; padding: 4.5rem 7vw; }
  .process__left { margin-bottom: 0.5rem; }
  .process__right { position: static; height: auto; }
  .step {
    position: relative; inset: auto;
    opacity: 1 !important; visibility: visible !important;
    transform: none !important;
    padding: 1.7rem 0;
    border-top: 1px solid var(--line);
  }
  .step:first-of-type { border-top: 0; }

  /* — FÜR WEN: Karten vertikal statt Horizontal-Scroll — */
  .services { height: auto; display: block; padding: 4.5rem 0; }
  .services__head { padding: 0 7vw; margin-bottom: 2.2rem; }
  .services__viewport { overflow: visible; }
  .services__track {
    flex-direction: column;
    width: auto;
    padding: 0 7vw;
    gap: 1.1rem;
    transform: none !important;
  }
  .card { width: auto; min-height: 0; }

  /* — KONTAKT: kompakt statt Vollbild — */
  .cta { min-height: 0; padding: 5rem 0; }

  /* — Platz für den schwebenden WhatsApp-Button — */
  .footer { padding-bottom: 6.5rem; }
}

/* ═══════════ SCHWEBENDER WHATSAPP-BUTTON (nur Mobile) ═══════════ */
.wa-fab { display: none; }
@media (max-width: 739px) {
  .wa-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1.05rem;
    bottom: 1.05rem;
    z-index: 950;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 22px rgba(20, 12, 4, 0.28);
  }
  .wa-fab svg { width: 30px; height: 30px; }
  .wa-fab:active { transform: scale(0.94); }
}
