/* ==========================================================================
   fitforgolfing – Stylesheet
   Farbwelt abgeleitet aus dem Logo (Grün #4CA53C) auf hellem Grund,
   Fließtext in Schwarz für maximale Lesbarkeit.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schriften (lokal gehostet – kein externer Anbieter, kein Cookie-Banner)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/WorkSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/WorkSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Design-Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Grün – aus dem Logo abgeleitet */
  --green-900: #1C4413;
  --green-800: #24571A;
  --green-700: #2E6B22; /* Text & Buttons: Kontrast 6.9:1 auf Weiß */
  --green-600: #3A8329;
  --green-500: #4CA53C; /* Logo-Grün */
  --green-400: #6FBF4E;
  --green-200: #C4E4B4;
  --green-100: #DEF0D4;
  --green-50:  #F1F8EC;

  /* Neutral */
  --ink:      #101410; /* Fließtext – nahezu Schwarz */
  --ink-soft: #333B33;
  --muted:    #5F675F;
  --line:     #E3E9DE;
  --line-soft:#EFF3EC;
  --bg:       #FCFDFB;
  --bg-alt:   #F6F9F3;
  --card:     #FFFFFF;

  /* Typografie */
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-brand: "Outfit", "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Maße */
  --wrap: 1140px;
  --wrap-narrow: 760px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  /* Schatten – dezent, nie schwer */
  --shadow-sm: 0 1px 2px rgba(16, 20, 16, .04), 0 2px 8px rgba(16, 20, 16, .04);
  --shadow-md: 0 2px 4px rgba(16, 20, 16, .04), 0 12px 28px rgba(16, 20, 16, .07);
  --shadow-lg: 0 4px 8px rgba(16, 20, 16, .04), 0 24px 56px rgba(28, 68, 19, .12);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   3. Reset & Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Sticky-Header beim Ankersprung nicht überdecken */
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;   /* 17px */
  line-height: 1.7;
  font-weight: 400;
  /* lange deutsche Komposita dürfen notfalls umbrechen statt zu überlaufen */
  overflow-wrap: break-word;
  /* Keine fi-/fl-Ligaturen: sonst verschluckt die Schrift den i-Punkt und
     „fitforgolfing“ sowie die E-Mail-Adresse lesen sich falsch. */
  font-variant-ligatures: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
  /* „Datenschutzerklärung“ & Co. sauber trennen statt aus dem Layout laufen */
  hyphens: auto;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.25rem, 5.2vw, 3.9rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); line-height: 1.3; }
h4 { font-size: 1.0625rem; line-height: 1.4; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-800); }

ul { margin: 0; padding: 0; }

strong { font-weight: 700; }

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

::selection { background: var(--green-200); color: var(--green-900); }

/* --------------------------------------------------------------------------
   4. Layout-Helfer
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }
.section--tight { padding-top: clamp(40px, 5vw, 64px); }

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.09rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-brand);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.1em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  flex: none;
}
.section-head--center .eyebrow::before { display: none; }

.lead {
  font-size: clamp(1.06rem, 1.9vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.68;
}

/* Nur für Screenreader sichtbar */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--green-700);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn svg { flex: none; width: 18px; height: 18px; }

.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-800); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { background: #fff; color: var(--green-800); border-color: var(--green-200); }
.btn--ghost:hover { background: var(--green-50); color: var(--green-900); border-color: var(--green-400); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--green-800); border-color: var(--line); }
.btn--light:hover { background: var(--green-50); border-color: var(--green-400); color: var(--green-900); transform: translateY(-2px); }

