/* ===================================================================
   Wort Support Agency — style.css
   Warm-editorial, dunkler Hero, Coral-Akzent, Notch-Signature.
   =================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Akzent — Warm-Orange/Coral */
  --accent: #E8612C;
  --accent-600: #cf4f1f;
  --accent-700: #b34119;
  --accent-300: #f1855a;
  --accent-soft: #f6d7c6;

  /* Flächen */
  --ink: #111113;
  --ink-800: #19191c;
  --ink-700: #232327;
  --bone: #F4F0EA;
  --bone-200: #ece6db;
  --bone-300: #e1d9cc;

  /* Text (warm getönt, nie reines Grau) */
  --text: #1A1A1A;
  --muted: #6b665d;
  --text-on-ink: #F2EDE5;
  --muted-on-ink: #9c958a;
  --white-warm: #fff8f3;

  /* Layout */
  --container: 1240px;
  --section-y: clamp(5rem, 10vw, 9rem);
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --notch: clamp(26px, 4vw, 56px);

  /* Typo-Scale (fluid) */
  --fs-display: clamp(2.8rem, 7vw, 6rem);
  --fs-h2: clamp(2rem, 4.6vw, 3.6rem);
  --fs-h3: clamp(1.3rem, 1.4vw + 1rem, 1.65rem);
  --fs-lead: clamp(1.08rem, 0.6vw + 0.95rem, 1.32rem);
  --fs-body: clamp(1rem, 0.35vw + 0.93rem, 1.12rem);
  --fs-eyebrow: 0.78rem;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--accent); color: var(--white-warm); }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* --------------------------- Utilities ---------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 200;
  background: var(--ink); color: var(--text-on-ink);
  padding: 0.7rem 1.1rem; border-radius: 6px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; background: var(--accent);
  border-radius: 1px; transform: rotate(45deg); flex: none;
}
.eyebrow--light { color: var(--muted-on-ink); }

/* Notch-Signature (diagonal abgeschnittene Ecke) */
.notch {
  position: relative; overflow: hidden; background: var(--bone-300);
  --c: var(--notch);
  clip-path: polygon(0 0, calc(100% - var(--c)) 0, 100% var(--c), 100% 100%, 0 100%); /* top-right (default) */
}
.notch--tr { clip-path: polygon(0 0, calc(100% - var(--c)) 0, 100% var(--c), 100% 100%, 0 100%); }
.notch--tl { clip-path: polygon(var(--c) 0, 100% 0, 100% 100%, 0 100%, 0 var(--c)); }
.notch--br { clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%); }
.notch--bl { clip-path: polygon(0 0, 100% 0, 100% 100%, var(--c) 100%, 0 calc(100% - var(--c))); }
.notch img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------- Buttons ------------------------------ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.95rem 1.5rem; border-radius: 6px; font-weight: 600; line-height: 1;
  letter-spacing: -0.01em; transition: background-color 0.35s var(--ease),
    color 0.35s var(--ease), transform 0.35s var(--ease); will-change: transform;
}
.btn__label { position: relative; display: inline-grid; overflow: hidden; }
.btn__text { grid-area: 1 / 1; transition: transform 0.5s var(--ease); }
.btn__text:nth-child(2) { transform: translateY(115%); }
.btn:hover .btn__text:nth-child(1) { transform: translateY(-115%); }
.btn:hover .btn__text:nth-child(2) { transform: translateY(0); }

.btn__arrow {
  display: inline-flex; transition: transform 0.4s var(--ease); flex: none;
}
.btn:hover .btn__arrow { transform: translate(3px, -3px); }

.btn--accent { background: var(--accent); color: var(--white-warm); }
.btn--accent:hover { background: var(--accent-600); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--text-on-ink); }
.btn--ink:hover { background: var(--ink-700); transform: translateY(-2px); }

.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.92rem; }
.btn--lg { padding: 1.1rem 1.8rem; font-size: 1.05rem; }
.btn--xl { padding: 1.25rem 2.2rem; font-size: clamp(1.05rem, 1.4vw, 1.25rem); }

.link-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600;
  color: var(--text-on-ink); position: relative; padding-bottom: 3px;
}
.link-ghost::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0.35); transform-origin: left;
  transition: transform 0.4s var(--ease); opacity: 0.6;
}
.link-ghost:hover::after { transform: scaleX(1); opacity: 1; }
.link-ghost__arrow { transition: transform 0.35s var(--ease); }
.link-ghost:hover .link-ghost__arrow { transform: translateY(3px); }
.link-ghost--dark { color: var(--text); }
.link-ghost--dark:hover .link-ghost__arrow { transform: translate(3px, 0); }

