/* ============================================================
   Voran! – Landingpage
   Farbwelt: Off-White #F8F6F1 · Jagdgrün #2D3D28 · Parchment #DDD8C8
   Radius-System: Buttons = Pill · Bilder/Karten = 20px · Phones = gerätespezifisch
   Ein Akzent (Jagdgrün), eine Theme-Ebene (hell) mit bewusstem
   dunklen Block (Showcase + Weg) als dramaturgischem Wechsel.
   ============================================================ */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-latin-600-normal.woff2') format('woff2');
}

:root {
  --bg: #F8F6F1;
  --ink: #1C1D14;
  --ink-soft: #5D5B4E;
  --green: #2D3D28;
  --green-deep: #24311F;
  --green-night: #1D2818;
  --moss: #A8B870;
  --parchment: #C9C6B4;
  --parchment-bright: #EBF0D4;
  --line: rgba(45, 61, 40, 0.14);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --r-img: 20px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--green);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

a { color: inherit; }

::selection { background: var(--green); color: var(--parchment-bright); }

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

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 28px;
  transition: transform 0.15s var(--ease-out), background-color 0.2s, border-color 0.2s;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--green);
  color: var(--parchment-bright);
}
.btn-primary:hover { background: var(--green-deep); }

.btn-ghost {
  color: var(--green);
  border: 1px solid rgba(45, 61, 40, 0.4);
  background: rgba(248, 246, 241, 0.55);
}
.btn-ghost:hover { border-color: var(--green); background: rgba(248, 246, 241, 0.85); }

.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-nav { padding: 11px 20px; font-size: 14px; }

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background-color 0.35s, box-shadow 0.35s;
}
.nav::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transition: opacity 0.35s;
}
.nav.is-solid {
  background: rgba(248, 246, 241, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav.is-solid::after { opacity: 1; }

.nav-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--green);
  text-decoration: none;
  margin-right: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

/* Nav über dunklem Block */
.nav.is-dark { background: rgba(29, 40, 24, 0.72); }
.nav.is-dark::after { background: rgba(235, 240, 212, 0.12); }
.nav.is-dark .nav-brand { color: var(--parchment-bright); }
.nav.is-dark .nav-links a { color: var(--parchment); }
.nav.is-dark .nav-links a:hover { color: var(--parchment-bright); }
.nav.is-dark .btn-primary { background: var(--parchment-bright); color: var(--green); }
.nav.is-dark .btn-primary:hover { background: #fff; }

/* ── Phone-Rahmen (CSS-Mockup) ────────────────────────────── */

.phone {
  position: relative;
  width: clamp(230px, 24vw, 310px);
  aspect-ratio: 1179 / 2556;
  background: #11140d;
  border-radius: clamp(34px, 3.4vw, 46px);
  padding: clamp(8px, 0.9vw, 11px);
  box-shadow:
    inset 0 0 0 1.5px rgba(200, 205, 180, 0.28),
    0 24px 60px -18px rgba(29, 40, 24, 0.45),
    0 6px 18px -8px rgba(29, 40, 24, 0.35);
}
.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: clamp(26px, 2.6vw, 36px);
  background: #0c0e09;
}
.phone-screen img,
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-lg { width: clamp(250px, 26vw, 330px); }
.phone-xl { width: clamp(240px, 30vh, 330px); }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: -6% 0;
  z-index: 0;
}
.hero-bg picture, .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% 62%;
}

.hero-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 22vh;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(248, 246, 241, 0) 0%, var(--bg) 96%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 16px) clamp(20px, 4vw, 48px) 0;
}
/* Text steht im Blick des Hundes: rechts der Bildmitte, im hellen Himmel */
@media (min-width: 900px) {
  .hero { align-items: flex-start; }
  .hero-content {
    padding-top: clamp(90px, 16vh, 170px);
    padding-left: clamp(340px, 40%, 620px);
  }
}
.hero-brand {
  font-size: clamp(64px, 10vw, 148px);
  color: var(--green);
  line-height: 0.95;
}
.hero-claim {
  margin-top: 18px;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  color: var(--green);
}
.hero-sub {
  margin-top: 10px;
  max-width: 42ch;
  font-size: clamp(15px, 1.3vw, 17px);
  color: #4A4D3E;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-phone {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 7vw, 130px);
  bottom: -4%;
  transform: rotate(-6deg);
}
.hero-phone .phone { width: clamp(210px, 17vw, 280px); }