.btn--sm { padding: 10px 20px; font-size: .875rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 253, 251, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(16, 20, 16, .05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

/* Wortmarke */
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand__mark { width: 40px; height: 40px; border-radius: 9px; flex: none; }
.brand__text {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}
.brand__text .t1 { color: var(--green-700); }
.brand__text .t2 { color: var(--green-500); }
.brand__text .t3 { color: var(--ink); }
.brand:hover .brand__text .t3 { color: var(--green-900); }

/* Navigation */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-brand);
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 999px;
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav a:hover { color: var(--green-800); background: var(--green-50); }
.nav a.is-active { color: var(--green-800); background: var(--green-50); }

.header-cta { display: inline-flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--green-800);
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.nav-toggle:hover { border-color: var(--green-400); background: var(--green-50); }
.nav-toggle span {
  position: relative;
  display: block; width: 19px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: background-color .18s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 19px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .22s var(--ease), top .18s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 7vw, 92px);
  background:
    radial-gradient(1100px 520px at 88% -8%, var(--green-50) 0%, rgba(241,248,236,0) 62%),
    radial-gradient(760px 420px at 4% 108%, rgba(111,191,78,.10) 0%, rgba(111,191,78,0) 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.hero h1 {
  /* Kleiner als die globale H1, damit die drei manuellen Zeilenumbrüche halten */
  font-size: clamp(1.95rem, 4.2vw, 3.35rem);
  margin-bottom: .42em;
  text-wrap: pretty;
}
.hero h1 .accent {
  color: var(--green-700);
  font-style: italic;
  /* echte Kursive statt synthetisch fett gerechneter Lora-Bold-Kursive */
  font-weight: 400;
}

.hero .lead { max-width: 52ch; margin-bottom: 2rem; }

.hero .btn-row { margin-bottom: 1.6rem; }

.hero-note {
  font-size: .93rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5em;
}
.hero-note svg { width: 17px; height: 17px; color: var(--green-600); flex: none; }

/* Faktenkarte */
.facts {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 3vw, 34px);
}
.facts__title {
  font-family: var(--font-brand);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 20px;
}
.facts__list { list-style: none; display: grid; gap: 2px; }
.facts__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.facts__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.facts__list dt, .facts__k { color: var(--muted); font-size: .95rem; }
.facts__v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  text-align: right;
}
.facts__v .hl { color: var(--green-700); }

.facts__foot {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   8. USP-Leiste
   -------------------------------------------------------------------------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.usp {
  background: var(--card);
  padding: clamp(22px, 2.6vw, 30px);
}
.usp__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--green-50);
  color: var(--green-700);
  margin-bottom: 16px;
}
.usp__icon svg { width: 21px; height: 21px; }
.usp h3 { font-size: 1.08rem; margin-bottom: .35em; }
.usp p { font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   9. Angebote
   -------------------------------------------------------------------------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.offer-grid > .offer--wide { grid-column: 1 / -1; }

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.offer:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}

.offer--feature {
  border-color: var(--green-400);
  background:
    linear-gradient(180deg, var(--green-50) 0%, #fff 190px);
  box-shadow: var(--shadow-md);
}
.offer--feature:hover { border-color: var(--green-500); }

.offer__badge {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--font-brand);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green-700);
  padding: 6px 13px;
  border-radius: 999px;
}

.offer__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  margin-bottom: 18px;
}
.offer--feature .offer__icon { background: #fff; border-color: var(--green-200); }
.offer__icon svg { width: 23px; height: 23px; }

.offer h3 { margin-bottom: .45em; padding-right: 90px; }
.offer > p { color: var(--muted); font-size: .98rem; }

.offer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 4px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.offer__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--green-800);
  line-height: 1;
  letter-spacing: -0.02em;
}
.offer__price small {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: var(--font-brand);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.tag svg { width: 13px; height: 13px; }

.check-list { list-style: none; display: grid; gap: 11px; margin-top: 4px; }
.check-list li {
  position: relative;
  padding-left: 29px;
  font-size: .97rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .3em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E6B22' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
  border: 1px solid var(--green-100);
}

.offer__hint {
  margin-top: 20px;
  padding: 13px 16px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  font-size: .91rem;
  color: var(--green-900);
  line-height: 1.55;
}
.offer__hint strong { color: var(--green-800); }

/* Pfeiler des Golf-Trainings */
.pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}
.pillars li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  font-size: .94rem;
  line-height: 1.45;
}
.pillars strong {
  display: block;
  font-family: var(--font-brand);
  font-size: .69rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 5px;
}

/* --------------------------------------------------------------------------
   10. Preistabelle
   -------------------------------------------------------------------------- */
