/* Groombase Landingpage.
 *
 * Handgeschrieben, kein Baukasten. Die Seite hat wenige Bausteine, die sich
 * wiederholen, dafuer braucht es kein Werkzeug, das 100 KB CSS erzeugt.
 *
 * Farben nach research/landingpage_gestaltung.md: Gruen traegt jede Handlung,
 * Terrakotta ist warme Flaeche und niemals Text. Alle Textfarben liegen ueber
 * Kontrast 4.5 auf dem Cremehintergrund, nachgerechnet.
 */

/* Selbst gehostet, nicht ueber den Google-Server eingebunden: eine deutsche
 * Seite, die Schriften bei Google nachlaedt, gibt die IP jeder Besucherin
 * dorthin weiter. Das hat das LG Muenchen 2022 abgeraeumt. Die Dateien liegen
 * unter /fonts, nur der lateinische Zeichensatz. */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/lora-variable-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/lora-italic-variable-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url("/fonts/lato-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("/fonts/lato-700-latin.woff2") format("woff2");
}

/* Ersatzschriften mit angeglichener Laufweite.
 *
 * Bis die eigene Schrift geladen ist, setzt der Browser mit Arial bzw. Georgia.
 * Die laufen breiter als Lato und Lora, der Text bricht anders um, und beim
 * Umschalten ruckelt die halbe Seite. Die Werte sind gemessen, nicht geraten:
 * derselbe Satz in beiden Schriften auf 100 Pixel Groesse, Breite verglichen.
 *
 *   Lato gegen Arial      91,3 %
 *   Lora 600 gegen Georgia 82,2 %
 *   Lora kursiv gegen Georgia 88,5 %
 */
@font-face {
  font-family: "Lato Fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Liberation Sans");
  size-adjust: 91.3%;
}
@font-face {
  font-family: "Lora Fallback";
  font-style: normal;
  src: local("Georgia"), local("Times New Roman"), local("Liberation Serif");
  size-adjust: 82.2%;
}
@font-face {
  font-family: "Lora Fallback";
  font-style: italic;
  src: local("Georgia"), local("Times New Roman"), local("Liberation Serif");
  size-adjust: 88.5%;
}

:root {
  --ink: #2c1810;
  --bg: #fbf5eb;
  --surface: #ffffff;
  --warm-surface: #f6e9db;
  --primary: #0b5140;
  --primary-dark: #073a2e;
  --primary-soft: #e8f1ec;
  --warm: #c4714b;
  --muted: #6b5849;
  --line: #e7d9c8;

  --wrap: 1200px;
  --radius: 14px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  /* 18px statt 16: die Leserin ist im Schnitt ueber vierzig und haelt das
   * Telefon in einem hellen Raum. */
  font: 400 18px/1.7 "Lato", "Lato Fallback", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  margin: 0;
  font-family: "Lora", "Lora Fallback", Georgia, serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 600;
}
h1 { line-height: 1.1; }

/* Ein Abstand zwischen Ueberschrift und dem Text darunter, ueberall gleich.
 * Vorher standen fuenf verschiedene Werte im Stylesheet. */
h2 { margin-bottom: 22px; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: 0; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-underline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.kicker {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}

.lead { font-size: 1.2rem; color: var(--ink); }
.muted { color: var(--muted); }

/* ---------- Kopfzeile ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
}
.topbar.is-scrolled { border-bottom-color: #ece5da; }

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav { display: flex; align-items: center; justify-content: center; gap: 34px; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--primary); }

.topbar-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }

/* ---------- Knoepfe ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary-soft); }
.btn-plain { color: var(--ink); font-weight: 500; text-decoration: none; }
.btn-plain:hover { text-decoration: underline; }
.btn-sm { padding: 11px 20px; font-size: .98rem; border-radius: 10px; }

/* ---------- Hero ---------- */

.hero { padding: 56px 0 150px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 56px;
  align-items: start;
}
.hero h1 { margin-bottom: 22px; color: var(--primary-dark); }
.hero .lead { max-width: 26em; margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.hero-note { color: var(--muted); font-size: 1rem; margin-bottom: 34px; }

.support-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  max-width: 26em;
}
.support-card .icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.support-card p { font-size: 1rem; line-height: 1.45; }

/* Bild und die zwei aufliegenden Karten */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1496 / 990;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -28px rgba(44, 24, 16, .45);
}

