/* ============================================================
   FORSTUNTERNEHMEN SUEZOV – Stylesheet v3
   Konzept: „Holz & Handschlag" – warmes Editorial-Design
   Papier-Beige · Tannengrün · Kettensägen-Orange
   Fraunces (Display) + Archivo (Body)
   ============================================================ */

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  /* Farben */
  --paper:        #F3EDDE;
  --paper-deep:   #EAE1CB;
  --paper-card:   #FBF7EC;
  --ink:          #1B2B20;
  --ink-soft:     #3C4A3F;
  --ink-muted:    #67735F;
  --forest:       #1E3A2A;
  --forest-deep:  #142519;
  --forest-line:  rgba(27, 43, 32, 0.14);
  --moss:         #5A7050;
  --orange:       #E4572E;
  --orange-deep:  #C8431F;
  --orange-soft:  rgba(228, 87, 46, 0.12);
  --cream-on-dark:      rgba(243, 237, 222, 0.92);
  --cream-on-dark-soft: rgba(243, 237, 222, 0.62);
  --line-on-dark:       rgba(243, 237, 222, 0.16);
  --error:        #B3261E;
  --success:      #2E6B3E;

  /* Typografie */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Archivo', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --nav-height: 84px;
  --container: 1200px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   2. RESET & BASIS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Feine Papier-Körnung über allem */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
a { color: inherit; }

::selection { background: var(--orange); color: #fff; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 10000;
  background: var(--forest);
  color: var(--cream-on-dark);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}
.container--narrow { max-width: 820px; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.btn--primary {
  background: var(--forest);
  color: var(--cream-on-dark);
}
.btn--primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 10px 24px rgba(20, 37, 25, 0.28);
}

.btn--orange {
  background: var(--orange);
  color: #fff;
}
.btn--orange:hover {
  background: var(--orange-deep);
  box-shadow: 0 10px 24px rgba(228, 87, 46, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(27, 43, 32, 0.3);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(27, 43, 32, 0.04); }

.btn--lg { padding: 17px 32px; font-size: 1rem; }

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav--scrolled {
  background: rgba(243, 237, 222, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--forest-line);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--nav-height);
}

.nav__logo { flex-shrink: 0; display: block; }
.nav__logo-img { width: 108px; height: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}

.nav__link {
  display: block;
  padding: 8px 13px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s, background-color 0.2s;
}
.nav__link:hover { color: var(--ink); background: rgba(27, 43, 32, 0.06); }
.nav__link--active { color: var(--orange-deep); }

.nav__actions { display: none; align-items: center; gap: 18px; margin-left: auto; }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--orange-deep); }
.nav__phone svg { color: var(--orange); }

.nav__cta { padding: 11px 22px; font-size: 0.875rem; }

.nav__hamburger {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(27, 43, 32, 0.25);
  border-radius: 50%;
  background: var(--paper-card);
  color: var(--ink);
  cursor: pointer;
}

.nav__mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--paper);
  padding: 28px 24px;
  overflow-y: auto;
  z-index: 999;
}
.nav__mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile-link {
  display: block;
  padding: 14px 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--forest-line);
}
.nav__mobile-link--phone { color: var(--orange-deep); font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; border-bottom: none; }
.nav__mobile-cta { margin-top: 18px; width: 100%; }

@media (min-width: 1100px) {
  .nav__links, .nav__actions { display: flex; }
  .nav__hamburger { display: none; }
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 72px;
  overflow: hidden;
}

/* Jahresringe – Signatur-Grafik */
.hero__rings {
  position: absolute;
  top: -180px;
  right: -220px;
  width: 640px;
  height: 640px;
  color: var(--forest);
  opacity: 0.13;
  pointer-events: none;
  animation: rings-turn 120s linear infinite;
}
@keyframes rings-turn {
  to { transform: rotate(360deg); }
}

.hero__layout {
  position: relative;
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 26px;
}
.hero__eyebrow-mark {
  width: 34px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.hero__title-line { display: block; }
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--moss);
}
.hero__title-line--accent { color: var(--orange); }