/* Sanfter Auftritt beim Laden */
@media (prefers-reduced-motion: no-preference) {
  .hero-brand, .hero-claim, .hero-sub, .hero-actions {
    opacity: 0;
    transform: translateY(26px);
    animation: hero-in 0.9s var(--ease-out) forwards;
  }
  .hero-claim { animation-delay: 0.12s; }
  .hero-sub { animation-delay: 0.2s; }
  .hero-actions { animation-delay: 0.3s; }
  .hero-phone {
    opacity: 0;
    transform: rotate(-6deg) translateY(50px);
    animation: hero-phone-in 1.1s 0.45s var(--ease-out) forwards;
  }
  @keyframes hero-in { to { opacity: 1; transform: translateY(0); } }
  @keyframes hero-phone-in { to { opacity: 1; transform: rotate(-6deg) translateY(0); } }
}

/* ── Statements ───────────────────────────────────────────── */

.statements {
  padding: clamp(110px, 16vh, 190px) clamp(20px, 4vw, 48px);
}
.statements-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}
.statement {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.12;
  color: #C7C3B2;
  margin-left: calc(var(--indent) * clamp(12px, 6vw, 90px));
  transition: color 0.5s ease;
}
.statement + .statement { margin-top: clamp(10px, 2.2vh, 26px); }
.statement.is-on { color: var(--green); }
.statement-key.is-on { color: var(--green); }

.statements-resolve {
  margin-top: clamp(56px, 9vh, 110px);
  margin-left: auto;
  max-width: 56ch;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-soft);
}

/* ── Feature-Sektionen ────────────────────────────────────── */

.feature {
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 48px);
}
.feature-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(40px, 6vw, 110px);
}
.feature-flip .feature-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.feature-flip .feature-text { order: 2; }
.feature-flip .feature-visual { order: 1; }

.feature-text h2 { font-size: clamp(34px, 4.2vw, 56px); }
.feature-text p {
  margin-top: 22px;
  max-width: 46ch;
  font-size: clamp(15.5px, 1.35vw, 17.5px);
  color: var(--ink-soft);
}
.feature-meta {
  font-size: 13.5px !important;
  color: #8B8878 !important;
  margin-top: 16px !important;
}

.feature-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.feature-visual::before {
  content: '';
  position: absolute;
  width: min(430px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 184, 112, 0.20) 0%, rgba(168, 184, 112, 0) 68%);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 0;
}
.feature-visual .phone { position: relative; z-index: 1; }

/* ── Foto-Moment ──────────────────────────────────────────── */

.photobreak {
  position: relative;
  height: clamp(440px, 78vh, 760px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.photobreak-img {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}
.photobreak-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.photobreak::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(24, 30, 16, 0.62) 0%, rgba(24, 30, 16, 0) 45%);
}
.photobreak-line {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(40px, 7vh, 72px);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  color: var(--parchment-bright);
  text-shadow: 0 2px 24px rgba(24, 30, 16, 0.5);
}

/* ── Dunkler Block ────────────────────────────────────────── */

.dark-block {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(168, 184, 112, 0.07) 0%, rgba(168, 184, 112, 0) 55%),
    var(--green);
  color: var(--parchment);
}
.dark-block h2 { color: var(--parchment-bright); }

/* ── Showcase (Three.js 360°) ─────────────────────────────── */

.showcase-track {
  position: relative;
  height: 340vh;
}
.showcase-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.showcase-head {
  position: absolute;
  top: clamp(76px, 12vh, 140px);
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  transition: opacity 0.5s, transform 0.5s var(--ease-out);
}
.showcase-head h2 { font-size: clamp(36px, 4.6vw, 62px); }
.showcase-head p {
  margin-top: 12px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--parchment);
}

.showcase-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#phone-canvas {
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  cursor: grab;
}
#phone-canvas.is-dragging { cursor: grabbing; }

.showcase-glow {
  position: absolute;
  top: 54%;
  left: 50%;
  translate: -50% -50%;
  width: min(720px, 86vw);
  aspect-ratio: 1.15;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 184, 112, 0.16) 0%, rgba(168, 184, 112, 0) 62%);
  pointer-events: none;
}

.showcase-fallback {
  position: absolute;
  top: 54%;
  left: 50%;
  translate: -50% -50%;
}

.showcase-video-src {
  position: absolute;
  width: 2px;
  height: 2px;
  opacity: 0.01;
  pointer-events: none;
}
.showcase-fallback .phone-screen video,
.showcase-fallback .phone-screen img {
  position: static;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: auto;
}

