/* ============================================================
   PATHFINDERS BERLIN — style.css
   ------------------------------------------------------------
   FARBEN ANPASSEN: Nur die Variablen im :root-Block ändern.
   Alles andere leitet sich daraus ab.
   ============================================================ */

:root {
  /* ---- MARKENFARBEN · Markenhandbuch Stand September 2026 ---- */
  --ink:        #0d2540;   /* Navy — Grundflächen, Fließtext, Kopfbereiche */
  --ink-soft:   #14395c;   /* Navy, eine Stufe heller */
  --paper:      #FFFFFF;   /* Basis hell */
  --paper-soft: #F3F5F4;   /* heller Abschnittswechsel */
  --accent:     #ff5e00;   /* Orange — Akzent, Zeichnungen, CTA */
  --accent-ink: #0077c8;   /* Signalblau — Text/Links auf hell (AA-Kontrast) */
  --line:       #D9DEE1;   /* Hairlines auf hell */
  --line-dark:  #2b4a68;   /* Hairlines auf dunkel */
  --muted:      #5A6873;   /* Sekundärtext auf hell */
  --muted-dark: #9FB0BC;   /* Sekundärtext auf dunkel */

  /* ---- TYPO · Web-Ersatz für Jaapokki/Lovelo (Montserrat) & Barlow ---- */
  --font-display: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Barlow", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", sans-serif;

  /* ---- MASSE ---- */
  --max: 1080px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 4px;
}

/* Montserrat & Barlow via Google Fonts (Web-Ersatz lt. Markenhandbuch 04) */

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { padding: clamp(72px, 10vw, 128px) 0; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: block;
  margin-bottom: 1.2em;
}
.dark .eyebrow { color: var(--accent); }

/* ---------- Header ---------- */
:root { --header-h: 64px; }
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--paper); text-decoration: none; letter-spacing: -0.01em;
}
.brand-mark { display: block; flex-shrink: 0; }
.brand .dot { color: var(--accent); }
.nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav ul a {
  font-size: 0.92rem; color: var(--paper); text-decoration: none;
  font-family: var(--font-display); font-weight: 500;
  opacity: .82;
}
.nav ul a:hover { color: var(--accent); opacity: 1; }
@media (max-width: 760px) { .nav ul { display: none; } }

/* ---------- Präsentations-Deck (Klick-Navigation, kein Scroll) ---------- */
html, body { height: 100%; overflow: hidden; }
.page {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  padding: var(--header-h) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.035);
  transition: opacity .55s cubic-bezier(.22,.68,.36,1),
              transform .55s cubic-bezier(.22,.68,.36,1),
              visibility 0s linear .55s;
  z-index: 1;
}
.page.page--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition: opacity .55s cubic-bezier(.22,.68,.36,1),
              transform .55s cubic-bezier(.22,.68,.36,1),
              visibility 0s linear 0s;
  z-index: 5;
}
.page.hero { justify-content: center; }
.page > .page-main,
.page > .wrap.page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page > .wrap:not(.page-main) { flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) {
  .page, .page.page--active { transition: opacity .2s linear; transform: none; }
}

/* Klick-Zonen-Hinweis (dezent, nur Desktop, verschwindet beim Hover über Links) */
.click-hint {
  display: none;
  position: fixed;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--muted);
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
  pointer-events: none;
  opacity: .85;
  transition: opacity .3s ease;
}
.dark .click-hint, .brand-bg-light .click-hint {}
@media (max-width: 700px) { .click-hint { display: none; } }

/* Banner-Streifen innerhalb einer Seite (statt eigener Seite) */
.page-banner-strip {
  flex-shrink: 0;
  padding: 14px 0 18px;
}
.page-banner-strip .marquee-track { animation-duration: 70s; }
.page-banner-strip--top {
  padding-top: 10px;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}