.mock-app {
  position: relative;
  width: 92%;
  margin: -104px 0 0 -62px;
  display: grid;
  grid-template-columns: 124px 1fr;
  overflow: hidden;
  font-size: .78rem;
}
.mock-side { border-right: 1px solid var(--line); padding: 14px 10px; overflow: hidden; }
.mock-side .brand { font-size: .78rem; gap: 7px; margin: 0 0 12px 2px; white-space: nowrap; }
.mock-side .brand-mark { width: 22px; height: 22px; border-radius: 7px; font-size: .78rem; }
.mock-side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.mock-side li { padding: 5px 8px; border-radius: 7px; color: var(--muted); font-size: .72rem; }
.mock-side li.is-active { background: var(--primary-soft); color: var(--primary-dark); font-weight: 600; }

.mock-main { padding: 14px 16px 18px; }
.mock-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mock-head strong { font-weight: 600; }
.mock-head .spacer { margin-left: auto; }
.mock-chip {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px 9px;
  color: var(--muted);
  font-size: .74rem;
}

.mock-cal { display: grid; grid-template-columns: 40px repeat(5, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.mock-cal > * { background: var(--surface); padding: 4px 5px; min-height: 22px; }
.mock-cal .day { font-weight: 600; color: var(--muted); font-size: .7rem; text-align: center; white-space: nowrap; }
.mock-cal .hour { color: var(--muted); font-size: .66rem; text-align: right; white-space: nowrap; }
.mock-ev {
  display: block;
  background: var(--primary-soft);
  border-radius: 6px;
  padding: 3px 5px;
  line-height: 1.2;
  font-size: .58rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-ev b { display: block; font-weight: 600; }
.mock-ev span { color: var(--muted); }

.mock-booking {
  position: absolute;
  right: -26px;
  bottom: -78px;
  width: 320px;
  padding: 20px 22px;
  font-size: .92rem;
}
.mock-booking .eyebrow { color: var(--muted); font-size: .82rem; margin-bottom: 8px; }
.mock-booking h3 { font-size: 1.12rem; margin-bottom: 14px; line-height: 1.3; }
.mock-booking ul { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 7px; color: var(--ink); }
.mock-booking li { display: flex; gap: 9px; align-items: center; font-size: .9rem; }
.mock-booking .row { display: flex; gap: 10px; }
.mock-booking .row .btn { flex: 1; padding: 10px 12px; font-size: .92rem; border-radius: 10px; }

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

section { padding: 84px 0; }
section.tinted { background: var(--warm-surface); }
.section-head { max-width: 42em; margin-bottom: 44px; }
.rule { display: flex; gap: 16px; }
.rule .tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: #fff; display: grid; place-items: center;
  margin-top: 2px;
}
.rule h3 { margin-bottom: 6px; }
.rule p { color: var(--muted); font-size: 1.02rem; }
.price-card .btn { margin: 22px 0 16px; }

/* ---------- Fragen ---------- */

.faq { display: grid; gap: 12px; max-width: 62em; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 24px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 18px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding-bottom: 20px; font-size: 1.04rem; }
.closing .lead { margin: 0 auto 28px; max-width: 34em; }
.closing .hero-actions { justify-content: center; }

footer { background: var(--primary-dark); color: #e8f1ec; padding: 40px 0; }
footer a { color: #fff; }
footer h3 { font-size: 1rem; margin-bottom: 12px; color: #fff; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
footer p, footer li { font-size: .98rem; color: #cfe0d7; }

/* ---------- Schmale Bildschirme ---------- */

@media (max-width: 1020px) {
  .hero-grid, .split, .trust { grid-template-columns: 1fr; gap: 40px; }
  .mock-app { width: 100%; margin: 24px 0 0; }
  .mock-booking { position: static; width: auto; margin-top: 18px; }
  .nav { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  section { padding: 60px 0; }
  .hero { padding: 36px 0 60px; }
  .btn { width: 100%; }
  .mock-app { grid-template-columns: 1fr; }
  .mock-side { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ==========================================================================
   Fassung nach Guidos Gesamtentwurf vom 26.08.2026.
   ========================================================================== */

.center { text-align: center; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* Dunkler Abschnitt */
section.dark { background: var(--primary-dark); color: #eaf3ee; }
section.dark h2 { color: #fff; }
section.dark .kicker { color: #a9c9ba; }
section.dark .lead, section.dark p { color: #cfe0d7; }
.dark-grid { display: grid; grid-template-columns: .72fr 1.68fr; gap: 40px; align-items: center; }
.dark-visual .mock-app { width: 100%; margin: 0; }
.dark-visual .mock-booking { right: -34px; bottom: -58px; width: 300px; }

/* Sechserraster mit Trennlinien */
.grid6 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid6 .cell { padding: 30px 28px; border-top: 1px solid var(--line); }
.grid6 .cell:nth-child(-n+3) { border-top: 0; }
.grid6 .cell:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
.grid6 .cell:first-child, .grid6 .cell:nth-child(4) { padding-left: 0; }
.grid6 .ic { color: var(--primary); margin-bottom: 14px; display: block; }
.grid6 h3 { margin-bottom: 8px; }
.grid6 p { color: var(--muted); font-size: 1rem; }

.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.three .ic { color: var(--primary); margin-bottom: 18px; display: block; }
.three h3 { margin-bottom: 8px; }
.three p { color: var(--muted); font-size: 1rem; }
.three .col + .col { border-left: 1px solid var(--line); padding-left: 34px; }

/* Schritte */
section.steps { background: #e7efe9; }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.step { position: relative; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.1rem;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 23px; left: calc(50% + 34px); right: calc(-50% + 34px);
  height: 1px; background: var(--primary); opacity: .35;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 1rem; }

/* Preis, zweispaltig */
.price-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.price-box { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; background: color-mix(in srgb, var(--surface) 45%, transparent); }
.price-box .name { font-size: 1.35rem; font-weight: 600; margin-bottom: 4px; }
.price-box .amount { font-size: 2.9rem; font-weight: 700; letter-spacing: -.03em; color: var(--primary-dark); }
.price-box .amount span { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 10px; }
.price-box ul { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; }
.price-box li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; }
.price-box li svg { flex: none; color: var(--primary); margin-top: 3px; }
.price-box .btn { width: 100%; }

/* Abschlussband */
.band { background: var(--primary); color: #fff; padding: 56px 0; }
.band-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.band-inner > div { margin-right: auto; max-width: 34em; }
.band h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 12px; }
.band p { color: #cfe0d7; margin: 0; }
.band .btn { background: #fff; color: var(--primary-dark); }
.band .btn:hover { background: #eaf3ee; }

footer .foot-row { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
footer .foot-row nav { margin-left: auto; display: flex; gap: 30px; flex-wrap: wrap; }
footer .foot-row a { text-decoration: none; }
footer .foot-row a:hover { text-decoration: underline; }

@media (max-width: 1020px) {
  .dark-grid, .price-split { grid-template-columns: 1fr; gap: 36px; }
  .grid6 { grid-template-columns: 1fr; }
  .grid6 .cell { border-right: 0 !important; border-top: 1px solid var(--line); padding-left: 0; padding-right: 0; }
  .grid6 .cell:first-child { border-top: 0; }
  .three { grid-template-columns: 1fr; }
  .three .col + .col { border-left: 0; padding-left: 0; }
  .steps-row { grid-template-columns: 1fr; gap: 34px; }
  .step:not(:last-child)::after { display: none; }
  .dark-visual .mock-booking { position: static; margin-top: 16px; width: auto; }
}

/* Die hellen Textfarben des dunklen Abschnitts duerfen nicht in die
 * Anwendungsbilder durchschlagen: die stehen auf weissem Grund. */
section.dark .mock { color: var(--ink); }
section.dark .mock h3, section.dark .mock h4, section.dark .mock b { color: var(--ink); }
section.dark .mock p, section.dark .mock span { color: inherit; }
section.dark .mock .eyebrow, section.dark .mock .mock-meta, section.dark .mock .mock-rows span,
section.dark .mock .mock-person span, section.dark .mock-side li { color: var(--muted); }
section.dark .mock .mock-side li.is-active { color: var(--primary-dark); }
section.dark .mock .btn-primary { color: #fff; }
section.dark .mock .btn-secondary, section.dark .mock .link { color: var(--primary); }

.price-box .price-note { margin: 14px 0 0; text-align: center; font-size: .95rem; color: var(--muted); }

/* Die Versalien der Ueberschrift haben eine groessere Vorbreite als die
 * kleinere Schrift darueber und darunter. Optisch wirkt die Zeile dadurch
 * eingerueckt, obwohl alle Kanten mathematisch buendig sind. Der Ausgleich
 * ist in em angegeben, damit er auf jeder Groesse passt. */
.hero h1 { margin-left: -.055em; }

/* ---------- Sektion: kurzfristige Absagen ---------- */

.gap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: center; }
.flow-card .ic { color: var(--primary); display: block; margin: 0 auto 2px; }

@media (max-width: 1020px) {
  .gap { grid-template-columns: 1fr; gap: 34px; }
}

/* In den Anwendungsbildern bleibt alles serifenlos, dort ist keine Ueberschrift
 * eine Ueberschrift, sondern Bedienoberflaeche. */
.mock h3, .mock h4 { font-family: "Lato", "Lato Fallback", system-ui, sans-serif; font-weight: 700; }

/* ---------- Gruenderwort, direkt unter dem Hero ---------- */

/* Eigener Grund, damit sich das Gruenderwort vom Hero absetzt. Die Linie
 * allein reichte nicht, die Sektion klebte am Bild darueber. */
section.founder { padding: 56px 0; background: var(--warm-surface); }
.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 60em;
  margin: 0 auto;
}
.founder-photo {
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden; flex: none;
  background: var(--warm-surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: "Lora", "Lora Fallback", Georgia, serif;
  font-size: 1.5rem; font-weight: 600; color: var(--primary);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder blockquote {
  margin: 0 0 12px;
  font-family: "Lora", "Lora Fallback", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
}
.founder .who { margin: 0; font-size: .98rem; color: var(--muted); }

@media (max-width: 620px) {
  .founder-inner { grid-template-columns: 1fr; gap: 18px; }
  .founder blockquote { font-size: 1.15rem; }
}

/* Eigene Zeichnungen statt Standardsymbolen, Guido 26.08.2026. Gruen traegt
 * die Linie, Terrakotta setzt genau einen Akzent je Bild. */
.three .ic img { display: block; height: 58px; width: auto; }

/* ---------- Fragen mit Feedback-Kasten daneben ---------- */

.faq-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 44px; align-items: start; }
.faq-grid .faq { max-width: none; }

.feedback {
  background: var(--warm-surface);
  border-radius: 22px;
  padding: 34px 32px;
}
.feedback h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--primary-dark);
}
.feedback p { color: var(--muted); font-size: 1.02rem; margin-bottom: 24px; }
.feedback .btn { border-radius: 999px; }

@media (max-width: 1020px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ---------- Kalender und Kundenkartei ---------- */

.record { display: grid; grid-template-columns: .68fr 1.32fr; gap: 40px; align-items: center; }
/* Diese eine Sektion hat mehr Text links, die Ueberschrift braucht Breite. */
.record-wide { grid-template-columns: .92fr 1.08fr; }

/* ---------- Preissektion, linke Spalte ---------- */

.price-split .lead { margin-bottom: 26px; }

.trust-card {
  background: var(--warm-surface);
  border-radius: 20px;
  padding: 26px 28px;
  max-width: 30em;
}
.trust-card blockquote {
  margin: 0 0 18px;
  font-family: "Lora", "Lora Fallback", Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
}
.trust-card .who { display: flex; align-items: center; gap: 14px; }
.trust-card .who img {
  width: 62px; height: 62px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--surface);
}
.trust-card .who b { display: block; font-weight: 600; font-size: 1rem; }
.trust-card .who span { font-size: .92rem; color: var(--muted); }

.promises { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 26px; }
.promise { display: flex; align-items: center; gap: 10px; font-size: .98rem; }
.promise svg { color: var(--primary); flex: none; }

@media (max-width: 620px) {
  .promises { gap: 14px; }
  .promise { width: 100%; }
}

.gap-quote { margin: 44px 0 0; }
.gap-quote blockquote {
  margin: 0 0 16px; font-family: "Lora", "Lora Fallback", Georgia, serif;
  font-style: italic; font-size: 1.22rem; line-height: 1.5;
}
.gap-quote .rule { display: block; width: 34px; height: 2px; background: var(--warm); margin-bottom: 12px; }
.gap-quote figcaption { color: var(--muted); font-size: .95rem; }

@media (max-width: 1020px) {
}

/* Wortmarke statt gesetztem Schriftzug. Die Hoehe steuert die Groesse, die
 * Breite laeuft mit, damit nichts verzerrt. */
.topbar .brand img { height: 25px; width: auto; display: block; }
footer .brand img { height: 26px; width: auto; display: block; }

@media (max-width: 1020px) {
  .record { grid-template-columns: 1fr; gap: 34px; }
}

/* Der Ausschnitt der Anwendung liegt als Bild vor. Nachgebaut war er zu
 * zerbrechlich: jede Zeile Text hat das Raster verschoben. */
.screen { margin: 0; }
.screen img { width: 100%; height: auto; display: block; }

/* Schmale Bildschirme, Nachtrag.
 *
 * Muss am Ende stehen: die Regeln fuer den dunklen Abschnitt kommen weiter
 * oben nach dem ersten Umbruch-Block und haetten ihn sonst ueberstimmt. */
@media (max-width: 1020px) {
  .dark-visual .mock-app,
  .mock-app--wide { grid-template-columns: 1fr; }
  .dark-visual .mock-booking { position: static; width: auto; margin-top: 16px; }
}

@media (max-width: 700px) {
}

@media (max-width: 620px) {
  /* Die Knoepfe im Fliesstext laufen auf volle Breite, die in der Kopfzeile
   * nicht: dort wuerde der Text sonst umbrechen. */
  .topbar-actions .btn { width: auto; }
  .topbar-actions .btn-sm { padding: 10px 14px; font-size: .92rem; }
  .topbar-actions { gap: 10px; }
  .topbar .brand img { height: 22px; }
}

@media (max-width: 1020px) {
  /* Auf schmalen Geraeten steht die Zeichnung links neben dem Text, nicht
   * darueber. Sonst kostet jeder Punkt drei Bildschirmzeilen nur an Rand. */
  .three .col,
  .grid6 .cell {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
  }
  .three .col .ic,
  .grid6 .cell .ic {
    grid-row: 1 / span 2;
    margin: 0;
  }
  .three .col img,
  .grid6 .cell img { height: 46px; }
  .three .col h3,
  .grid6 .cell h3 { margin-bottom: 6px; align-self: center; }
}

/* Der Bogen von der Vertrauenskarte zum Knopf. Gepunktet statt durchgezogen:
 * er soll das Auge fuehren, nicht die Sektion teilen. */
.trust-card { position: relative; }
.swoosh {
  position: absolute;
  left: calc(100% + 4px);
  top: 46%;
  width: 152px;
  height: 86px;
  pointer-events: none;
}
@media (max-width: 1020px) { .swoosh { display: none; } }

/* Vier statt sechs, ohne Symbole: die Standardpiktogramme fielen aus dem
 * Stil der uebrigen Zeichnungen, und die Haelfte der alten Kacheln stand
 * ohnehin schon woanders auf der Seite. */
.four { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 56px; }
.four .cell { padding-left: 22px; position: relative; }
.four .cell::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--warm);
}
.four h3 { margin-bottom: 8px; }
.four p { color: var(--muted); font-size: 1.02rem; }

@media (max-width: 1020px) {
  .four { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 700px) {
  /* Die Wortmarke darf nicht schrumpfen. Ohne diese Regeln quetscht das
   * Raster sie zusammen, sobald Knopf und Anmelden-Link mehr Platz wollen. */
  .wrap { padding: 0 16px; }
  .topbar-inner { grid-template-columns: auto 1fr auto; gap: 6px; }
  .topbar .brand img { height: 20px; max-width: none; }
  .topbar-actions { gap: 8px; }
  .topbar-actions .btn-plain { font-size: .95rem; }
  .topbar-actions .btn-sm { padding: 9px 11px; font-size: .88rem; }
}

@media (max-width: 700px) {
  /* In der Kopfzeile haben Wortmarke und Hauptknopf Vorrang. Der
   * Anmelden-Link steht auf schmalen Geraeten in der Fusszeile, sonst
   * quetscht er den Knopf ueber den Bildrand. */
  .topbar-actions .btn-plain { display: none; }
}

/* Aufzaehlung mit Kreissymbol und Trennlinie, wie im Entwurf. */
.ruled { list-style: none; margin: 30px 0 0; padding: 0; }
.ruled li {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
.ruled li:last-child { border-bottom: 0; }
.ruled img { flex: none; width: 54px; height: auto; }

/* Die freigestellten Anwendungsbilder tragen ihren Schatten nicht selbst.
 * drop-shadow folgt der Alphakante, box-shadow wuerde ein Rechteck malen. */
.screen img { filter: drop-shadow(0 20px 34px rgba(44, 24, 16, .16)); }
