@import url('schriften.css');

/* ==========================================================================
   gentuka.com
   Die Seite ist ihr eigener Beleg: Sie laedt in unter 200 KB, setzt keine
   Cookies und braucht kein Banner. Deshalb stehen die Zahlen sichtbar drauf.
   ========================================================================== */

:root {
  --grund:   #fbfbfa;
  --flaeche: #ffffff;
  --tinte:   #14161a;
  --leise:   #616872;
  --linie:   #e3e4e2;
  --akzent:  #1f5d3f;      /* gedecktes Gruen, kontrastreich auf Hell */
  --akzent-hell: #eaf3ed;

  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --bahn: 58rem;
  --satz: 34rem;
  --luft: clamp(1.25rem, 5vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--grund);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--akzent); text-underline-offset: 0.2em; }
:focus-visible { outline: 2px solid var(--akzent); outline-offset: 3px; }

.bahn { width: min(100% - 2 * var(--luft), var(--bahn)); margin-inline: auto; }
.satz { max-width: var(--satz); }

.zum-inhalt { position: absolute; left: -9999px; background: var(--tinte); color: #fff; padding: .7em 1.2em; }
.zum-inhalt:focus { left: var(--luft); top: .5rem; z-index: 10; }

/* ---- Kopf ---------------------------------------------------------- */

.kopf { padding-block: 1.6rem; }
.kopf__innen { display: flex; flex-wrap: wrap; gap: .75rem 2rem; align-items: baseline; justify-content: space-between; }
.marke { font-family: var(--serif); font-size: 1.35rem; text-decoration: none; color: var(--tinte); }
.kopf__nav { display: flex; gap: 0 1.5rem; font-size: .92rem; }
.kopf__nav a { color: var(--leise); text-decoration: none; }
.kopf__nav a:hover { color: var(--tinte); }

/* ---- Auftakt ------------------------------------------------------- */

.auftakt { padding-block: clamp(3rem, 9vw, 6rem) clamp(2rem, 6vw, 4rem); }
.auftakt h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  max-width: 15em;
  margin-bottom: 1.2rem;
}
.auftakt h1 em { font-style: italic; color: var(--akzent); }
.auftakt__zusatz { font-size: 1.2rem; color: var(--leise); max-width: 32rem; }

/* ---- Beleg: drei Zahlen -------------------------------------------- */

.beleg {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  background: var(--linie);
  border: 1px solid var(--linie);
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}
.beleg__feld { background: var(--flaeche); padding: 1.4rem 1.5rem; }
.beleg__zahl { font-family: var(--serif); font-size: 2.1rem; line-height: 1; display: block; }
.beleg__was  { font-size: .88rem; color: var(--leise); margin-top: .45rem; display: block; }

/* ---- Abschnitte ---------------------------------------------------- */

.teil { padding-block: clamp(2.5rem, 7vw, 4.5rem); }
.teil--linie { border-top: 1px solid var(--linie); }
.teil--flaeche { background: var(--flaeche); border-block: 1px solid var(--linie); }

.teil__titel { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1.5rem; }
.vorzeile { font-size: .82rem; letter-spacing: .16em; color: var(--leise); margin: 0 0 .6rem; font-weight: 500; }

/* ---- Leistungen ---------------------------------------------------- */

.punkte { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.75rem; }
@media (min-width: 42em) { .punkte { grid-template-columns: 1fr 1fr; gap: 2.25rem 3rem; } }
.punkt h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; margin-bottom: .35rem; }
.punkt p { color: var(--leise); font-size: .98rem; }

/* ---- Ablauf: nummeriert, weil es wirklich eine Reihenfolge ist ------ */

.ablauf { list-style: none; counter-reset: schritt; margin: 0; padding: 0; }
.schritt {
  counter-increment: schritt;
  display: grid; grid-template-columns: 2.2rem 1fr; gap: 0 1rem;
  padding: 1.1rem 0; border-top: 1px solid var(--linie);
}
.schritt::before {
  content: counter(schritt);
  font-family: var(--serif); font-size: 1.3rem; color: var(--akzent); line-height: 1.3;
}
.schritt h3 { font-family: var(--sans); font-weight: 600; font-size: 1rem; margin-bottom: .2rem; }
.schritt p { color: var(--leise); font-size: .96rem; }

/* ---- Knopf --------------------------------------------------------- */

.knoepfe { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.knopf {
  display: inline-block; font-weight: 500; font-size: 1rem;
  padding: .85em 1.9em; text-decoration: none; border: 1px solid var(--akzent);
  transition: background-color .18s, color .18s;
}
.knopf--voll { background: var(--akzent); color: #fff; }
.knopf--voll:hover { background: transparent; color: var(--akzent); }
.knopf--leer { color: var(--akzent); }
.knopf--leer:hover { background: var(--akzent-hell); }
@media (prefers-reduced-motion: reduce) { .knopf { transition: none; } }

/* ---- Kontakt ------------------------------------------------------- */

.kontakt__gross { font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2rem); }
.kontakt__gross a { text-decoration: none; }
.kontakt__gross a:hover { text-decoration: underline; }
.kontakt__klein { color: var(--leise); font-size: .96rem; }

/* ---- Fuss ---------------------------------------------------------- */

.fuss { border-top: 1px solid var(--linie); padding-block: 2.5rem; font-size: .9rem; color: var(--leise); }
.fuss__raster { display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between; }

/* ---- Rechtstexte --------------------------------------------------- */

.rechtstext { max-width: var(--satz); }
.rechtstext h2 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; margin: 2.2rem 0 .4rem; }
.rechtstext h2:first-child { margin-top: 0; }

@media print { .kopf__nav, .knoepfe, .fuss { display: none; } body { font-size: 11pt; } }