.hero__tagline {
  max-width: 34rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--orange-deep);
}
.hero__urgency-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: urgency-pulse 2s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(228, 87, 46, 0.45); }
  50%      { box-shadow: 0 0 0 7px rgba(228, 87, 46, 0); }
}

/* Hero rechte Seite */
.hero__visual {
  position: relative;
  max-width: 460px;
  justify-self: center;
  width: 100%;
}

.hero__img-frame {
  border-radius: 230px 230px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(20, 37, 25, 0.25);
  border: 6px solid var(--paper-card);
}
.hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__badge {
  position: absolute;
  bottom: 34px;
  left: -34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 16px 32px rgba(228, 87, 46, 0.4);
  padding: 12px;
}
.hero__badge-top { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }
.hero__badge-big { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1.1; }
.hero__badge-bottom { font-size: 0.7rem; font-weight: 500; line-height: 1.3; opacity: 0.9; }

.hero__stamp {
  position: absolute;
  top: -26px;
  right: -26px;
  width: 130px;
  height: 130px;
  color: var(--forest);
  animation: rings-turn 26s linear infinite;
}
.hero__stamp-text {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  fill: currentColor;
}

@media (min-width: 980px) {
  .hero__layout { grid-template-columns: 1.15fr 0.85fr; gap: 48px; }
  .hero { padding-top: calc(var(--nav-height) + 64px); padding-bottom: 96px; }
}
@media (max-width: 560px) {
  .hero__badge { width: 118px; height: 118px; left: -10px; bottom: 20px; }
  .hero__badge-big { font-size: 2rem; }
  .hero__stamp { right: -8px; top: -18px; width: 104px; height: 104px; }
  .hero__fact { padding-right: 18px; margin-right: 18px; }
}

/* ============================================================
   6. MARQUEE
   ============================================================ */
.marquee {
  background: var(--forest);
  color: var(--cream-on-dark);
  overflow: hidden;
  padding: 16px 0;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-right: 12px;
}
.marquee__group i {
  font-style: normal;
  color: var(--orange);
  margin: 0 18px;
  font-size: 0.9rem;
}
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   6b. ZAHLEN-RIEGEL
   ============================================================ */
.statsband {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--forest-line);
  padding: 40px 0;
}
.statsband__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  text-align: center;
}
@media (min-width: 900px) {
  .statsband__grid { grid-template-columns: repeat(5, 1fr); }
}
.statsband__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.statsband__item strong {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--forest);
}
.statsband__item > span:last-child {
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
@media (max-width: 899px) {
  .statsband__item:last-child { grid-column: 1 / -1; }
}

/* ============================================================
   7. SEKTIONEN – Gemeinsames
   ============================================================ */
.section { padding: 96px 0; }
.section--paper { background: var(--paper-deep); }
.section--dark {
  background: var(--forest);
  color: var(--cream-on-dark);
}

.section__header { max-width: 720px; margin-bottom: 56px; }
.section__header--split {
  max-width: none;
  display: grid;
  gap: 20px;
  align-items: end;
}
@media (min-width: 900px) {
  .section__header--split { grid-template-columns: 1.2fr 0.8fr; gap: 64px; }
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 16px;
}
.section__eyebrow--light { color: var(--cream-on-dark-soft); }
.section__eyebrow--orange { color: var(--orange); }

.section__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--orange-deep);
}
.section__title--light { color: var(--cream-on-dark); }
.section__title--light em { color: var(--orange); }

.section__lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 34rem;
}
.section--dark .section__lead { color: var(--cream-on-dark-soft); }

/* ============================================================
   8. SITUATIONEN – „Kommt Ihnen das bekannt vor?"
   ============================================================ */
.situationen__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 700px) {
  .situationen__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .situationen__grid { grid-template-columns: repeat(3, 1fr); }
}

