/* =============================================================
   SONNORA – Landingpage
   0  Schriften (lokal gehostet)
   1  Tokens
   2  Reset & Basis
   3  Layout-Helfer
   4  Buttons, Links, Labels
   5  Header & Navigation
   6  Hero (vollflächig #923978)
   7  Markenversprechen
   8  Leistungen (Bento)
   9  Statements
   10 Arbeitsweise (Steps)
   11 Über Sonnora
   12 Kontakt / CTA
   13 Footer
   14 Motion (Reveal / Hero-Intro)
   15 Rechtstexte
   16 Responsive
   17 Reduced Motion & Print
   ============================================================= */

/* ---------- 0  SCHRIFTEN ---------- */
/* Inter, SIL Open Font License – siehe assets/fonts/Inter-OFL.txt */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/Inter-Bold.woff2") format("woff2");
}

/* ---------- 1  TOKENS ---------- */
:root {
  /* Farben */
  --brand:        #923978;
  --brand-deep:   #772e61;
  --brand-tint:   #f7f0f5;
  --bg:           #ffffff;
  --bg-tint:      #faf8fa;
  --ink:          #1f1f1f;
  --ink-soft:     #5c5559;
  --ink-mute:     #6e686c;
  --line:         #ece3e9;
  --line-strong:  #ddccd7;

  /* Typografie */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --shell: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --header-h: 80px;

  /* Radien */
  --r-card: 26px;
  --r-btn: 999px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: 180ms;
  --t-med: 260ms;
}

/* ---------- 2  RESET & BASIS ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.028em; line-height: 1.08; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-deep); }

::selection { background: rgba(146, 57, 120, .15); }

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

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: #fff;
  color: var(--brand);
  border-radius: 0 0 12px 12px;
  font-weight: 500;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- 3  LAYOUT-HELFER ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(5.5rem, 11vw, 9.5rem); }
.section--tint { background: var(--bg-tint); }

.sectionhead { max-width: 46rem; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.sectionhead__title {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  margin-top: 1.1rem;
}
.sectionhead__intro {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: 1.1875rem;
  color: var(--ink-soft);
}

/* ---------- 4  BUTTONS, LINKS, LABELS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .9rem 1.7rem;
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background-color var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              color var(--t-med) var(--ease);
}

/* auf hellem Grund */
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover {
  background: var(--brand-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(146, 57, 120, .65);
}

/* auf violettem Grund */
.btn--onbrand { background: #fff; color: var(--brand); }
.btn--onbrand:hover {
  background: #fff;
  color: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .55);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
  transform: translateY(-2px);
}
.btn__down { transition: transform var(--t-med) var(--ease); }
.btn--ghost:hover .btn__down { transform: translateY(4px); }

.btn--sm { min-height: 44px; padding: .6rem 1.3rem; font-size: .95rem; }

/* Section-Label mit Bogen-Marke */
.label {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--brand);
  font-size: .95rem;
  font-weight: 500;
}
.label__mark {
  width: 18px; height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

/* ---------- 5  HEADER & NAVIGATION ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 340ms var(--ease),
              border-color 340ms var(--ease),
              box-shadow 340ms var(--ease);
}
.header.is-solid {
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 26px -22px rgba(31, 31, 31, .7);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo-Wechsel weiss <-> violett */
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  height: 25px;
}
.brand__img {
  height: 25px;
  width: auto;
  transition: opacity 300ms var(--ease);
}
.brand__img--dark { position: absolute; left: 0; top: 0; opacity: 0; }
.header.is-solid .brand__img--light { opacity: 0; }
.header.is-solid .brand__img--dark { opacity: 1; }
.brand:hover .brand__img { filter: brightness(1.08); }

.nav__list { display: flex; align-items: center; gap: 2.1rem; }
.nav__list a {
  position: relative;
  display: inline-block;
  padding-block: .35rem;
  color: #fff;
  font-size: .975rem;
  font-weight: 500;
  transition: color var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); }

.header.is-solid .nav__list a { color: var(--ink); }
.header.is-solid .nav__list a:hover,
.header.is-solid .nav__list a.is-active { color: var(--brand); }

/* CTA im Header */
.header__cta {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.header__cta:hover {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .85);
}
.header.is-solid .header__cta {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}
.header.is-solid .header__cta:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(146, 57, 120, .65);
}

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--t-med) var(--ease), background-color var(--t-med) var(--ease);
}
.header.is-solid .burger { border-color: var(--line); background: rgba(255, 255, 255, .7); }
.burger__box {
  position: relative;
  display: block;
  width: 18px; height: 12px;
  margin: 0 auto;
}
.burger__bar {
  position: absolute;
  left: 0;
  width: 100%; height: 1.75px;
  background: #fff;
  border-radius: 2px;
  transition: transform 300ms var(--ease), background-color var(--t-med) var(--ease);
}
.header.is-solid .burger__bar { background: var(--ink); }
.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { bottom: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile-Menü */
.mobilemenu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 90;
  display: flex;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 280ms var(--ease), transform 320ms var(--ease), visibility 280ms;
}
.mobilemenu.is-open { opacity: 1; visibility: visible; transform: none; }