/* ----------------------------- Nav -------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease), color 0.4s var(--ease);
  color: var(--text-on-ink);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 1.1rem;
}
.nav.is-solid {
  background: color-mix(in srgb, var(--bone) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--ink) 10%, transparent);
  color: var(--text);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; font-weight: 700; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  background: var(--accent); color: var(--white-warm); font-weight: 800;
  font-size: 0.95rem; letter-spacing: -0.02em; border-radius: 7px;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}
.brand__name { display: flex; flex-direction: column; line-height: 1; font-size: 1rem; letter-spacing: -0.01em; }
.brand__name-sub { font-size: 0.72rem; font-weight: 500; opacity: 0.62; letter-spacing: 0.04em; }

.nav__links { display: flex; gap: 1.8rem; font-size: 0.95rem; font-weight: 500; }
.nav__links a { position: relative; padding: 0.3rem 0; opacity: 0.85; transition: opacity 0.25s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav__burger { display: none; width: 44px; height: 44px; position: relative; flex: none; }
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: currentColor;
  border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav__burger span:nth-child(1) { top: 18px; }
.nav__burger span:nth-child(2) { bottom: 18px; }
.is-open .nav__burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.is-open .nav__burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Mobile Fullscreen-Menü */
.menu {
  position: fixed; inset: 0; z-index: 90; background: var(--ink);
  color: var(--text-on-ink); display: flex; flex-direction: column;
  justify-content: center; gap: 2.5rem; padding: 6rem var(--gutter) 3rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__nav { display: flex; flex-direction: column; gap: 0.4rem; }
.menu__nav a {
  display: flex; align-items: baseline; gap: 1rem; font-size: clamp(2rem, 11vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.03em; padding: 0.4rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--text-on-ink) 12%, transparent);
}
.menu__nav a span { font-size: 0.9rem; font-weight: 500; color: var(--accent); letter-spacing: 0; }
.menu__cta { align-self: flex-start; }

/* ----------------------------- Hero ------------------------------- */
.hero {
  position: relative; color: var(--text-on-ink);
  min-height: 100svh; display: flex; flex-direction: column;
  padding-top: clamp(6.5rem, 13vh, 9rem); overflow: hidden;
  background:
    radial-gradient(120% 95% at 88% -12%, color-mix(in srgb, var(--accent) 24%, var(--ink)) 0%, transparent 50%),
    radial-gradient(95% 80% at -5% 110%, color-mix(in srgb, var(--accent) 10%, var(--ink)) 0%, transparent 55%),
    var(--ink);
}
.hero::after { /* feiner Film-Grain für Tiefe */
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__grid {
  position: relative; z-index: 2; flex: 1; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(2rem, 5vw, 4rem);
}
.hero__copy { max-width: 38ch; }
.hero__title {
  font-size: var(--fs-display); font-weight: 800; line-height: 0.95;
  letter-spacing: -0.035em; margin: 1.4rem 0 1.7rem; text-wrap: balance;
}
.hero__accent { color: var(--accent); }
.hero__sub { font-size: var(--fs-lead); color: color-mix(in srgb, var(--text-on-ink) 72%, transparent); max-width: 44ch; }
.hero__cta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.3rem; }

/* Visual */
.hero__visual { position: relative; }
.hero__frame {
  position: absolute; inset: 0; z-index: 0;
  transform: translate(clamp(10px, 1.6vw, 18px), clamp(12px, 1.8vw, 20px));
  background: var(--accent); --c: var(--notch);
  clip-path: polygon(0 0, calc(100% - var(--c)) 0, 100% var(--c), 100% 100%, 0 100%);
}
.hero__media { position: relative; z-index: 1; aspect-ratio: 4 / 5; width: 100%; }
.hero__media img { transform: scale(1.06); }
.hero__chip {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: color-mix(in srgb, var(--ink) 76%, transparent); backdrop-filter: blur(8px);
  color: var(--text-on-ink); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 0.5rem 0.85rem; border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--text-on-ink) 18%, transparent);
}
.hero__chip span { color: var(--accent-300); font-size: 0.7em; }
.hero__badge {
  position: absolute; left: clamp(-1rem, -1.2vw, -0.5rem); bottom: 1.5rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--bone); color: var(--text); font-size: 0.84rem; font-weight: 600;
  padding: 0.7rem 1.05rem; border-radius: 7px;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.6);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }

/* Marquee */
.hero__marquee {
  position: relative; z-index: 2; margin-top: auto; overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--text-on-ink) 12%, transparent);
  padding-block: clamp(0.9rem, 2vw, 1.4rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.hero__marquee:hover .marquee { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: clamp(1.3rem, 3vw, 2.6rem); padding-right: clamp(1.3rem, 3vw, 2.6rem); }
.marquee__group span {
  font-size: clamp(1.25rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -0.02em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px color-mix(in srgb, var(--text-on-ink) 40%, transparent);
}
.marquee__group i { color: var(--accent); font-style: normal; font-size: 0.85rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------- Stats ------------------------------ */
.stats { padding-block: var(--section-y); background: var(--bone); }
.stats__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.stats__title { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; margin-top: 1rem; max-width: 12ch; }
.stats__list { display: grid; gap: 0; }
.stat { display: grid; grid-template-columns: minmax(0, auto) 1fr; gap: clamp(1rem, 3vw, 2.5rem); align-items: baseline; padding: 1.7rem 0; border-top: 1px solid var(--bone-300); }
.stat:last-child { border-bottom: 1px solid var(--bone-300); }
.stat__num { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--accent); font-variant-numeric: tabular-nums; }
.stat__num--text { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--text); white-space: nowrap; }
.stat__label { font-size: 1rem; color: var(--muted); max-width: 38ch; }

/* --------------------------- Split rows --------------------------- */
.split { padding-block: var(--section-y); }
.split--why { background: var(--bone-200); }
.split--about { background: var(--bone); }
.split__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.split__grid--reverse .split__media { order: 2; }
.split__media { width: 100%; }
.split__media .notch { aspect-ratio: 4 / 5; width: 100%; }
.split__media img { transform: scale(1.08); }
.split__title { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.025em; line-height: 1.04; margin: 1.1rem 0 1.6rem; max-width: 16ch; }
.split__text { display: grid; gap: 1.1rem; max-width: 50ch; color: var(--text); }
.split__text p { color: color-mix(in srgb, var(--text) 86%, var(--bone)); }
.split__text strong { color: var(--text); font-weight: 700; }
.split--about .link-ghost { margin-top: 1.8rem; }

/* --------------------------- Services ----------------------------- */
.services { padding-block: var(--section-y); background: var(--ink); color: var(--text-on-ink); }
.services__head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services__title { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.025em; line-height: 1.04; margin: 1rem 0 1.1rem; }
.services__intro { font-size: var(--fs-lead); color: var(--muted-on-ink); max-width: 48ch; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.card {
  position: relative; padding: 2.2rem 1.8rem 3rem; display: flex; flex-direction: column;
  border-top: 1px solid color-mix(in srgb, var(--text-on-ink) 16%, transparent);
  transition: transform 0.45s var(--ease);
}
.card + .card { border-left: 1px solid color-mix(in srgb, var(--text-on-ink) 16%, transparent); }
.card__index { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; color: var(--muted-on-ink); transition: color 0.4s var(--ease); }
.card__title { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 1.5rem 0 0.9rem; }
.card__text { color: var(--muted-on-ink); font-size: 1rem; }
.card__cue {
  position: absolute; top: 2.1rem; right: 1.8rem; color: var(--accent);
  opacity: 0; transform: translate(-6px, 6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.card__line {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); }
.card:hover .card__index { color: var(--accent); }
.card:hover .card__cue { opacity: 1; transform: translate(0, 0); }
.card:hover .card__line { transform: scaleX(1); }

/* ---------------------------- Freebie ----------------------------- */
.freebie { padding-block: var(--section-y); background: var(--accent); color: var(--ink); overflow: hidden; }
.freebie__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.freebie .eyebrow { color: color-mix(in srgb, var(--ink) 70%, transparent); }
.freebie .eyebrow::before { background: var(--ink); }
.freebie__title { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; margin: 1rem 0 1.4rem; max-width: 14ch; }
.freebie__text { font-size: var(--fs-lead); color: color-mix(in srgb, var(--ink) 82%, var(--accent)); max-width: 46ch; }
.freebie__cta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.2rem; }
.freebie__note { font-size: 0.9rem; color: color-mix(in srgb, var(--ink) 65%, var(--accent)); max-width: 18ch; }
.freebie__media .notch { aspect-ratio: 1 / 1; width: 100%; background: var(--accent-700); }
.freebie__media img { transform: scale(1.06); }

/* ----------------------------- Voices ----------------------------- */
.voices { padding-block: var(--section-y); background: var(--bone-200); }
.voices__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.voices__head .eyebrow { justify-content: center; }
.voices__title { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.025em; margin-top: 1rem; }

.slider { max-width: 60ch; margin-inline: auto; text-align: center; }
.slider__track { position: relative; display: grid; }
.slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity 0.6s var(--ease); pointer-events: none; }
.slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; position: relative; }
.slide__quote { font-size: clamp(1.3rem, 2.6vw, 2.05rem); font-weight: 500; line-height: 1.32; letter-spacing: -0.015em; }
.slide__quote::before { content: "“"; color: var(--accent); font-size: 1.2em; line-height: 0; vertical-align: -0.35em; margin-right: 0.05em; }
.slide__by { display: flex; align-items: center; justify-content: center; gap: 0.9rem; margin-top: 2rem; }
.slide__avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-700); font-weight: 700; font-size: 0.95rem; flex: none; }
.slide__meta { display: flex; flex-direction: column; text-align: left; line-height: 1.3; }
.slide__meta strong { font-weight: 700; }
.slide__meta span { font-size: 0.88rem; color: var(--muted); }