.situation {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius-lg);
  padding: 78px 28px 26px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.2s;
}
.situation:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(20, 37, 25, 0.12);
  border-color: rgba(228, 87, 46, 0.45);
}

/* Großes Anführungszeichen */
.situation::before {
  content: "„";
  position: absolute;
  top: -6px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  opacity: 0.85;
}

.situation__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 26px;
}
.situation__quote::after { content: "“"; }

.situation__answer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px dashed rgba(27, 43, 32, 0.25);
}
.situation__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.situation__solution {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.situation__solution span {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
  color: var(--orange-deep);
}
.situation:hover .situation__solution span { transform: translateX(5px); }

/* ============================================================
   8b. EIGNUNG – „Passt das zu Ihnen?"
   ============================================================ */
.eignung__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 900px) {
  .eignung__grid { grid-template-columns: repeat(3, 1fr); }
}

.eignung {
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.2s;
}
.eignung:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(20, 37, 25, 0.12);
  border-color: rgba(228, 87, 46, 0.45);
}

.eignung__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream-on-dark);
  margin-bottom: 18px;
}
.eignung__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.eignung__text {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.eignung__cta {
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--orange-deep);
}
.eignung__cta span {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}
.eignung:hover .eignung__cta span { transform: translateX(5px); }

/* ============================================================
   8c. SAISON-HINWEIS (Dringlichkeit im Prozess)
   ============================================================ */
.saison {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 56px;
  background: var(--forest);
  color: var(--cream-on-dark);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  border-left: 6px solid var(--orange);
}
@media (min-width: 960px) {
  .saison { grid-template-columns: auto 1fr auto; gap: 26px; }
}
.saison__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(228, 87, 46, 0.18);
  color: var(--orange);
  flex-shrink: 0;
}
.saison__text {
  font-size: 1.02rem;
  color: var(--cream-on-dark-soft);
  max-width: 44rem;
}
.saison__text strong { color: var(--cream-on-dark); }
.saison__btn { justify-self: start; text-align: center; }
@media (min-width: 960px) {
  .saison__btn { white-space: nowrap; }
}

/* ============================================================
   9. LEISTUNGEN – Editorial-Liste
   ============================================================ */
.leistungen__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-on-dark);
}

.leistung {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line-on-dark);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.25s, padding-left 0.3s var(--ease-out);
}
.leistung:hover {
  background: rgba(243, 237, 222, 0.05);
  padding-left: 20px;
}

.leistung__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--orange);
  align-self: start;
  padding-top: 6px;
}

.leistung__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream-on-dark);
  transition: color 0.2s;
}
.leistung:hover .leistung__title { color: #fff; }

.leistung__desc {
  font-size: 0.96rem;
  color: var(--cream-on-dark-soft);
  max-width: 46rem;
  margin-top: 6px;
}

.leistung__tag {
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid rgba(228, 87, 46, 0.5);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
}

.leistung__arrow {
  display: none;
  font-size: 1.5rem;
  color: var(--cream-on-dark-soft);
  transition: transform 0.3s var(--ease-out), color 0.2s;
}
.leistung:hover .leistung__arrow {
  transform: translateX(8px);
  color: var(--orange);
}

@media (min-width: 900px) {
  .leistung { grid-template-columns: 56px 1fr auto 40px; }
  .leistung__tag, .leistung__arrow { display: inline-flex; }
}

.leistungen__note {
  margin-top: 36px;
  font-size: 1.05rem;
  color: var(--cream-on-dark-soft);
}
.leistungen__note a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(228, 87, 46, 0.4);
}
.leistungen__note a:hover { border-bottom-color: var(--orange); }

/* ============================================================
   10. PROZESS
   ============================================================ */
.prozess__grid {
  display: grid;
  gap: 36px;
  counter-reset: prozess;
}
@media (min-width: 720px) { .prozess__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .prozess__grid { grid-template-columns: repeat(4, 1fr); } }

.prozess__step { position: relative; padding-top: 8px; }