.page-banner-strip--top .fb-score { color: var(--muted); }
.page-banner-strip--top .fb-quote { color: var(--ink); opacity: .75; }
.page-banner-strip--fade .marquee-track { animation-duration: 70s; }

/* Seiten-Punktnavigation rechts */
.page-dots {
  position: fixed;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex; flex-direction: column; gap: 12px;
}
.page-dots a {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(13, 37, 64, .22);
  border: 1.5px solid rgba(13, 37, 64, .3);
  transition: all .25s ease;
  cursor: pointer;
}
.page-dots a.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.35);
}
@media (max-width: 700px) { .page-dots { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 14px 28px;
  background: var(--ink); color: var(--paper);
  text-decoration: none; border-radius: var(--radius);
  transition: background 0.2s ease;
}
.btn:hover { background: var(--accent-ink); color: var(--paper); }
.dark .btn { background: var(--accent); color: var(--ink); }
.dark .btn:hover { background: var(--paper); }
.btn-outline { background: transparent; color: var(--paper); border: 1.5px solid var(--line-dark); }
.btn-outline:hover { background: var(--ink-soft); color: var(--paper); border-color: var(--accent); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 0.5rem; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(60px, 10vw, 120px); padding-bottom: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;   /* Text bekommt mehr Platz, Bild kleiner */
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
/* Hero-Foto — kompakt neben Text */
.hero-grid .photo {
  max-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 8px;
}
.hero-grid .photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
}
.hero h1 { max-width: 12ch; }
.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 34em; color: var(--muted); margin-bottom: 2em;
}

/* ---------- Manifest (dunkel) ---------- */
.dark { background: var(--ink); color: var(--paper); }
.dark p { color: var(--muted-dark); }
.dark strong, .dark h2 { color: var(--paper); }
.manifest p {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.55;
  max-width: 30em;
}
.manifest .these {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  color: var(--paper); line-height: 1.25;
  border-left: 3px solid var(--accent);
  padding-left: 0.8em; margin: 1.6em 0;
}
.manifest .these em { font-style: normal; color: var(--accent); }

/* ---------- Sektionsbild ---------- */
.section-photo { margin: 2.5rem 0 0; }
.section-photo img { width: 100%; border-radius: var(--radius); }
.weg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .weg-grid { grid-template-columns: 1fr; } }
.weg-grid .photo { position: sticky; top: 96px; }
@media (max-width: 900px) { .weg-grid .photo { position: static; } }

/* ---------- Timeline / Der Weg ---------- */
.timeline { position: relative; margin-top: 2.5rem; }
.timeline::before {
  content: ""; position: absolute; top: 6px; bottom: 6px; left: 7px;
  width: 2px; background: var(--accent);
}
.station {
  position: relative;
  padding: 0 0 2.4rem 44px;
}
.station:last-child { padding-bottom: 0; }
.station::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--accent);
}
.station .year {
  font-family: var(--font-display); font-weight: 700;
  color: var(--accent-ink); font-size: 0.95rem;
  display: block; margin-bottom: 2px;
}
.station h3 { margin-bottom: 0.25em; }
.station p { color: var(--muted); max-width: 34em; margin-bottom: 0; }

/* ---------- Säulen ---------- */
.soft { background: var(--paper-soft); }
.cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin-top: 2.5rem;
}
.col {
  background: var(--paper); padding: 34px 28px;
}
.col h3 { margin-top: 0.4em; }
.col p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }
.col .num {
  font-family: var(--font-display); font-weight: 500;
  color: var(--accent-ink); font-size: 0.85rem; letter-spacing: 0.1em;
}
@media (max-width: 820px) { .cols { grid-template-columns: 1fr; } }

.ventures {
  margin-top: 1px; border: 1px solid var(--line); border-top: none;
  background: var(--paper); padding: 26px 28px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: baseline; justify-content: space-between;
}
.ventures p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.ventures a { font-family: var(--font-display); font-weight: 700; white-space: nowrap; }