.showcase-cap {
  position: absolute;
  z-index: 3;
  top: 40%;
  max-width: 300px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s, transform 0.6s var(--ease-out);
  pointer-events: none;
}
.showcase-cap h3 {
  font-size: clamp(22px, 2.3vw, 30px);
  color: var(--parchment-bright);
}
.showcase-cap p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--parchment);
}
.showcase-cap-left { left: clamp(20px, 9vw, 160px); }
.showcase-cap-right { right: clamp(20px, 9vw, 160px); text-align: right; }
.showcase-cap-low { top: 58%; }
.showcase-cap.is-on { opacity: 1; transform: translateY(0); }
.showcase-head.is-off { opacity: 0; transform: translateY(-18px); pointer-events: none; }

.showcase-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(22px, 5vh, 44px);
  translate: -50%;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(201, 198, 180, 0.75);
  opacity: 0;
  transition: opacity 0.5s;
}
.showcase-hint.is-on { opacity: 1; }

/* ── Der Weg (JGHV-Pfad) ──────────────────────────────────── */

.path {
  padding: clamp(90px, 14vh, 170px) clamp(20px, 4vw, 48px) clamp(110px, 16vh, 200px);
}
.path-head {
  width: min(1200px, 100%);
  margin: 0 auto clamp(60px, 9vh, 110px);
  text-align: center;
}
.path-head h2 { font-size: clamp(34px, 4.4vw, 58px); }
.path-head p {
  margin-top: 14px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--parchment);
}

.path-body {
  position: relative;
  width: min(1000px, 100%);
  margin: 0 auto;
}
.path-svg { width: 100%; height: auto; }

.path-line-bg,
.path-line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.path-line-bg { stroke: rgba(235, 240, 212, 0.14); }
.path-line { stroke: var(--moss); }

.path-node {
  fill: var(--green);
  stroke: rgba(235, 240, 212, 0.35);
  stroke-width: 2.5;
  transition: fill 0.45s, stroke 0.45s;
}
.path-node.is-on {
  fill: var(--moss);
  stroke: var(--parchment-bright);
}

.path-station {
  position: absolute;
  max-width: 300px;
  opacity: 0.35;
  transform: translateY(14px);
  transition: opacity 0.55s, transform 0.55s var(--ease-out);
}
.path-station.is-on { opacity: 1; transform: translateY(0); }
.path-station h3 {
  font-size: clamp(40px, 4.6vw, 60px);
  color: var(--parchment-bright);
  line-height: 1;
}
.path-station-name {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--parchment-bright);
}
.path-station-meta {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(201, 198, 180, 0.8);
}
.path-station-text {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--parchment);
}

/* Stationen relativ zum 1000x1300-ViewBox positioniert */
.path-station-1 { left: 40%; top: 22%; }
.path-station-2 { right: 40%; top: 48%; text-align: right; }
.path-station-3 { left: 40%; top: 74%; }

/* ── Über mich ────────────────────────────────────────────── */

.about {
  padding: clamp(100px, 15vh, 180px) clamp(20px, 4vw, 48px);
}
.about-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.about-text h2 { font-size: clamp(34px, 4.2vw, 54px); }
.about-text > p {
  margin-top: 22px;
  max-width: 46ch;
  font-size: clamp(15.5px, 1.35vw, 17.5px);
  color: var(--ink-soft);
}
.about-sign {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--green);
  margin-top: 34px !important;
}
.about-role {
  font-size: 13.5px !important;
  color: #8B8878 !important;
  margin-top: 4px !important;
}

.about-visuals {
  display: flex;
  justify-content: center;
}
.about-img {
  overflow: hidden;
  border-radius: var(--r-img);
  box-shadow: 0 18px 44px -18px rgba(29, 40, 24, 0.35);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-portrait {
  aspect-ratio: 4 / 5;
  width: min(440px, 100%);
}

/* ── CTA ──────────────────────────────────────────────────── */

.cta {
  padding: clamp(90px, 13vh, 160px) clamp(20px, 4vw, 48px) clamp(110px, 16vh, 190px);
}
.cta-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow: 0 14px 34px -12px rgba(29, 40, 24, 0.4);
}
.cta h2 {
  margin-top: 30px;
  font-size: clamp(40px, 5.4vw, 68px);
}
.cta-inner > p {
  margin-top: 16px;
  font-size: clamp(15.5px, 1.4vw, 18px);
  color: var(--ink-soft);
}
.cta .btn-lg { margin-top: 34px; }
.cta-sub {
  margin-top: 18px;
  font-size: 13px !important;
  color: #8B8878 !important;
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: var(--green-night);
  color: var(--parchment);
}
.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(48px, 7vh, 72px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  align-items: center;
}
.footer-wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--parchment-bright);
}
.footer-claim {
  margin-top: 6px;
  font-size: 14px;
  color: var(--parchment);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: var(--parchment);
  text-decoration: none;
}
.footer-links a:hover { color: var(--parchment-bright); }
.footer-copy {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(235, 240, 212, 0.12);
  font-size: 13px;
  color: rgba(201, 198, 180, 0.75);
}
.footer-legal { display: inline-flex; gap: 18px; }
.footer-legal a {
  color: rgba(201, 198, 180, 0.75);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--parchment-bright); }