.prozess__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  background: var(--paper-card);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Verbindungslinie zwischen Schritten */
@media (min-width: 1080px) {
  .prozess__step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 37px;
    left: 66px;
    right: -28px;
    border-top: 2px dashed rgba(27, 43, 32, 0.25);
  }
}

.prozess__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.prozess__text { font-size: 0.96rem; color: var(--ink-muted); max-width: 26rem; }

/* ============================================================
   11. ÜBER MICH
   ============================================================ */
.about__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .about__grid { grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
}

.about__visual { position: relative; max-width: 440px; }

.about__img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(20, 37, 25, 0.2);
  border: 6px solid var(--paper-card);
}
.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: var(--forest);
  color: var(--cream-on-dark);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(20, 37, 25, 0.3);
  transform: rotate(3deg);
}
.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-label { font-size: 0.8rem; opacity: 0.85; }

.about__text .section__title { margin-bottom: 26px; }

.about__lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about__body { color: var(--ink-muted); margin-bottom: 28px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--paper-card);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.about__stat strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
}
.about__stat span { font-size: 0.78rem; color: var(--ink-muted); }

.about__zerts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.about__zerts li {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(27, 43, 32, 0.25);
  background: var(--paper-card);
}

/* ============================================================
   12. VERSPRECHEN – „Was Sie erwarten können"
   ============================================================ */
.promise__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .promise__grid { grid-template-columns: repeat(3, 1fr); }
}

.promise {
  background: var(--paper-card);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.promise:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(20, 37, 25, 0.1);
}
.promise__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}
.promise__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.promise__text { font-size: 0.97rem; color: var(--ink-soft); }

/* ============================================================
   13. ERGEBNISSE – Fälle mit Ausgangslage → Ergebnis
   ============================================================ */
.ergebnisse__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 960px) {
  .ergebnisse__grid { grid-template-columns: repeat(3, 1fr); }
}

.ergebnis {
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.ergebnis:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(20, 37, 25, 0.12);
}

.ergebnis__img-wrap { position: relative; }
.ergebnis__img {
  width: 100%;
  aspect-ratio: 7 / 4.4;
  object-fit: cover;
}
.ergebnis__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.ergebnis__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 24px;
}
.ergebnis__stars {
  color: var(--orange);
  letter-spacing: 4px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.ergebnis__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.ergebnis__phase {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.ergebnis__phase strong { color: var(--ink); }

.ergebnis__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 10px 0 18px;
}
.ergebnis__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.ergebnis__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--orange);
}

.ergebnis__autor {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--forest-line);
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ============================================================
   14. PARTNER-BAND
   ============================================================ */
.partnerband {
  background: var(--forest-deep);
  color: var(--cream-on-dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
/* dezente Ring-Grafik im Hintergrund */
.partnerband::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(243, 237, 222, 0.1);
  box-shadow:
    0 0 0 60px transparent,
    inset 0 0 0 1.5px rgba(243, 237, 222, 0.07),
    inset 0 0 0 100px transparent;
  pointer-events: none;
}
.partnerband::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1.5px solid rgba(243, 237, 222, 0.08);
  pointer-events: none;
}

.partnerband__inner {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .partnerband__inner { grid-template-columns: 1.3fr 0.7fr; }
}

.partnerband__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
}
.partnerband__title em { font-style: italic; color: var(--orange); }
.partnerband__desc {
  font-size: 1.05rem;
  color: var(--cream-on-dark-soft);
  max-width: 36rem;
}

.partnerband__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 960px) {
  .partnerband__action { align-items: flex-end; }
}
.partnerband__phone {
  color: var(--cream-on-dark-soft);
  font-size: 0.95rem;
  text-decoration: none;
}
.partnerband__phone:hover { color: var(--cream-on-dark); }

/* ============================================================
   15. EINZUGSGEBIET
   ============================================================ */
.einzug__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 960px) {
  .einzug__grid { grid-template-columns: 1.1fr 0.9fr; gap: 72px; }
}