.slider__controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2.5rem; }
.slider__btn { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bone-300); color: var(--text); transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
.slider__btn:hover { background: var(--ink); color: var(--text-on-ink); border-color: var(--ink); }
.slider__dots { display: flex; gap: 0.5rem; }
.slider__dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--bone-300); transition: background-color 0.3s, transform 0.3s; }
.slider__dots button[aria-selected="true"] { background: var(--accent); transform: scale(1.25); }

/* --------------------------- Final CTA ---------------------------- */
.cta-final { padding-block: var(--section-y); background: var(--bone); }
.cta-final__box {
  background: var(--ink); color: var(--text-on-ink); text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  --c: clamp(34px, 5vw, 72px); position: relative; overflow: hidden;
}
.cta-final__box::before {
  content: ""; position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 60%; pointer-events: none;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 32%, transparent), transparent 68%);
  opacity: 0.45;
}
.cta-final .eyebrow { justify-content: center; position: relative; }
.cta-final__title { position: relative; font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; margin: 1.1rem auto 1.2rem; max-width: 18ch; }
.cta-final__sub { position: relative; font-size: var(--fs-lead); color: var(--muted-on-ink); max-width: 44ch; margin: 0 auto 2.4rem; }

/* ----------------------------- Footer ----------------------------- */
.footer { background: var(--ink); color: var(--text-on-ink); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.brand--footer { color: var(--text-on-ink); }
.footer__claim { color: var(--muted-on-ink); margin-top: 1.1rem; font-size: 0.98rem; max-width: 22ch; }
.footer__h { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-300); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { color: var(--muted-on-ink); font-size: 0.96rem; transition: color 0.25s; width: fit-content; }
.footer__col a:hover { color: var(--text-on-ink); }
.footer__base {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.8rem; border-top: 1px solid color-mix(in srgb, var(--text-on-ink) 12%, transparent);
  font-size: 0.85rem; color: var(--muted-on-ink);
}

/* ----------------------- Reveal-Anfangszustand -------------------- */
.anim [data-hero] { opacity: 0; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__copy { max-width: 100%; }
  .hero__visual { max-width: 460px; }
  .stats__grid { grid-template-columns: 1fr; gap: 2rem; }
  .split__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split__grid--reverse .split__media { order: 0; }
  .split__media { max-width: 480px; }
  .freebie__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .freebie__media { max-width: 440px; order: -1; }
  .services__grid { grid-template-columns: 1fr; }
  .card + .card { border-left: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
}

@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stat { grid-template-columns: 1fr; gap: 0.4rem; }
  .hero__cta { gap: 1rem; }
  .btn { width: auto; }
  .freebie__cta, .hero__cta { flex-direction: column; align-items: flex-start; }
}

/* ------------------------ Reduced Motion -------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  .anim [data-hero] { opacity: 1 !important; }
  .hero__media img, .split__media img, .freebie__media img { transform: none !important; }
  .marquee { animation: none !important; }
}