.mobilemenu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: clamp(1.75rem, 7vw, 3rem) var(--gutter) clamp(2rem, 8vw, 3rem);
  overflow-y: auto;
}
.mobilemenu__list { display: flex; flex-direction: column; gap: .25rem; }
.mobilemenu__list a {
  display: block;
  padding: .7rem 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(14px);
  transition: color var(--t-med) var(--ease);
}
.mobilemenu.is-open .mobilemenu__list a { animation: menuIn 420ms var(--ease) forwards; }
.mobilemenu.is-open li:nth-child(1) a { animation-delay: 60ms; }
.mobilemenu.is-open li:nth-child(2) a { animation-delay: 110ms; }
.mobilemenu.is-open li:nth-child(3) a { animation-delay: 160ms; }
.mobilemenu.is-open li:nth-child(4) a { animation-delay: 210ms; }
.mobilemenu__list a:hover { color: var(--brand); }

@keyframes menuIn { to { opacity: 1; transform: none; } }

.mobilemenu__foot { border-top: 1px solid var(--line); padding-top: 1.75rem; }
.mobilemenu__foot .btn { width: 100%; }
.mobilemenu__meta {
  margin-top: 1.25rem;
  color: var(--ink-mute);
  font-size: .975rem;
  line-height: 1.7;
}

/* ---------- 6  HERO ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 88vh;
  min-height: 88svh;
  margin-top: calc(var(--header-h) * -1);   /* Header liegt im Hero */
  padding-block: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) clamp(3.5rem, 8vw, 6rem);
  background: var(--brand);
  color: #fff;
}

.hero__shapes {
  position: absolute;
  inset: -10% -5%;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 6% 0%, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 70%),
    radial-gradient(60% 55% at 8% 104%, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 70%),
    radial-gradient(75% 70% at 104% 104%, rgba(0, 0, 0, .10), rgba(0, 0, 0, 0) 70%);
}

/* Ein einziges Motiv: der Ring des Wordmark-„o“, weit angeschnitten oben rechts */
.shape { position: absolute; }
.shape--ring {
  top: -38%; right: -26vw;
  width: min(1020px, 88vw);
  color: rgba(255, 255, 255, .11);
}

.hero__inner { position: relative; width: 100%; }