.einzug__regionen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.einzug__region {
  background: var(--paper-card);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform 0.25s var(--ease-out), border-color 0.2s;
}
.einzug__region:hover { transform: translateY(-3px); border-color: rgba(228, 87, 46, 0.45); }
.einzug__region h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.einzug__region p { font-size: 0.85rem; color: var(--ink-muted); }

.einzug__radien-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.einzug__radius {
  display: grid;
  grid-template-columns: 100px 1fr 56px;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.einzug__radius-label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.einzug__radius-track {
  height: 10px;
  background: rgba(27, 43, 32, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.einzug__radius-fill {
  width: var(--w, 0%);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--forest), var(--moss));
  transform-origin: left;
  animation: radius-grow 1.2s var(--ease-out) both;
}
.einzug__radius:nth-child(3) .einzug__radius-fill { animation-delay: 0.15s; }
.einzug__radius:nth-child(4) .einzug__radius-fill { animation-delay: 0.3s; background: linear-gradient(90deg, var(--moss), var(--orange)); }
@keyframes radius-grow {
  from { transform: scaleX(0); }
}
.einzug__radius-km { font-size: 0.85rem; font-weight: 700; text-align: right; }

.einzug__note { margin-top: 26px; font-size: 0.95rem; color: var(--ink-muted); }

/* ============================================================
   16. FAQ
   ============================================================ */
.faq__list { display: flex; flex-direction: column; }

.faq__item {
  border-bottom: 1px solid rgba(27, 43, 32, 0.18);
}
.faq__item:first-child { border-top: 1px solid rgba(27, 43, 32, 0.18); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.faq__question:hover { color: var(--orange-deep); }
.faq__question:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.faq__arrow { flex-shrink: 0; transition: transform 0.3s var(--ease-out); color: var(--orange); }
.faq__item--open .faq__arrow { transform: rotate(180deg); }

.faq__answer {
  padding: 0 4px 26px;
  color: var(--ink-muted);
  font-size: 1rem;
  max-width: 44rem;
}

/* ============================================================
   17. KONTAKT
   ============================================================ */
.section--kontakt { padding-bottom: 110px; }

.contact__grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 1000px) {
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
}

.contact__left .section__title { margin-bottom: 20px; }
.contact__lead {
  color: var(--cream-on-dark-soft);
  margin-bottom: 40px;
  max-width: 30rem;
}

.contact__channels { display: flex; flex-direction: column; gap: 10px; }

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s, border-color 0.2s, transform 0.25s var(--ease-out);
}
a.contact__channel:hover {
  background: rgba(243, 237, 222, 0.06);
  border-color: rgba(228, 87, 46, 0.55);
  transform: translateX(4px);
}

.contact__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(228, 87, 46, 0.16);
  color: var(--orange);
  flex-shrink: 0;
}
.contact__channel-body { display: flex; flex-direction: column; }
.contact__channel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-on-dark-soft);
}
.contact__channel-value { font-weight: 600; font-size: 0.98rem; }

/* Formular – helle Karte auf dunklem Grund */
.contact__form {
  background: var(--paper-card);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field { display: flex; flex-direction: column; }
.form-field--full { margin-bottom: 18px; }

.form-field__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field__required { color: var(--orange-deep); }

.form-field__input,
.form-field__select,
.form-field__textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(27, 43, 32, 0.22);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-field__textarea { resize: vertical; min-height: 120px; }
.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30, 58, 42, 0.15);
}
.form-field__input.is-invalid,
.form-field__textarea.is-invalid {
  border-color: var(--error);
}
.form-field__error {
  font-size: 0.82rem;
  color: var(--error);
  margin-top: 6px;
  min-height: 1em;
}

.form-field--actions { margin-bottom: 0; align-items: flex-start; gap: 12px; }
.contact__form-note { font-size: 0.85rem; color: var(--ink-muted); }