/* ── Rechtsseiten (Impressum / Datenschutz) ───────────────── */

.legal-back {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}
.legal-back:hover { color: var(--green); }

.legal {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(40px, 8vh, 84px)) clamp(20px, 4vw, 48px) clamp(80px, 12vh, 140px);
}
.legal h1 { font-size: clamp(38px, 5vw, 56px); }
.legal h2 {
  font-size: clamp(20px, 2.2vw, 25px);
  margin-top: clamp(36px, 5vh, 54px);
}
.legal p, .legal address {
  margin-top: 14px;
  font-size: 15.5px;
  color: var(--ink-soft);
  font-style: normal;
}
.legal a { color: var(--green); }
.legal-todo {
  background: #E4EAD9;
  color: var(--green);
  padding: 1px 7px;
  border-radius: 4px;
}
.legal-updated {
  margin-top: clamp(40px, 6vh, 60px) !important;
  font-size: 13px !important;
  color: #8B8878 !important;
}

/* ── Scroll-Reveals ───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.85s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.12s; }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1023px) {
  .hero-phone { display: none; }
  .showcase-cap { max-width: 240px; }
  .showcase-cap-left { left: 20px; }
  .showcase-cap-right { right: 20px; }
}

@media (max-width: 899px) {
  .hero-bg picture, .hero-bg img { object-position: 20% 62%; }
  /* Text steht sonst über dem Hund im Panorama */
  .hero-content { padding-left: clamp(140px, 34vw, 300px); }

  .feature-grid,
  .feature-flip .feature-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .feature-flip .feature-text { order: 1; }
  .feature-flip .feature-visual { order: 2; }
  .feature { padding-top: 64px; padding-bottom: 64px; }

  .statements-resolve { margin-left: 0; }

  /* Pfad: gerade Linie links, Stationen gestapelt */
  .path-svg { display: none; }
  .path-body { padding-left: 40px; }
  .path-body::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(235, 240, 212, 0.14);
  }
  .path-body::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 6px;
    width: 2px;
    height: calc(var(--path-p, 0) * (100% - 12px));
    background: var(--moss);
  }
  .path-station,
  .path-station-1,
  .path-station-2,
  .path-station-3 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    max-width: 52ch;
    text-align: left !important;
    padding-bottom: 52px;
  }
  .path-station:last-child { padding-bottom: 0; }
  .path-station::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 16px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 2.5px solid rgba(235, 240, 212, 0.35);
    transition: background-color 0.45s, border-color 0.45s;
  }
  .path-station.is-on::before {
    background: var(--moss);
    border-color: var(--parchment-bright);
  }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  .showcase-cap {
    top: auto;
    bottom: clamp(64px, 12vh, 120px);
    left: 20px !important;
    right: 20px !important;
    max-width: none;
    text-align: center !important;
  }
  .showcase-cap-low { top: auto; }
  .showcase-hint { display: none; }
}

@media (max-width: 639px) {
  .nav { gap: 16px; }
  .nav-links { display: none; }

  .hero-brand { font-size: clamp(72px, 19vw, 110px); }
  .hero-content { align-self: flex-start; padding-top: calc(var(--nav-h) + 8vh); }
  /* Auf kleinen Screens nur der primäre CTA, sonst überlagert
     der zweite Button den Hund im Panorama */
  .hero .btn-ghost { display: none; }

  .statement { margin-left: calc(var(--indent) * 10px); }

  .phone, .phone-lg { width: min(72vw, 270px); }

  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { flex-wrap: wrap; }
}

/* ── Reduzierte Bewegung ──────────────────────────────────── */

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

  .reveal, .reveal-delay {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .statement { color: var(--green); }

  .showcase-track { height: auto; }
  .showcase-sticky {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: clamp(90px, 14vh, 160px) 20px;
  }
  .showcase-head, .showcase-cap, .showcase-hint {
    position: static;
    opacity: 1;
    transform: none;
    text-align: center;
    max-width: 420px;
  }
  .showcase-stage { position: relative; inset: auto; width: 100%; min-height: 540px; }
  #phone-canvas { display: none; }
  .showcase-fallback { position: relative; top: auto; left: auto; translate: none; margin: 0 auto; }

  .path-station { opacity: 1; transform: none; }
  .path-line { stroke-dashoffset: 0 !important; }
  .path-node { fill: var(--moss); stroke: var(--parchment-bright); }
}