.hero__eyebrow {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  color: rgba(255, 255, 255, .78);
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero__title {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -0.04em;
  color: #fff;
}
.hero__line { display: block; }
.hero__line--2 {
  position: relative;
  display: inline-block;
  margin-top: .06em;
  padding-bottom: .16em;
  font-size: 1.22em;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.hero__swoosh {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: .2em;
  color: rgba(255, 255, 255, .55);
  overflow: visible;
}

.hero__sub {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 40rem;
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2.25rem, 4vw, 3rem);
}

.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  color: rgba(255, 255, 255, .72);
  font-size: .975rem;
}
.hero__meta a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.hero__meta a:hover { color: #fff; border-color: #fff; }
.hero__metasep { width: 22px; height: 1px; background: rgba(255, 255, 255, .4); }

.hero :focus-visible { outline-color: #fff; }

/* ---------- 7  MARKENVERSPRECHEN ---------- */
.promise { padding-block: clamp(4rem, 8vw, 6rem) clamp(4rem, 9vw, 7rem); }

.promise__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.1rem;
  padding-block: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promise__list li {
  display: flex;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.promise__list li:not(:last-child)::after {
  content: "·";
  margin-left: 1.1rem;
  color: var(--line-strong);
}

.promise__note {
  max-width: 44rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: clamp(1.1875rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

/* ---------- 8  LEISTUNGEN (BENTO) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.75rem, 3vw, 2.6rem);
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              background-color var(--t-med) var(--ease);
}
.card--wide { grid-column: span 7; }
.card--narrow { grid-column: span 5; }
.card:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: rgba(146, 57, 120, .45);
  box-shadow: 0 22px 40px -32px rgba(31, 31, 31, .6);
}

.card__title { font-size: clamp(1.3125rem, 2vw, 1.5rem); }
/* Die breiten Karten tragen die Hierarchie – ohne Icons, nur über Typo und Fläche */
.card--wide .card__title { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.card__text {
  margin-top: .9rem;
  max-width: 34rem;
  color: var(--ink-soft);
}
.card__list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .6rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.card__list li {
  padding: .4rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .9rem;
  color: var(--ink-soft);
}

/* ---------- 9  STATEMENTS ---------- */
.statement { padding-block: clamp(6rem, 13vw, 11rem); }
.statement__inner { max-width: 64rem; }

.statement__title {
  font-size: clamp(2.2rem, 5.4vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -0.038em;
}
.statement__title em,
.statement__big em { font-style: normal; color: var(--brand); }

.statement__text {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 38rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--ink-soft);
}

.pills { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: clamp(2rem, 4vw, 2.75rem); }
.pill {
  padding: .55rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  transition: background-color var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              color var(--t-med) var(--ease);
}
.pill:hover { background: var(--brand-tint); border-color: var(--brand); color: var(--brand); }

.statement--big {
  padding-block: clamp(7rem, 16vw, 13rem);
  text-align: center;
}
.statement__big {
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(2.35rem, 6.4vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.042em;
}

/* ---------- 10  ARBEITSWEISE (STEPS) ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
.steps::before,
.steps::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  height: 1px;
}
.steps::before { background: var(--line-strong); }
.steps::after {
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1100ms var(--ease);
}
.steps.is-drawn::after { transform: scaleX(1); }

.step { position: relative; padding-top: 2.75rem; }
.step__dot {
  position: absolute;
  top: 0; left: 0;
  width: 15px; height: 15px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: var(--bg-tint);
}
.step__num {
  display: block;
  color: var(--brand);
  font-size: .95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-bottom: .6rem;
}
.step__title { font-size: 1.3125rem; }
.step__text { margin-top: .7rem; color: var(--ink-soft); font-size: 1rem; }

/* ---------- 11  ÜBER SONNORA ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about__title {
  margin-top: 1.1rem;
  font-size: clamp(2rem, 3.9vw, 3rem);
  line-height: 1.06;
}
.about__arc { width: 120px; margin-top: 2.5rem; color: rgba(146, 57, 120, .28); }

.about__lead {
  font-size: clamp(1.1875rem, 2vw, 1.4375rem);
  line-height: 1.5;
  letter-spacing: -0.018em;
}
.about__text { margin-top: 1.5rem; color: var(--ink-soft); max-width: 36rem; }

/* ---------- 11b  TEAM ---------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 58rem;
}
.person__portrait {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(160deg, var(--brand-tint), #f1e6ee);
}
.person__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;   /* greift nur, falls ein Foto nicht im Format 4:5 vorliegt */
}
.person__name { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.person__role {
  margin-top: .35rem;
  color: var(--brand);
  font-size: .975rem;
  font-weight: 500;
}
.person__text {
  margin-top: 1rem;
  max-width: 26rem;
  color: var(--ink-soft);
}
.team__note {
  max-width: 40rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line);
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--ink-soft);
}

/* ---------- 12  KONTAKT / CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  padding-block: clamp(5rem, 11vw, 9rem);
}
.cta__inner { position: relative; max-width: 54rem; }

.cta__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.032em;
}
.cta__text {
  margin-top: 1.25rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, .84);
  font-size: 1.1rem;
}

.cta__mail {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  font-size: clamp(1.2rem, 5vw, 3.05rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  overflow-wrap: anywhere;
  transition: transform var(--t-med) var(--ease);
}
.cta__mailtext {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1.5px;
  padding-bottom: .12em;
  opacity: .92;
  transition: background-size 360ms var(--ease), opacity var(--t-med) var(--ease);
}
.cta__mail:hover { color: #fff; transform: translateX(4px); }
.cta__mail:hover .cta__mailtext { opacity: 1; background-size: 100% 2.5px; }
.cta__mailarrow {
  width: .55em; height: .55em;
  flex: none;
  transition: transform var(--t-med) var(--ease);
}
.cta__mail:hover .cta__mailarrow { transform: translateX(5px); }

.cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
}
.cta__place { color: rgba(255, 255, 255, .8); font-size: .975rem; }

.cta :focus-visible { outline-color: #fff; }

/* ---------- 13  FOOTER ---------- */
.footer { padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.footer__brand img { height: 22px; width: auto; }
.footer__brand p {
  margin-top: 1.25rem;
  max-width: 24rem;
  color: var(--ink-mute);
  font-size: .975rem;
}
.footer__h { font-size: .9375rem; font-weight: 600; margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col li, .footer__col a { color: var(--ink-mute); font-size: .975rem; }
.footer__col a { transition: color var(--t-med) var(--ease); }
.footer__col a:hover { color: var(--brand); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: .9rem;
}
.footer__bottom a { color: var(--ink-mute); }
.footer__bottom a:hover { color: var(--brand); }

/* ---------- 14  MOTION ---------- */
/* Scroll-Reveal – nur aktiv, wenn JS läuft */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Hero-Intro beim ersten Laden */
.js .header, .js .hero-in, .js .shape { opacity: 0; }
.js.is-ready .header { animation: fadeIn 600ms var(--ease) both; }
.js.is-ready .hero-in { animation: heroIn 700ms var(--ease) both; }
.js.is-ready .hero__eyebrow  { animation-delay: 140ms; }
.js.is-ready .hero__line--1  { animation-delay: 210ms; }
.js.is-ready .hero__line--2  { animation-delay: 320ms; }
.js.is-ready .hero__sub      { animation-delay: 450ms; }
.js.is-ready .hero__actions  { animation-delay: 560ms; }
.js.is-ready .hero__meta     { animation-delay: 660ms; }

/* Geometrie: sehr ruhig einblenden, keine Dauerbewegung */
.js.is-ready .shape { animation: fadeIn 1400ms var(--ease) both; }
.js.is-ready .shape--ring { animation-delay: 160ms; }

/* Bogen unter „Kopf frei.“ zeichnet sich einmal */
.hero__swoosh path { stroke-dasharray: 320; stroke-dashoffset: 0; }
.js .hero__swoosh path { stroke-dashoffset: 320; }
.js.is-ready .hero__swoosh path { animation: draw 900ms var(--ease) 720ms forwards; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes draw   { to { stroke-dashoffset: 0; } }

/* ---------- 15  RECHTSTEXTE ---------- */
.legal { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(4rem, 9vw, 7rem); }
.legal__inner { max-width: 44rem; }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3.1rem); }
.legal h2 {
  font-size: 1.25rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.legal p { margin-top: 1rem; color: var(--ink-soft); }
.legal ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; color: var(--ink-soft); }
.legal ul li { padding-left: 1.1rem; position: relative; }
.legal ul li::before {
  content: "";
  position: absolute; left: 0; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
.legal__back {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: 2rem; font-weight: 500;
}
.legal__back svg { width: 18px; height: 18px; transition: transform var(--t-med) var(--ease); }
.legal__back:hover svg { transform: translateX(-4px); }

/* ---------- 16  RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--wide, .card--narrow { grid-column: span 1; }
  .about__grid { grid-template-columns: 1fr; }
  .about__arc { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }

  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .brand, .brand__img { height: 22px; }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
    padding-block: calc(var(--header-h) + 2.5rem) 3.5rem;
  }
  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .shape--ring { top: -18%; right: -42vw; width: 125vw; }

  .bento { grid-template-columns: 1fr; }

  /* Steps vertikal, Linie links */
  .steps { grid-template-columns: 1fr; gap: 2.25rem; }
  .steps::before, .steps::after {
    top: 7px; bottom: 7px;
    left: 7px; right: auto;
    width: 1px; height: auto;
  }
  .steps::after { transform: scaleY(0); transform-origin: top center; }
  .steps.is-drawn::after { transform: scaleY(1); }
  .step { padding-top: 0; padding-left: 2.5rem; }
  .step__dot { top: 4px; }
  .step__num { margin-bottom: .35rem; }

  .promise__list { gap: .5rem 1rem; }
  .team__grid { grid-template-columns: 1fr; max-width: 30rem; }
  .cta__mail { margin-top: 2rem; }
  .cta__actions .btn { width: 100%; }
}

@media (max-width: 520px) {
  .promise__list { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .promise__list li:not(:last-child)::after { display: none; }
  .card__list { gap: .5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__bottom { flex-direction: column; }
}

/* Menü offen: Seite nicht scrollen */
body.menu-open { overflow: hidden; }

/* ---------- 17  REDUCED MOTION & PRINT ---------- */
@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;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .header, .js .hero-in, .js .shape { opacity: 1; }
  .js .hero__swoosh path { stroke-dashoffset: 0; }
  .steps::after { transform: scaleX(1); }
  .card:hover, .btn:hover, .cta__mail:hover { transform: none; }
}

@media print {
  .header, .mobilemenu, .hero__shapes { display: none !important; }
  body { color: #000; }
  .js .reveal, .js .hero-in { opacity: 1 !important; transform: none !important; }
  .hero, .cta { background: #fff !important; color: #000 !important; min-height: 0; margin-top: 0; }
  .hero__title, .hero__sub, .hero__meta, .cta__title, .cta__mail { color: #000 !important; }
}