.btn-submit { position: relative; }
.btn-submit__spinner { display: none; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.is-loading .btn-submit__icon { display: none; }
.btn-submit.is-loading .btn-submit__spinner { display: block; }
.btn-submit:disabled { opacity: 0.7; cursor: wait; }

.form__status {
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
}
.form__status.is-success { color: var(--success); }
.form__status.is-error { color: var(--error); }

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: var(--forest-deep);
  color: var(--cream-on-dark-soft);
}

.footer__grid {
  display: grid;
  gap: 44px;
  padding: 72px 0 56px;
}
@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 32px; }
}

.footer__logo { display: inline-block; margin-bottom: 18px; }
.footer__logo-img { width: 140px; }
.footer__tagline { font-size: 0.95rem; line-height: 1.7; }

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-on-dark);
  margin-bottom: 18px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a,
.footer__contact a {
  font-size: 0.95rem;
  color: var(--cream-on-dark-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--orange); }

.footer__contact address { font-style: normal; display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; }

.footer__copy {
  border-top: 1px solid var(--line-on-dark);
  padding: 22px 0;
  font-size: 0.85rem;
}
.footer__copy-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--cream-on-dark-soft); text-decoration: none; }
.footer__legal a:hover { color: var(--orange); }

/* ============================================================
   18b. RECHTSSEITEN (Impressum / Datenschutz)
   ============================================================ */
.legal {
  padding: calc(var(--nav-height) + 48px) 0 96px;
}

.legal__back {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  margin-bottom: 32px;
}
.legal__back:hover { color: var(--orange-deep); }

.legal-back-mobile {
  display: none;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
@media (max-width: 1099px) {
  .legal-back-mobile { display: inline-block; }
}

.legal__header { margin-bottom: 48px; }
.legal__header .section__title { font-size: clamp(2rem, 5vw, 3rem); }

.legal__block { margin-bottom: 40px; max-width: 46rem; }
.legal__block h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal__block h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 22px 0 8px;
}
.legal__block p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.legal__block ul {
  margin: 0 0 12px 0;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal__block a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(228, 87, 46, 0.35);
  word-break: break-word;
}
.legal__block a:hover { border-bottom-color: var(--orange-deep); }

/* ============================================================
   19. WHATSAPP-BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

/* ============================================================
   20. REVEAL-ANIMATIONEN
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal--visible {
  opacity: 1;
  transform: none;
}

/* Gestaffelte Hero-Zeilen beim Laden */
.hero .reveal { transition-delay: 0.05s; }
.hero__title-line.reveal:nth-child(1) { transition-delay: 0.1s; }
.hero__title-line.reveal:nth-child(2) { transition-delay: 0.22s; }
.hero__title-line.reveal:nth-child(3) { transition-delay: 0.34s; }
.hero__tagline.reveal { transition-delay: 0.45s; }
.hero__actions.reveal { transition-delay: 0.55s; }
.hero__urgency.reveal { transition-delay: 0.65s; }
.hero__visual.reveal { transition-delay: 0.3s; }

/* Gestaffelte Karten */
.situation.reveal:nth-child(2) { transition-delay: 0.1s; }
.situation.reveal:nth-child(3) { transition-delay: 0.2s; }
.situation.reveal:nth-child(5) { transition-delay: 0.1s; }
.situation.reveal:nth-child(6) { transition-delay: 0.2s; }
.eignung.reveal:nth-child(2) { transition-delay: 0.12s; }
.eignung.reveal:nth-child(3) { transition-delay: 0.24s; }
.promise.reveal:nth-child(2) { transition-delay: 0.12s; }
.promise.reveal:nth-child(3) { transition-delay: 0.24s; }
.ergebnis.reveal:nth-child(2) { transition-delay: 0.12s; }
.ergebnis.reveal:nth-child(3) { transition-delay: 0.24s; }
.prozess__step.reveal:nth-child(2) { transition-delay: 0.1s; }
.prozess__step.reveal:nth-child(3) { transition-delay: 0.2s; }
.prozess__step.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   21. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