/* ---------- Referenzen ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 48px; margin-top: 2.5rem; }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }
blockquote {
  margin: 0; padding-top: 1.1em;
  border-top: 2px solid var(--accent);
  font-size: 1rem; color: var(--ink);
}
blockquote footer {
  margin-top: 0.9em; font-family: var(--font-display);
  font-weight: 500; font-size: 0.88rem; color: var(--muted);
}

/* ---------- Über ---------- */
.about { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
@media (max-width: 700px) { .about { grid-template-columns: 1fr; } }
.portrait { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); align-self: start; }
.portrait img { width: 100%; height: auto; display: block; }

/* ---------- Kontakt ---------- */
.contact h2 { max-width: 16ch; }
.contact .big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}
.contact .big a { color: var(--paper); text-decoration-color: var(--accent); }
.contact .big a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 36px 0; font-size: 0.9rem; color: var(--muted);
}
footer.site .row {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  justify-content: space-between; align-items: baseline;
}
footer.site nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--ink); text-decoration: underline; }
.eco { font-family: var(--font-display); font-weight: 500; }

/* ---------- Rechtsseiten ---------- */
.legal { padding-top: 60px; padding-bottom: 80px; max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); }
.legal h2 { font-size: 1.25rem; margin-top: 2em; }
.legal p, .legal li { color: var(--ink); font-size: 0.98rem; }
.legal .meta { color: var(--muted); }
.legal .todo {
  background: var(--paper-soft); border: 1px dashed var(--accent);
  padding: 16px 20px; border-radius: var(--radius); color: var(--muted);
}

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Cookie-Consent ---------- */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--ink); color: var(--paper);
  border-top: 3px solid var(--accent);
  padding: 18px var(--pad);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}
.consent-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 14px 32px;
  align-items: center; justify-content: space-between;
}
.consent p { margin: 0; font-size: 0.92rem; color: var(--muted-dark); max-width: 44em; }
.consent p strong { color: var(--paper); }
.consent a { color: var(--accent); }
.consent-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-consent { background: var(--accent); color: var(--ink); border: none; cursor: pointer; }
.btn-consent:hover { background: var(--paper); }
.btn-quiet {
  background: transparent; color: var(--paper);
  border: 1.5px solid var(--line-dark); border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  padding: 14px 22px; cursor: pointer;
}
.btn-quiet:hover { border-color: var(--accent); }

/* ---------- Hero-Router (Ökosystem-CTAs) ---------- */
.router {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 0 0 18px;
}
@media (max-width: 780px) { .router { grid-template-columns: 1fr; } }
.router-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 18px;                   /* kompakter */
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.router-card:hover { background: var(--ink-soft); border-color: var(--accent); color: var(--paper); }
.router-q {
  font-size: 0.88rem; line-height: 1.4; color: var(--muted-dark);
}
.router-card:hover .router-q { color: var(--paper); }
.router-a {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--accent);
}
.hero-alt { font-size: 0.95rem; color: var(--muted); }
.hero-alt a { color: var(--accent-ink); }

/* Router below hero */
.router-wrap {
  margin-top: 2rem;
  padding-bottom: 0;
}

/* ---------- Feedback-Banner (laufender Marquee) ---------- */
.feedback-banner {
  background: var(--ink);
  padding: 22px 0 26px;
  overflow: hidden;
}
.fb-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 0 var(--pad);
  text-align: center;
}
.fb-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.fb-score {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted-dark);
  letter-spacing: 0.02em;
}
.marquee {
  width: 100%;
  overflow: hidden;
  padding-left: var(--pad);
  padding-right: var(--pad);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee-scroll 38s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.fb-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--paper);
  white-space: nowrap;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
}
.fb-quote::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 48px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}
@media (max-width: 640px) {
  .fb-quote { font-size: 0.88rem; }
  .marquee-track { gap: 32px; }
  .fb-quote::after { margin-left: 32px; }
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-ink);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 60ch;
}