.table-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.table-scroll { overflow-x: auto; }

table.prices {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
table.prices caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
table.prices th, table.prices td {
  text-align: left;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .98rem;
  vertical-align: top;
}
table.prices thead th {
  font-family: var(--font-brand);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--green-50);
  border-bottom: 1px solid var(--green-100);
  white-space: nowrap;
}
table.prices tbody tr:last-child th, table.prices tbody tr:last-child td { border-bottom: 0; }
table.prices tbody tr:hover { background: #FBFDF9; }
table.prices tbody th { font-weight: 700; color: var(--ink); }
table.prices td.num, table.prices th.num { text-align: right; white-space: nowrap; }
table.prices .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-800);
}
.price-note {
  margin-top: 16px;
  font-size: .89rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Zielgruppen
   -------------------------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aud {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.aud:hover { transform: translateY(-2px); border-color: var(--green-200); box-shadow: var(--shadow-sm); }
.aud__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--green-50);
  color: var(--green-700);
  margin-bottom: 14px;
}
.aud__icon svg { width: 19px; height: 19px; }
.aud h3 { font-size: 1.03rem; margin-bottom: .3em; }
.aud p { font-size: .93rem; color: var(--muted); line-height: 1.55; }

.disclaimer {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--green-500);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.6;
}
.disclaimer svg { width: 20px; height: 20px; color: var(--green-600); flex: none; margin-top: 2px; }

/* --------------------------------------------------------------------------
   12. Ablauf
   -------------------------------------------------------------------------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step { position: relative; padding-top: 26px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-200);
  letter-spacing: -0.03em;
}
.step__body {
  padding-top: 26px;
  border-top: 2px solid var(--green-100);
}
.step h3 { font-size: 1.08rem; margin-bottom: .35em; }
.step p { font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   13. Über mich
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-card__mark {
  width: 86px; height: 86px;
  margin: 0 auto 20px;
  border-radius: 19px;
  box-shadow: var(--shadow-md);
}
.about-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-card__role {
  font-family: var(--font-brand);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 24px;
}
.about-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.qual-list { list-style: none; display: grid; gap: 14px; margin-top: 26px; }
.qual-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.qual-list svg { width: 20px; height: 20px; color: var(--green-600); flex: none; margin-top: 2px; }
.qual-list span { font-size: .97rem; line-height: 1.55; }

/* --------------------------------------------------------------------------
   14. Kontakt
   -------------------------------------------------------------------------- */
.contact { background: var(--bg-alt); border-top: 1px solid var(--line-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.contact-methods { display: grid; gap: 14px; }

.cmethod {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.cmethod:hover {
  transform: translateY(-2px);
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.cmethod__icon {
  width: 50px; height: 50px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.cmethod:hover .cmethod__icon { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.cmethod__icon svg { width: 24px; height: 24px; }
.cmethod__label {
  display: block;
  font-family: var(--font-brand);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.cmethod__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.25;
  word-break: break-word;
}
.cmethod__arrow { margin-left: auto; color: var(--green-500); flex: none; transition: transform .2s var(--ease); }
.cmethod__arrow svg { width: 20px; height: 20px; }
.cmethod:hover .cmethod__arrow { transform: translateX(4px); }

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}
.info-card + .info-card { margin-top: 14px; }
.info-card h3 { font-size: 1.14rem; margin-bottom: .5em; }
.info-card address {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.7;
}
.info-card p { color: var(--muted); font-size: .96rem; }

.hours { list-style: none; display: grid; gap: 10px; margin-top: 4px; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .96rem;
}
.hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours span:last-child { font-weight: 700; color: var(--ink); text-align: right; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: clamp(44px, 5vw, 60px) 0 28px;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand p { color: var(--muted); max-width: 34ch; margin-top: 14px; font-size: .93rem; }
.footer-col h4 {
  font-family: var(--font-brand);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 15px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-soft); text-decoration: none; }
.footer-col a:hover { color: var(--green-700); text-decoration: underline; }
.footer-col address { font-style: normal; color: var(--ink-soft); line-height: 1.7; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  color: var(--muted);
  font-size: .88rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--green-700); text-decoration: underline; }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--green-800);
  transition: all .18s var(--ease);
}
.social-row a:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }

/* --------------------------------------------------------------------------
   16. Rechtsseiten (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */
.page-head {
  padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 3vw, 40px);
  background: radial-gradient(900px 400px at 20% -20%, var(--green-50) 0%, rgba(241,248,236,0) 65%);
  border-bottom: 1px solid var(--line-soft);
}
.page-head h1 { font-size: clamp(1.75rem, 4.4vw, 3rem); margin-bottom: .3em; }
.page-head p { color: var(--muted); max-width: 60ch; }

