/* ============================================================
   Starke Kinder Detmold — ein Konzept von INSPIRE Martial Arts
   Premium, ruhig, klar. Schwarz / Weiß / Rot. Mobile-first.
   ============================================================ */

:root {
  --color-black: #111111;
  --color-red: #C8102E;
  --color-red-dark: #A60C25;
  --color-white: #FFFFFF;
  --color-light: #F6F6F6;
  --color-gray: #666666;
  --color-border: #E5E5E5;

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1160px;
  --maxw-narrow: 780px;

  --radius: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.06), 0 2px 8px rgba(17, 17, 17, 0.05);
  --shadow-md: 0 4px 14px rgba(17, 17, 17, 0.08), 0 12px 28px rgba(17, 17, 17, 0.07);

  --space-section: clamp(3.5rem, 8vw, 6.5rem);

  --header-h: 72px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--color-red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  text-wrap: balance;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-black);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.35rem); font-weight: 700; }

p { margin: 0 0 1rem; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}

.container-narrow { max-width: var(--maxw-narrow); }

.visually-hidden {
  position: absolute !important;
  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: 1rem; top: -3rem;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; text-decoration: none; }

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

.prose { max-width: 68ch; }
.prose p { color: #262626; text-wrap: pretty; }

.note {
  color: var(--color-gray);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 1.25rem;
}

/* ---------- Markenname INSPIRE: immer rot & fett ---------- */
.brand-name {
  color: var(--color-red);
  font-weight: 700;
}
/* Dunkle Flächen: helleres Rot für ausreichenden Kontrast */
.section-dark .brand-name,
.site-footer .brand-name { color: #FF6B7A; }
/* Tabellenköpfe (farbiger Grund, weißer Text) und farbige Buttons:
   Textfarbe erben, damit der Markenname lesbar bleibt (Bold zählt weiter) */
.compare thead .brand-name,
.btn .brand-name { color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.28);
}
.btn-primary:hover { background: var(--color-red-dark); }

.btn-ghost {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-black); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand:hover { text-decoration: none; }
.brand-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-black);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-sub { font-size: 0.72rem; color: var(--color-gray); font-weight: 500; white-space: nowrap; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bar {
  height: 2px;
  width: 100%;
  background: var(--color-black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav { display: none; }

.primary-nav ul {
  list-style: none;
  margin: 0; padding: 0;
}
.primary-nav a {
  color: var(--color-black);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
}
.primary-nav a:hover { color: var(--color-red); text-decoration: none; }

/* Mobile nav open */
.primary-nav.is-open {
  display: block;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 1rem clamp(1.1rem, 4vw, 2.25rem) 1.5rem;
}
.primary-nav.is-open ul { display: flex; flex-direction: column; gap: 0.25rem; }
.primary-nav.is-open li a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.primary-nav.is-open .nav-cta { margin-top: 1rem; width: 100%; }

/* Erst umschalten, wenn die 6 Menüpunkte plus CTA wirklich auf eine Zeile passen */
@media (min-width: 1200px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.8vw, 1.75rem);
  }
  .primary-nav ul { display: flex; align-items: center; gap: clamp(0.75rem, 1.5vw, 1.4rem); }
  .nav-cta { padding: 0.6rem 1.1rem; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--space-section); }
.section-alt { background: var(--color-light); }
.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.section-dark h2 { color: var(--color-white); }
.section-dark .prose p { color: #DcDcDc; }
/* Helleres Rot für ausreichenden Kontrast auf dunklem Grund */
.section-dark a { color: #FF6B7A; text-decoration: underline; }
.section-dark a:hover { color: #FF8A96; }
.link-hauptseite {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  color: #B8B8B8 !important;
}

.section h2 { max-width: 22ch; }

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--space-section);
  background:
    radial-gradient(1200px 500px at 100% -10%, rgba(200, 16, 46, 0.06), transparent 60%),
    var(--color-white);
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-subline {
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 1.1rem;
}
.hero-text { color: #262626; max-width: 56ch; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 1.1rem;
}
.hero-trust {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
}
.hero-cta .btn { flex: 1 1 auto; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-cta .btn { flex: 0 0 auto; }
}

/* ---------- Image placeholders ---------- */
.img-placeholder {
  position: relative;
  margin: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(45deg, #ededed 0 12px, #f4f4f4 12px 24px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-gray);
  overflow: hidden;
}
/* Echtes Bild deckt den Platzhalter ab, sobald die Datei vorhanden ist.
   Fehlt die Datei (onerror), wird das Bild ausgeblendet und der
   gestreifte Platzhalter samt Hinweis bleibt sichtbar. */
.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-placeholder-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding: 0.5rem 1rem;
}
.hero-img { aspect-ratio: 5 / 6; box-shadow: var(--shadow-md); }
/* Querformat-Rahmen (z. B. Gruppenfoto) – zeigt das ganze Bild ohne seitlichen Beschnitt */
.img-wide { aspect-ratio: 16 / 9; }

@media (min-width: 860px) {
  .hero-img { aspect-ratio: 4 / 5; }
}

/* ---------- Auf einen Blick (scanbar / AI-freundlich) ---------- */
.section-glance {
  padding-block: clamp(2.25rem, 5vw, 3.5rem);
}
.section-glance h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: clamp(1.2rem, 3vw, 1.75rem);
}
.at-a-glance {
  margin: 0;
  display: grid;
  gap: 0;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.glance-item {
  padding: 1.15rem 1.4rem;
  border-top: 1px solid var(--color-border);
}
.glance-item:first-child { border-top: 0; }
.at-a-glance dt {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}
.at-a-glance dd {
  margin: 0;
  color: #262626;
  font-size: 1rem;
  line-height: 1.55;
}
@media (min-width: 720px) {
  .at-a-glance { grid-template-columns: 1fr 1fr; }
  .glance-item { border-top: 1px solid var(--color-border); }
  /* obere Reihe ohne Trennlinie */
  .glance-item:nth-child(1),
  .glance-item:nth-child(2) { border-top: 0; }
  /* vertikale Trennlinie zwischen den Spalten */
  .glance-item:nth-child(odd) { border-right: 1px solid var(--color-border); }
}

/* ---------- Eltern-Stimmen (statt Karten) ---------- */
.stimmen {
  list-style: none;
  margin: clamp(2.25rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.stimmen li {
  padding: clamp(1.4rem, 3vw, 1.9rem) 0;
  border-top: 1px solid var(--color-border);
}
.stimme {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--color-black);
  text-wrap: balance;
}
.stimme-antwort {
  margin: 0;
  max-width: 52ch;
  color: #4a4a4a;
  text-wrap: pretty;
}
@media (min-width: 760px) {
  .stimmen { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4.5rem); }
  /* obere Reihe ohne doppelte Trennlinie */
  .stimmen li:nth-child(-n + 2) { border-top: 1px solid var(--color-black); }
}

/* ---------- Pullquote ---------- */
.pullquote {
  position: relative;
  margin: clamp(2.25rem, 5vw, 3.5rem) 0;
  padding-top: clamp(2.4rem, 5vw, 3.25rem);
  max-width: 24ch;
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-black);
  text-wrap: balance;
}
.pullquote::before {
  content: "\201C";
  position: absolute;
  top: clamp(-0.35em, -0.2vw, -0.15em);
  left: -0.05em;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  color: var(--color-red);
  pointer-events: none;
}
.section-dark .pullquote { color: var(--color-white); }
.section-dark .pullquote::before { color: #FF6B7A; }

/* ---------- Tables ---------- */
.table-wrap { margin-top: clamp(1.6rem, 4vw, 2.5rem); }

.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare thead th {
  text-align: left;
  font-size: 0.98rem;
  padding: 1rem 1.1rem;
  background: var(--color-black);
  color: var(--color-white);
}
.compare thead th:last-child { background: var(--color-red); }
.compare td {
  padding: 0.95rem 1.1rem;
  border-top: 1px solid var(--color-border);
  vertical-align: top;
  font-size: 0.98rem;
}
.compare tbody td:last-child { font-weight: 600; }

/* Tabellen auf Mobile sauber umbrechen (Karten-Layout) */
@media (max-width: 620px) {
  .compare, .compare thead, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  .compare thead { display: none; }
  .compare { border-radius: var(--radius); }
  .compare tr {
    border-top: 1px solid var(--color-border);
    padding: 0.4rem 0;
  }
  .compare tr:first-child { border-top: 0; }
  .compare td {
    border-top: 0;
    padding: 0.55rem 1.1rem;
    display: grid;
    gap: 0.15rem;
  }
  .compare td::before {
    content: attr(data-label);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-red);
    font-weight: 700;
  }
  .compare tbody td:last-child { padding-bottom: 0.9rem; }
}

/* ---------- Areas (5 Bereiche) ---------- */
.areas {
  display: grid;
  gap: 1.1rem;
  margin-top: clamp(1.8rem, 4vw, 2.75rem);
}
.area {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.area-num {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.2rem;
}
.area:nth-child(odd) .area-num { background: var(--color-red); }
.area-body h3 { margin-bottom: 0.4rem; }
.area-body p { color: #333; margin-bottom: 0.5rem; }
.area-body p:last-child { margin-bottom: 0; }

@media (min-width: 800px) {
  .areas { grid-template-columns: repeat(2, 1fr); }
  .area:first-child { grid-column: 1 / -1; }
}

/* ---------- CTA band ---------- */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.cta-micro { color: var(--color-gray); font-size: 0.95rem; }
.cta-micro-center { text-align: center; display: block; margin-top: 0.5rem; }

/* ---------- Media split ---------- */
.media-split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin-top: clamp(1.6rem, 4vw, 2.5rem);
}
@media (min-width: 860px) {
  .media-split { grid-template-columns: 1fr 1fr; }
}

/* ---------- Check list ---------- */
.check-list {
  list-style: none;
  margin: clamp(1.5rem, 4vw, 2.25rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 12px; height: 7px;
  border-left: 3px solid var(--color-red);
  border-bottom: 3px solid var(--color-red);
  transform: rotate(-45deg);
}
@media (min-width: 760px) {
  .check-list { grid-template-columns: repeat(2, 1fr); gap: 0.9rem 2rem; }
}

/* ---------- Accordion ---------- */
.accordion {
  margin-top: clamp(1.6rem, 4vw, 2.5rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
}
.accordion-item + .accordion-item { border-top: 1px solid var(--color-border); }
.accordion-header { margin: 0; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.15rem 1.3rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-black);
  cursor: pointer;
}
.accordion-trigger:hover { color: var(--color-red); }
.accordion-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px; height: 18px;
}
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--color-red);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.accordion-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.accordion-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: scaleY(0); opacity: 0; }

.accordion-panel {
  padding: 0 1.3rem 1.3rem;
}
.accordion-panel p { color: #333; margin: 0 0 0.75rem; }
.accordion-panel p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.section-contact { background: var(--color-light); }
.form-hint { color: var(--color-gray); font-size: 0.98rem; }

/* Anfrage-Box: führt zum Formular auf der INSPIRE Hauptseite */
.anfrage-box {
  margin-top: clamp(1.6rem, 4vw, 2.25rem);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.anfrage-box .btn { font-size: 1.05rem; padding-block: 1.05rem; }
.anfrage-alt {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  color: var(--color-gray);
}

.contact-form {
  margin-top: clamp(1.6rem, 4vw, 2.25rem);
  display: grid;
  gap: 1.1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 680px) {
  .contact-form { grid-template-columns: 1fr 1fr; }
  .field-wide { grid-column: 1 / -1; }
}

/* Honeypot-Feld: für Menschen unsichtbar, nur Bots füllen es aus */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-black);
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}
.field textarea { resize: vertical; }

.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}
.field-check input { margin-top: 0.25rem; width: 20px; height: 20px; flex: 0 0 auto; }
.field-check label { font-weight: 500; font-size: 0.92rem; color: #333; }

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.is-error { color: var(--color-red); }
.form-status.is-ok { color: #1a7a3c; }

.form-note {
  margin: 1rem 0 0;
  color: var(--color-gray);
  font-size: 0.95rem;
  text-align: center;
}
.form-note-muted { font-size: 0.88rem; opacity: 0.85; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black);
  color: #cfcfcf;
  padding-top: clamp(2.5rem, 6vw, 4rem);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-title { color: var(--color-white); font-weight: 800; font-size: 1.2rem; margin: 0 0 0.3rem; }
.footer-sub { margin: 0; font-size: 0.95rem; }
.footer-heading {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
}
.footer-contact p { margin: 0 0 0.35rem; font-size: 0.95rem; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-links a { color: #cfcfcf; }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.4rem 1.8rem;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: #9a9a9a; }

/* ---------- Motion: eine ruhige Einblendung beim Laden ----------
   Bewusst kein Scroll-Reveal auf jedem Abschnitt. Der Inhalt ist immer
   sichtbar; die Animation ist Zugabe, kein Schalter. */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > *,
  .hero-media {
    animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.02s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.08s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.14s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.20s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.26s; }
  .hero-content > *:nth-child(6) { animation-delay: 0.32s; }
  .hero-media { animation-delay: 0.12s; animation-duration: 0.9s; }
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .nav-toggle, .hero-cta, .cta-band, .contact-form, .skip-link { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .section, .hero { padding-block: 1rem; }
  .section-dark { background: #fff; color: #000; }
  .section-dark h2, .section-dark .prose p { color: #000; }
  a { color: #000; text-decoration: underline; }
}