/* ---------- Markenverlauf (Handbuch 06 — Update Sept. 2026) ---------- */
.brand-bg {
  isolation: isolate;
  overflow: hidden;
}
.brand-bg::before,
.brand-bg::after {
  content: "";
  position: absolute;
  border-radius: 26%;
  pointer-events: none;
  z-index: 0;
}
/* Dunkle Form wandert in die Mitte — trägt Logo & Claim, hält sie lesbar */
.brand-bg::before {
  width: 68%; height: 72%;
  top: 14%; left: 16%;
  background: linear-gradient(160deg, rgba(2, 48, 86, .46), rgba(1, 74, 126, .06) 78%);
  filter: blur(58px);
}
/* Helle Form wandert nach außen */
.brand-bg::after {
  width: 46%; height: 56%;
  top: -18%; right: -12%;
  background: linear-gradient(150deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .02) 78%);
  filter: blur(40px);
  transform: rotate(18deg);
}
.brand-bg > .wrap { position: relative; z-index: 1; }

.dark.brand-bg {
  background:
    radial-gradient(60% 50% at 76% 22%, rgba(255, 94, 0, .22) 0%, transparent 70%),
    radial-gradient(120% 95% at 18% 8%, #2c9ce6 0%, transparent 58%),
    radial-gradient(110% 85% at 88% 92%, #01508c 0%, transparent 60%),
    linear-gradient(158deg, #068ada, #0077c8 46%, #015c9d);
  box-shadow: inset 0 0 180px 50px rgba(3, 20, 38, .55);
}

/* Helle Fassung — dieselbe Komposition auf Weiß (Handbuch 07) */
.brand-bg-light {
  background: var(--paper);
  color: var(--ink);
}
.brand-bg-light::before {
  background: linear-gradient(160deg, rgba(0, 119, 200, .07), rgba(0, 119, 200, .01) 78%);
}
.brand-bg-light::after {
  background: linear-gradient(150deg, rgba(255, 94, 0, .10), rgba(255, 94, 0, .01) 78%);
}
.brand-bg-light .eyebrow { color: var(--accent-ink); }
.brand-bg-light h2 { color: var(--ink); }
.brand-bg-light p { color: var(--muted); }
.brand-bg-light .big a { color: var(--ink); text-decoration-color: var(--accent); }
.brand-bg-light .big a:hover { color: var(--accent-ink); }

/* Skyline-Streumotiv (Handbuch 05 — Berlin als Linie) */
.skyline-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 260px;
  height: auto;
}
.dark .skyline-motif { opacity: .4; }
.brand-bg-light .skyline-motif { opacity: .7; }
.brand-bg-light .btn-outline {
  color: var(--ink);
  border-color: var(--line);
}
.brand-bg-light .btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.feedback-banner--saga {
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feedback-banner--saga .fb-stars {
  color: #b87333;
}
.feedback-banner--saga .fb-score {
  color: var(--muted);
}
.feedback-banner--saga .fb-quote {
  color: var(--ink);
  opacity: 0.75;
}
.feedback-banner--saga .fb-quote::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b87333;
  flex-shrink: 0;
}
.feedback-banner--saga .marquee-track {
  animation-duration: 70s;
}

/* ============================================================
   SEITEN-KOMPAKTIERUNG — für 100vh-Snap-Seiten
   ============================================================ */

/* Seite 3 — Der Weg (gestrafft) */
.page--compact section { padding: 0; }
.page--compact .weg-grid { gap: clamp(20px, 3vw, 40px); margin-top: 1.2rem; }
.page--compact .weg-grid .photo { top: calc(var(--header-h) + 16px); }
.page--compact .weg-grid .photo img { max-height: 46vh; object-fit: cover; }
.page--compact .timeline { margin-top: 0.4rem; }
.page--compact .station { padding: 0 0 1.1rem 38px; }
.page--compact .station h3 { font-size: 1rem; margin-bottom: 0.15em; }
.page--compact .station p { font-size: 0.88rem; line-height: 1.4; }
.page--compact .station .year { font-size: 0.82rem; }
.page--compact h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.3em; }
.page--compact .eyebrow { margin-bottom: 0.5em; }

/* Seite 4 — Leistungen: hellblauer Hintergrund + Skyline-Motive, volle Seite */
.page--leistungen {
  background:
    linear-gradient(180deg, rgba(0,119,200,.07), rgba(0,119,200,.02) 60%),
    var(--paper-soft);
  overflow: hidden;
}
.page--leistungen .skyline-motif { opacity: .5; }
.page--leistungen h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.page--leistungen .cols { margin-top: 3rem; }
.page--leistungen .col { padding: 42px 32px; }
.page--leistungen .col h3 { font-size: 1.3rem; }
.page--leistungen .col p { font-size: 1.02rem; line-height: 1.55; }
.page--leistungen .ventures { padding: 32px 32px; }

/* Seite 5 — Stimmen (5 Zitate, gestrafft) */
#stimmen.page .quotes { gap: 22px 40px; margin-top: 1.6rem; }
#stimmen.page blockquote { font-size: 0.92rem; padding-top: 0.8em; }
#stimmen.page blockquote p { margin-bottom: 0.6em; }
#stimmen.page blockquote footer { margin-top: 0.5em; font-size: 0.82rem; }
#stimmen.page h2 { margin-bottom: 0.3em; }

/* Seite 6 — Über: Banner-Kopfstreifen + Vorstellung */
.page--ueber .about { margin-top: 0; }
.page--ueber .portrait img { max-height: 42vh; object-fit: cover; width: 100%; }

/* Seite 2 — Warum (Manifest), gestrafft für 100vh inkl. Banner-Streifen */
.manifest.page .page-main { justify-content: center; }
.manifest.page .eyebrow { margin-bottom: 0.5em; }
.manifest.page h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.4em; }
.manifest.page p {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.42;
  margin-bottom: 0.55em;
  max-width: 42em;
}
.manifest.page .these {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.3;
  margin: 0.7em 0 0;
  padding-left: 0.7em;
}