.legal { padding: clamp(44px, 6vw, 72px) 0 clamp(56px, 7vw, 88px); }
.legal-body { max-width: var(--wrap-narrow); }
.legal-body h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.72rem);
  margin-top: 2.4em;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.legal-body > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body h3 { font-size: 1.13rem; margin-top: 1.9em; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-body address { font-style: normal; line-height: 1.8; color: var(--ink-soft); }
.legal-body ul { list-style: none; display: grid; gap: 9px; margin: 0 0 1.15em; }
.legal-body ul li { position: relative; padding-left: 20px; }
.legal-body ul li::before {
  content: "";
  position: absolute; left: 2px; top: .68em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-400);
}
.legal-body dl { margin: 0 0 1.15em; }
.legal-body dt { font-weight: 700; margin-top: .9em; }
.legal-body dd { margin: 0; color: var(--ink-soft); }

.callout {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 1.6em 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout--todo {
  background: #FFF9E8;
  border-color: #F0E0B0;
}
.callout--todo strong { color: #6B5310; }

.toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 2.6rem;
  box-shadow: var(--shadow-sm);
}
.toc h2 {
  font-family: var(--font-brand);
  font-size: .71rem !important;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
}
.toc ol { margin: 0; padding-left: 1.25em; display: grid; gap: 8px; }
.toc a { color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--green-700); text-decoration: underline; }

/* --------------------------------------------------------------------------
   17. Animationen
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 84px; }

  .header-inner { min-height: 68px; }

  .nav {
    position: fixed;
    inset: 68px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(16, 20, 16, .1);
    padding: 14px 22px 22px;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    /* geschlossen */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 13px 14px; border-radius: var(--radius-sm); font-size: 1rem; }

  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer h3 { padding-right: 0; }
  .offer__badge { position: static; display: inline-block; margin-bottom: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 1.0313rem; }
  .wrap { padding-inline: 18px; }
  .usp-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .pillars { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  /* Auf schmalen Displays natürlich umbrechen statt an den festen Umbrüchen */
  .hero h1 br { display: none; }
  .facts__list li { flex-direction: column; gap: 2px; }
  .facts__v { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cmethod { gap: 14px; padding: 17px 18px; }
  .cmethod__icon { width: 44px; height: 44px; }
  .cmethod__value { font-size: 1rem; }
  .offer__meta { gap: 8px 12px; }

  /* Preistabelle: statt seitlich zu scrollen (der Preis wäre sonst außer Sicht)
     wird jede Zeile zu einem eigenen Block – Leistung oben, darunter Dauer und Preis. */
  table.prices { min-width: 0; }
  table.prices thead {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  table.prices tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 6px 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line-soft);
  }
  table.prices tbody tr:last-child { border-bottom: 0; }
  table.prices tbody th,
  table.prices tbody td { display: block; padding: 0; border: 0; }
  table.prices tbody th {
    grid-column: 1 / -1;
    font-size: 1rem;
    margin-bottom: 2px;
  }
  table.prices tbody td { color: var(--muted); font-size: .92rem; }
  table.prices tbody td.num { text-align: right; color: var(--ink); }
}

/* --------------------------------------------------------------------------
   19. Druck
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .btn, .social-row, .cmethod__arrow { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .section { padding: 18px 0; }
  .offer, .info-card, .table-card, .facts { box-shadow: none; break-inside: avoid; }
  a { text-decoration: none; color: #000; }
}