/* Sicherstellen: overflow-y:auto gewinnt bei Seiten mit brand-bg (Manifest, Kontakt) */
.page.brand-bg { overflow-y: auto; }

/* ============================================================
   MOBIL (≤700px) — Präsentations-Deck aus, normale scrollbare Seite an
   ============================================================ */
@media (max-width: 700px) {
  html, body { height: auto; overflow: visible; }

  .page {
    position: static !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: none !important;
    padding: 28px 0 !important;
    justify-content: flex-start !important;
  }
  .page.hero { padding-top: calc(var(--header-h) + 28px) !important; }

  /* Kompaktierungen zurücknehmen — auf dem Handy übernimmt normales Scrollen die Höhe, Lesbarkeit geht vor */
  .page--compact .station { padding: 0 0 1.4rem 34px; }
  .page--compact .station h3 { font-size: 1.05rem; }
  .page--compact .station p { font-size: 0.95rem; line-height: 1.5; }
  .page--compact .weg-grid .photo img { max-height: 260px; }

  .manifest.page p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: none;
  }
  .manifest.page .these { font-size: 1.3rem; line-height: 1.35; }

  #stimmen.page blockquote { font-size: 1rem; }
  #stimmen.page blockquote footer { font-size: 0.85rem; }

  .page--leistungen .col { padding: 28px 22px; }
  .page--leistungen .col h3 { font-size: 1.15rem; }

  .page--ueber .portrait img { max-height: 320px; }

  /* Banner-Streifen: Text darf umbrechen statt endlos zu scrollen bei Bedarf, Abstand etwas großzügiger */
  .page-banner-strip { padding: 16px 0 20px; }

  /* Deck-Steuerung ausblenden, die es auf dem Handy nicht mehr gibt */
  .page-dots, .click-hint { display: none !important; }
}
