/* =====================================================================
   NORDLYS — Design System
   Nordische Sehnsuchts-Ästhetik. Fjordblau · Falunrot · Naturweiß.
   Built as a country SKIN: every brand value is a token under
   [data-skin="no"]. A Sweden skin = one extra token block later.
   ===================================================================== */

/* Akzent-Tokens als echte Farb-Typen — erzwingt korrektes Repaint beim Skin-Wechsel */
@property --accent {
  syntax: "<color>";
  inherits: true;
  initial-value: #1f5fa6;
}
@property --accent-bright {
  syntax: "<color>";
  inherits: true;
  initial-value: #2a6fbf;
}

/* ---- SKIN: SCHWEDEN — als :root-Default (Norwegen-Skin entfernt; eigenes Projekt).
   Eigenes Farbkonzept: tiefes Schwedenblau + Gold. Flagge blau/gelb. ---- */
:root,
[data-skin="se"] {
  /* Eigenes, klar schwedisches Farbkonzept: tiefes Schwedenblau + Gold. */
  --paper:        oklch(97.4% 0.006 240);   /* kühles Naturweiß */
  --paper-2:      oklch(95.2% 0.009 245);
  --fog:          oklch(91.5% 0.012 245);
  --fog-2:        oklch(86% 0.014 245);

  --ink:          oklch(25% 0.060 255);     /* tiefblaue Tinte */
  --ink-soft:     oklch(40% 0.052 255);
  --ink-faint:    oklch(56% 0.038 255);

  /* „Fjord"-Tokens = sattes Schwedenblau (Seen, Schären, Ostsee) */
  --fjord-900:    oklch(25% 0.095 256);
  --fjord-800:    oklch(30% 0.110 256);
  --fjord-700:    oklch(37% 0.115 255);
  --fjord-600:    oklch(46% 0.115 254);
  --fjord-500:    oklch(56% 0.105 252);
  --fjord-300:    oklch(75% 0.085 250);
  --fjord-100:    oklch(91% 0.045 246);

  /* „falun"-Tokens umgewidmet: Primär = Blau, Highlight = Gold (Schwedenfarben) */
  --falun:        oklch(46% 0.115 252);     /* Schwedenblau als Akzent */
  --falun-bright: oklch(80% 0.135 90);      /* Gold-Highlight */
  --falun-deep:   oklch(34% 0.095 256);     /* tiefes Blau */
  --falun-tint:   oklch(93% 0.045 250);     /* zartes Blau */

  --wood:         oklch(78% 0.120 88);      /* Gold/Weizen */
  --wood-soft:    oklch(90% 0.060 92);

  --light-cold:   oklch(84% 0.060 245);
  --light-warm:   oklch(88% 0.080 92);

  --bg:           var(--paper);
  --surface:      #fff;
  --accent:       oklch(46% 0.115 252);     /* Schwedenblau, literal */
  --accent-bright:oklch(53% 0.120 252);
  --on-accent:    oklch(98% 0.01 250);      /* Weiß auf Blau */

  /* Schweden-Flagge (Blau-Feld, gelbes Kreuz) */
  --flag-red:     #1f5fa6;
  --flag-blue:    #f6c500;
  --flag-yellow:  #f6c500;
  --flag-kind:    "se";
}

/* ---------------------------------------------------------------
   TYPOGRAPHY — Editorial serif headings + calm grotesque body
   --------------------------------------------------------------- */
:root {
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --step--1: clamp(0.82rem, 0.80rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1.0rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1.0vw, 2.1rem);
  --step-3:  clamp(2.0rem, 1.6rem + 2.0vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.6vw, 5.0rem);
  --step-5:  clamp(3.2rem, 2.0rem + 6vw, 7.0rem);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01";
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--falun); color: var(--on-accent); }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.mono {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Norwegen-Flagge */
.noflag {
  display: inline-block;
  width: 1.6em; height: auto;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 0 0 0.5px rgba(0,0,0,0.06);
  vertical-align: middle;
}

/* ---------------------------------------------------------------
   LAYOUT
   --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 880px; }

section { position: relative; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 1.8em; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--fjord-300); }
.on-dark .eyebrow::before { background: var(--falun-bright); }

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--step-0);
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  will-change: transform;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 10px 30px -12px color-mix(in oklab, var(--accent) 70%, transparent);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 18px 40px -14px color-mix(in oklab, var(--accent) 75%, transparent);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 22%, transparent);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }
.on-dark .btn-ghost { color: var(--paper); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }
.on-dark .btn-ghost:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7); }

/* ---------------------------------------------------------------
   REVEAL ON SCROLL
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ---------------------------------------------------------------
   DARK / FJORD SECTION SURFACE
   --------------------------------------------------------------- */
.on-dark {
  background: var(--fjord-900);
  color: var(--paper);
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--paper); }

/* Hairline */
.hr {
  height: 1px;
  background: color-mix(in oklab, var(--ink) 12%, transparent);
  border: 0;
}
.on-dark .hr { background: rgba(255,255,255,0.12); }

/* image-slot baseline cosmetics */
image-slot {
  --slot-bg: var(--fog);
  background: var(--fog);
}

/* tag/chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.42em 0.9em;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  color: var(--falun-deep);
}
.on-dark .chip {
  background: rgba(255,255,255,0.08);
  color: var(--fjord-100);
}


/* =====================================================================
   FJORD SCENE — flat-illustration layer styling + weiche Morph-Transitions
   ===================================================================== */
.fjord-scene { position: absolute; inset: 0; overflow: hidden; }
.fjord-scene__svg { width: 100%; height: 100%; display: block; }

/* Alle Farbflächen morphen weich beim Stimmungswechsel */
.fjord-scene [class^="fs-"] { transition: fill 1.4s var(--ease-soft), opacity 1.4s var(--ease-soft); }

.fs-sky     { fill: var(--sky); }
.fs-sky2    { fill: var(--sky2); }
.fs-haze    { fill: var(--haze); }
.fs-sunGlow { fill: var(--sunGlow); }
.fs-sun     { fill: var(--sun); }
.fs-mtnFar  { fill: var(--mtnFar); }
.fs-mtnMid  { fill: var(--mtnMid); }
.fs-water   { fill: var(--water); }
.fs-water2  { fill: var(--water2); }
.fs-fg      { fill: var(--fg); }
.fs-pine polygon, .fs-pine rect { fill: var(--pine); }
.fs-cabin   { fill: var(--cabin); }
.fs-roof    { fill: var(--roof); }
.fs-window  { fill: var(--window); }

.fs-stars circle { fill: #fff; opacity: var(--starOp); transition: opacity 1.4s var(--ease-soft); }
.fs-aurora { opacity: var(--auroraOp); transition: opacity 1.6s var(--ease-soft); }
.fs-aurora1 { fill: oklch(80% 0.16 155); }
.fs-aurora2 { fill: oklch(72% 0.14 200); }

/* sanftes Glühen der Fensterlichter in der Nacht */
.fs-window { transition: fill 1.4s var(--ease-soft); }

/* dezentes Funkeln nur nachts, ruhig */
@media (prefers-reduced-motion: no-preference) {
  [data-motion="on"] .fs-aurora1 { animation: auroraDrift 16s var(--ease-soft) infinite alternate; }
  [data-motion="on"] .fs-aurora2 { animation: auroraDrift 22s var(--ease-soft) infinite alternate-reverse; }
}
@keyframes auroraDrift {
  from { transform: translateX(-30px) scaleY(0.9); }
  to   { transform: translateX(30px) scaleY(1.1); }
}


/* =====================================================================
   SECTIONS — layout & components for Nordlys
   ===================================================================== */

/* ============================== NAV ============================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(8,16,26,0.40), rgba(8,16,26,0.10) 60%, transparent);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav--scrolled {
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 color-mix(in oklab, var(--ink) 8%, transparent);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 74px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.nav__flag { width: 30px; }
.nav__mark {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-grid; place-items: center;
  align-self: center;
  position: relative;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
}
.nav--scrolled .nav__word { color: var(--ink); }
.nav__word {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--paper);
  transition: color 0.4s;
}
.nav__sub { color: var(--fjord-300); align-self: center; font-size: 0.62rem; }
.nav--scrolled .nav__sub { color: var(--ink-faint); }
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav__links a { color: var(--paper); opacity: 0.85; position: relative; padding: 0.3em 0; transition: opacity 0.3s; }
.nav--scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--accent); transition: right 0.4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { right: 0; }
.nav__cta { padding: 0.6em 1.1em; font-size: 0.92rem; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.ctyswitch { display: inline-flex; background: rgba(255,255,255,0.10); border-radius: 999px; padding: 3px; gap: 2px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16); }
.nav--scrolled .ctyswitch { background: color-mix(in oklab, var(--ink) 7%, transparent); box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 14%, transparent); }
.ctyswitch__btn { display: inline-flex; align-items: center; gap: 0.45em; padding: 0.4em 0.8em; border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--paper); opacity: 0.7; transition: opacity 0.3s, background 0.3s, color 0.3s; }
.nav--scrolled .ctyswitch__btn { color: var(--ink-soft); }
.ctyswitch__btn:hover { opacity: 1; }
.ctyswitch__btn--on { opacity: 1; background: var(--surface); color: var(--ink); box-shadow: 0 2px 8px -3px rgba(0,0,0,0.3); }
.ctyswitch__flag { width: 20px; border-radius: 2px; }
.nav__burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: currentColor; display: block; }
.nav--scrolled .nav__burger { color: var(--ink); }
.nav .nav__burger { color: var(--paper); }
.nav__sheet {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem var(--gutter) 1.5rem;
  background: var(--paper);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3);
}
.nav__sheet a { padding: 0.7rem 0; color: var(--ink); border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent); }
.nav__sheet .ctyswitch { background: var(--paper-2); box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 12%, transparent); align-self: flex-start; margin-top: 0.8rem; }
.nav__sheet .ctyswitch__btn { color: var(--ink-soft); }
.nav__sheet .ctyswitch__btn--on { color: var(--ink); }
.nav__sheet .btn { margin-top: 0.6rem; justify-content: center; }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  /* gedeckelt: auf großen/hohen Displays nicht endlos hoch (1:1 wie Norwegen) */
  min-height: min(94svh, 820px);
  display: flex;
  align-items: flex-end;
  padding-top: 90px;
  padding-bottom: clamp(40px, 6vh, 80px);
  overflow: hidden;
  isolation: isolate;
}
.hero__scene {
  position: absolute; inset: 0;
  z-index: -3;
}
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -2;
  --slot-bg: transparent;
  background: transparent;
}
.hero__sky {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 70% 8%, var(--fjord-700), transparent 60%),
    linear-gradient(180deg, var(--fjord-900), var(--fjord-800) 55%, var(--fjord-900));
  opacity: 0.9;
}
.hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  mix-blend-mode: screen;
}
.hero__aurora--1 {
  width: 70vw; height: 50vh; top: -10%; left: -5%;
  background: radial-gradient(circle, var(--light-cold), transparent 70%);
  animation: drift1 22s var(--ease-soft) infinite alternate;
}
.hero__aurora--2 {
  width: 55vw; height: 45vh; top: 5%; right: -10%;
  background: radial-gradient(circle, var(--light-warm), transparent 70%);
  animation: drift2 28s var(--ease-soft) infinite alternate;
}
[data-mood="tageslicht"] .hero__sky { filter: brightness(1.35) saturate(0.85); }
[data-mood="tageslicht"] .hero__aurora { opacity: 0.32; }
[data-mood="polarnacht"] .hero__sky { filter: brightness(0.7) saturate(1.2) hue-rotate(-12deg); }
[data-mood="polarnacht"] .hero__aurora--1 { background: radial-gradient(circle, oklch(78% 0.13 155), transparent 70%); opacity: 0.55; }
[data-mood="polarnacht"] .hero__aurora--2 { background: radial-gradient(circle, oklch(70% 0.12 280), transparent 70%); }
[data-motion="off"] .hero__aurora { animation: none; }
@media (prefers-reduced-motion: reduce) { .hero__aurora { animation: none; } }
@keyframes drift1 { to { transform: translate(8%, 6%) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-6%, 9%) scale(1.1); } }

.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--fjord-900) 30%, transparent) 0%, transparent 26%, color-mix(in oklab, var(--fjord-900) 78%, transparent) 100%),
    linear-gradient(90deg, color-mix(in oklab, var(--fjord-900) 80%, transparent), color-mix(in oklab, var(--fjord-900) 18%, transparent) 58%, transparent 80%);
}
.hero__inner { position: relative; }
.hero__title {
  font-size: clamp(2.3rem, 1.4rem + 2.6vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 19ch;
  margin-top: 0.6rem;
  color: var(--paper);
}
.hero__title .italic { color: var(--fjord-100); }
.hero__lede {
  margin-top: 1.2rem;
  max-width: 50ch;
  font-size: var(--step-0);
  line-height: 1.5;
  color: color-mix(in oklab, var(--paper) 88%, var(--fjord-300));
  font-weight: 400;
}
.hero__cta { margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__times { margin-top: 1.8rem; }
.hero__times-label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: color-mix(in oklab, var(--paper) 85%, var(--fjord-300));
  margin-bottom: 0.8rem;
}
.hero__times-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.timepill {
  padding: 0.55em 1.05em;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--paper);
  background: rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  transition: background 0.4s var(--ease), box-shadow 0.4s, transform 0.4s var(--ease), color 0.3s;
}
.timepill:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.timepill--on {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--accent) 60%, white), 0 10px 26px -14px color-mix(in oklab, var(--accent) 80%, transparent);
}

.hero__scroll {
  position: absolute; bottom: 2rem; right: var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: var(--fjord-300); font-size: 0.6rem; letter-spacing: 0.2em;
}
.hero__scroll-word { font-family: var(--mono); }
.hero__scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--fjord-300), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content:""; position:absolute; inset:0; background: var(--paper);
  animation: scrolldot 2.4s var(--ease-soft) infinite;
}
@keyframes scrolldot { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(100%)} }
[data-motion="off"] .hero__scroll-line::after { animation: none; opacity: 0.4; }
@media (max-width: 720px){ .hero__scroll { display: none; } }


/* =====================================================================
   SECTIONS 2 — Intro · Karte · Reise
   ===================================================================== */

/* ============================== INTRO ============================== */
.intro { padding: clamp(80px, 14vh, 170px) 0; }
.intro__lead { max-width: 760px; }
.intro__claim {
  font-size: var(--step-3);
  margin-top: 1.1rem;
  line-height: 1.12;
}
.intro__claim .italic { color: var(--accent); }
.intro__body {
  margin-top: 1.4rem;
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 56ch;
}
.intro__grid {
  margin-top: clamp(48px, 8vh, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.pillar { position: relative; padding-top: 1.6rem; border-top: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); }
.pillar__k { color: var(--accent); font-size: 0.78rem; }
.pillar__t { font-size: var(--step-2); margin-top: 0.8rem; line-height: 1.1; }
.pillar__d { margin-top: 0.9rem; color: var(--ink-soft); font-size: 1.02rem; }

/* ============================== KARTE ============================== */
.map { padding: clamp(80px, 13vh, 150px) 0; }
.map__head { max-width: 640px; }
.map__title { font-size: var(--step-3); margin-top: 1rem; }
.map__title .italic { color: var(--falun-bright); }
.map__intro { margin-top: 1.2rem; color: var(--fjord-100); font-size: var(--step-1); max-width: 50ch; }

.map__stage {
  margin-top: clamp(40px, 6vh, 72px);
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.map__viz { position: relative; }
.map__svg { width: 100%; height: auto; max-height: 70vh; overflow: visible; filter: drop-shadow(0 12px 26px rgba(4,16,28,0.5)); }
.map__hint {
  position: absolute; bottom: -6px; left: 0;
  color: var(--fjord-300); letter-spacing: 0.14em;
}

.node { cursor: pointer; outline: none; }
.node__halo {
  fill: color-mix(in oklab, var(--falun-bright) 55%, transparent);
  opacity: 0; transform-origin: center;
  transition: opacity 0.4s var(--ease), r 0.4s var(--ease);
}
.node__dot {
  fill: var(--fjord-100);
  transition: fill 0.3s, r 0.3s var(--ease);
  stroke: var(--fjord-900); stroke-width: 1.5;
}
.node__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  fill: var(--fjord-300);
  transition: fill 0.3s, font-weight 0.3s;
  paint-order: stroke; stroke: var(--fjord-900); stroke-width: 3px;
}
.node:hover .node__dot { fill: var(--falun-bright); }
.node:hover .node__label { fill: var(--fjord-100); }
.node:focus-visible .node__halo { opacity: 0.4; }
.node--on .node__halo { opacity: 0.45; animation: pulse 3s var(--ease-soft) infinite; }
.node--on .node__dot { fill: var(--falun-bright); }
.node--on .node__label { fill: var(--paper); font-weight: 700; }
[data-motion="off"] .node--on .node__halo { animation: none; }
@media (prefers-reduced-motion: reduce){ .node--on .node__halo { animation: none; } }
@keyframes pulse { 0%,100%{ opacity:0.45 } 50%{ opacity:0.18 } }

.region {
  background: color-mix(in oklab, var(--fjord-800) 70%, transparent);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 340px;
  animation: regionIn 0.5s var(--ease) both;
}
@keyframes regionIn { from { transform: translateY(10px); } to { transform: none; } }
.region__media { position: relative; min-height: 260px; overflow: hidden; }
.region__scene { position: absolute; inset: 0; }
.region__photo { position: absolute; inset: 0; width: 100%; height: 100%; --slot-bg: transparent; background: transparent; }
.region__body { padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; }
.region__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.region__name { font-size: var(--step-2); color: var(--paper); }
.region__sub { color: var(--fjord-300); margin-top: 0.3rem; letter-spacing: 0.08em; }
.region__index { font-size: 0.85rem; color: var(--falun-bright); }
.region__index-dim { color: var(--fjord-300); }
.region__mood { margin-top: 1.1rem; color: var(--fjord-100); font-size: 1.05rem; line-height: 1.55; }
.region__meta { margin-top: auto; padding-top: 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.region__meta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.region__meta-label { color: var(--fjord-300); width: 100%; max-width: 8.5rem; }
.region__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pmeter { display: inline-flex; gap: 5px; }
.pmeter__bar { width: 26px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.14); }
.pmeter__bar.on { background: var(--falun-bright); }
.region__foot { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.region__placeholder { color: var(--fjord-300); letter-spacing: 0.1em; }
.region__cta { display: inline-flex; align-items: center; gap: 0.5em; color: var(--falun-bright); font-weight: 600; font-size: 0.95rem; }
.region__cta .arrow { transition: transform 0.4s var(--ease); }
.region__cta:hover .arrow { transform: translateX(4px); }

/* ============================== REISE / TRAIL ============================== */
.trail { padding: clamp(80px, 14vh, 170px) 0; background: var(--paper-2); overflow: hidden; }
.trail__head { max-width: 720px; margin: 0 auto; text-align: center; }
.trail__head .eyebrow { justify-content: center; }
.trail__title { font-size: var(--step-3); margin-top: 1rem; }
.trail__title .italic { color: var(--accent); }
.trail__intro { margin-top: 1.1rem; color: var(--ink-soft); font-size: var(--step-1); max-width: 52ch; margin-inline: auto; }
.trail__now { display: inline-flex; align-items: baseline; gap: 0.6rem; margin-top: 1.8rem; padding: 0.5rem 1.1rem; border-radius: 999px; background: color-mix(in oklab, var(--accent) 9%, transparent); }
.trail__now-n { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); line-height: 1; }
.trail__now-n .dim { color: var(--ink-faint); font-size: 0.9rem; }
.trail__now-phase { font-weight: 600; color: var(--ink-soft); }

.trail__steps { list-style: none; padding: 0; position: relative; margin: clamp(48px, 8vh, 90px) auto 0; max-width: 1000px; }
.trail__line { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; transform: translateX(-50%); background: color-mix(in oklab, var(--ink) 12%, transparent); border-radius: 3px; z-index: 0; }
.trail__fill { position: absolute; left: 0; top: 0; width: 100%; background: var(--accent); border-radius: 3px; transition: height 0.55s var(--ease); }

.tstep { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: clamp(20px, 4vw, 56px); margin-bottom: clamp(26px, 4.5vh, 52px); }
.tstep:last-child { margin-bottom: 0; }
.tstep__node {
  grid-column: 2; z-index: 2;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface);
  box-shadow: inset 0 0 0 2px color-mix(in oklab, var(--ink) 16%, transparent), 0 8px 18px -10px rgba(0,0,0,0.35);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s;
}
.tstep__num { font-family: var(--serif); font-size: 1.25rem; color: var(--ink-faint); transition: color 0.4s; }
.tstep--done .tstep__node { background: var(--accent); box-shadow: inset 0 0 0 2px var(--accent), 0 8px 18px -10px color-mix(in oklab, var(--accent) 60%, transparent); }
.tstep--done .tstep__num { color: var(--on-accent); }
.tstep--active .tstep__node { transform: scale(1.12); box-shadow: inset 0 0 0 2px var(--accent), 0 0 0 6px color-mix(in oklab, var(--accent) 16%, transparent), 0 14px 28px -12px color-mix(in oklab, var(--accent) 60%, transparent); }
.tstep--active .tstep__num { color: var(--accent); }

.tstep__card {
  grid-column: 1; position: relative;
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--ink) 9%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 32px);
  box-shadow: 0 20px 40px -34px color-mix(in oklab, var(--ink) 55%, transparent);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.tstep:nth-of-type(even) .tstep__card { grid-column: 3; }
.tstep--active .tstep__card { transform: translateY(-3px); border-color: color-mix(in oklab, var(--accent) 38%, transparent); box-shadow: 0 30px 54px -32px color-mix(in oklab, var(--ink) 55%, transparent); }
.tstep__phase { color: var(--accent); letter-spacing: 0.14em; }
.tstep__t { font-size: var(--step-1); margin-top: 0.5rem; line-height: 1.12; }
.tstep__d { margin-top: 0.7rem; color: var(--ink-soft); }
.tstep__note { display: inline-block; margin-top: 1rem; color: var(--ink-faint); letter-spacing: 0.06em; padding: 0.4em 0.8em; background: var(--paper-2); border-radius: 999px; }

/* Ziel */
.trail__dest { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: clamp(20px, 3vh, 36px); }
.trail__dest-node { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--fjord-900); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5); position: relative; z-index: 2; }
.trail__dest-flag { width: 32px; }
.trail__dest-card {
  margin-top: 1.4rem; max-width: 560px;
  background: var(--fjord-900); color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 40px 70px -44px color-mix(in oklab, var(--ink) 70%, transparent);
}
.trail__dest-card .tstep__phase { color: var(--falun-bright); }
.trail__dest-t { font-size: var(--step-2); color: var(--paper); margin-top: 0.5rem; }
.trail__dest-d { margin-top: 0.8rem; color: var(--fjord-100); }
.trail__dest-card .btn { margin-top: 1.5rem; }

@media (max-width: 780px) {
  .trail__steps { max-width: 100%; }
  .trail__line { left: 22px; transform: none; }
  .tstep { grid-template-columns: 44px 1fr; column-gap: 1.2rem; align-items: start; }
  .tstep__node { width: 44px; height: 44px; }
  .tstep__num { font-size: 1.05rem; }
  .tstep__card, .tstep:nth-of-type(even) .tstep__card { grid-column: 2; }
}


/* =====================================================================
   SECTIONS 3 — Realität · Fahrplan · Wer wir sind · Footer · Responsive
   ===================================================================== */

/* ============================== MAGAZIN ============================== */
.mag { padding: clamp(80px, 14vh, 170px) 0; }
.mag__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.mag__title { font-size: var(--step-3); margin-top: 1rem; }
.mag__title .italic { color: var(--accent); }
.mag__intro { color: var(--ink-soft); font-size: var(--step-1); }
.mag__soon { color: var(--ink-faint); }
.mag__cats { margin-top: clamp(28px, 4vh, 44px); display: flex; flex-wrap: wrap; gap: 0.5rem; }
.magcat { padding: 0.5em 1.1em; border-radius: 999px; font-weight: 500; font-size: 0.92rem; color: var(--ink-soft); background: var(--paper-2); box-shadow: inset 0 0 0 1px transparent; transition: background 0.3s, color 0.3s, box-shadow 0.3s; }
.magcat:hover { box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 20%, transparent); }
.magcat--on { background: var(--ink); color: var(--paper); }
.mag__grid { margin-top: clamp(28px, 4vh, 44px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.magcard { border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: 0 20px 44px -34px color-mix(in oklab, var(--ink) 55%, transparent); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); cursor: pointer; }
.magcard:hover { transform: translateY(-5px); box-shadow: 0 34px 60px -34px color-mix(in oklab, var(--ink) 55%, transparent); }
.magcard__cover { position: relative; height: 180px; overflow: hidden; }
.magcard__cover .fjord-scene { transition: transform 0.7s var(--ease); }
.magcard:hover .magcard__cover .fjord-scene { transform: scale(1.06); }
.magcard__cat { position: absolute; left: 12px; bottom: 12px; padding: 0.35em 0.8em; border-radius: 999px; font-size: 0.76rem; font-weight: 600; color: var(--ink); background: color-mix(in oklab, var(--paper) 88%, transparent); backdrop-filter: blur(4px); }
.magcard__body { padding: clamp(18px, 2vw, 24px); }
.magcard__t { font-size: var(--step-1); line-height: 1.2; }
.magcard__foot { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.magcard__meta { color: var(--ink-faint); letter-spacing: 0.06em; }
.magcard__more { display: inline-flex; align-items: center; gap: 0.4em; color: var(--accent); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.magcard__more .arrow { transition: transform 0.4s var(--ease); }
.magcard:hover .magcard__more .arrow { transform: translateX(4px); }
@media (max-width: 920px) { .mag__head { grid-template-columns: 1fr; } .mag__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mag__grid { grid-template-columns: 1fr; } }
.mag__all { margin-top: clamp(28px, 4vh, 44px); display: flex; justify-content: center; }
.magcard__x { margin-top: 0.6rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ============================== CMS-SEITEN (Artikel / Kategorie) ============================== */
.page { min-height: 100vh; background: var(--bg); }
.pagebar { position: sticky; top: 0; z-index: 40; background: color-mix(in oklab, var(--paper) 90%, transparent); backdrop-filter: blur(12px); box-shadow: 0 1px 0 color-mix(in oklab, var(--ink) 8%, transparent); }
.pagebar__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.pagebar .nav__word { color: var(--ink); }
.pagebar__back { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }
.pagebar__back:hover { color: var(--accent); }

/* Artikel */
.post { padding-bottom: clamp(60px, 10vh, 120px); }
.post__cover { position: relative; height: clamp(240px, 42vh, 460px); overflow: hidden; }
.post__head { margin-top: clamp(-60px, -6vh, -40px); position: relative; }
.post__cat { display: inline-block; color: var(--accent); margin-bottom: 0.8rem; background: var(--surface); padding: 0.5em 0.9em; border-radius: 999px; box-shadow: 0 10px 30px -16px rgba(0,0,0,0.4); }
.post__title { font-size: var(--step-4); line-height: 1.05; }
.post__lead { margin-top: 1.1rem; font-size: var(--step-1); color: var(--ink-soft); font-family: var(--serif); font-style: italic; }
.post__meta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; color: var(--ink-faint); padding-bottom: 1.4rem; border-bottom: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }
.post__dot { color: var(--ink-faint); }
.post__body { margin-top: 2rem; }
.post__body p { font-size: 1.12rem; line-height: 1.75; color: var(--ink); margin-top: 1.2rem; max-width: 68ch; }
.post__body h2 { font-size: var(--step-2); margin-top: 2.2rem; }
.post__body blockquote { margin: 2rem 0; padding-left: 1.4rem; border-left: 3px solid var(--accent); font-family: var(--serif); font-style: italic; font-size: var(--step-1); color: var(--ink); }
.post__ph { display: inline-block; color: var(--ink-faint); letter-spacing: 0.06em; padding: 0.4em 0.9em; background: var(--paper-2); border-radius: 999px; }
.post__cta { margin-top: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: clamp(24px, 3vw, 40px); background: var(--fjord-900); color: var(--paper); border-radius: var(--radius-lg); }
.post__cta-t { font-size: var(--step-2); color: var(--paper); }
.post__cta-d { margin-top: 0.4rem; color: var(--fjord-100); }
.post__related { margin-top: clamp(48px, 8vh, 90px); }
.post__related-h { font-size: var(--step-2); margin-bottom: 1.6rem; }

/* Kategorie-Seite */
.catpage { padding-top: clamp(40px, 7vh, 80px); padding-bottom: clamp(60px, 10vh, 120px); }
.catpage__title { font-size: var(--step-4); margin-top: 1rem; }
.catpage__desc { margin-top: 1rem; font-size: var(--step-1); color: var(--ink-soft); max-width: 56ch; }
.catpage__cats { margin-top: clamp(28px, 4vh, 44px); }
.catpage__grid { margin-top: clamp(28px, 4vh, 44px); }
.catpage__note { margin-top: 2rem; color: var(--ink-faint); letter-spacing: 0.08em; }
@media (max-width: 700px) { .post__cta { flex-direction: column; align-items: flex-start; } }

/* ============================== COOKIE-BANNER ============================== */
.cookie { position: fixed; left: 20px; bottom: 20px; z-index: 60; max-width: 380px; background: var(--surface); border-radius: var(--radius-lg); padding: 1.25rem 1.3rem; box-shadow: 0 24px 60px -20px rgba(0,0,0,0.4), inset 0 0 0 1px color-mix(in oklab, var(--ink) 10%, transparent); animation: cookieIn 0.5s var(--ease) both; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } }
.cookie__text { font-size: 0.92rem; line-height: 1.5; color: var(--ink-soft); }
.cookie__text a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie__soon { color: var(--ink-faint); }
.cookie__btns { margin-top: 1rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie__btns .btn { padding: 0.6em 1.05em; font-size: 0.9rem; }
.cookie__wip { display: block; margin-top: 0.8rem; color: var(--ink-faint); letter-spacing: 0.06em; }
@media (max-width: 480px) { .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* ============================== PREISINDEX & RECHNER ============================== */
.px { padding: clamp(80px, 14vh, 170px) 0; background: var(--paper-2); }
.px__head { max-width: 760px; }
.px__title { font-size: var(--step-3); margin-top: 1rem; }
.px__title .italic { color: var(--accent); }
.px__intro { margin-top: 1.1rem; color: var(--ink-soft); font-size: var(--step-1); max-width: 54ch; }
.px__soon { color: var(--ink-faint); }
.px__stamp { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; color: var(--ink-faint); }
.px__dot { color: var(--ink-faint); }
.px__grid { margin-top: clamp(36px, 5vh, 56px); display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
.px__controls { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(22px, 2.5vw, 34px); box-shadow: 0 20px 44px -34px color-mix(in oklab, var(--ink) 55%, transparent); display: flex; flex-direction: column; }
.px__label { color: var(--ink-faint); margin-bottom: 0.7rem; }
.px__label strong { color: var(--ink); }
.px__label:not(:first-child) { margin-top: 1.6rem; }
.px__regions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pxchip { padding: 0.5em 1em; border-radius: 999px; font-weight: 500; font-size: 0.9rem; white-space: nowrap; color: var(--ink-soft); background: var(--paper-2); box-shadow: inset 0 0 0 1px transparent; transition: background 0.3s, color 0.3s, box-shadow 0.3s; }
.pxchip:hover { box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 20%, transparent); }
.pxchip--on { background: var(--accent); color: var(--on-accent); }
.px__range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: color-mix(in oklab, var(--ink) 14%, transparent); outline: none; }
.px__range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer; box-shadow: 0 2px 8px -2px color-mix(in oklab, var(--accent) 70%, transparent); transition: transform 0.2s; }
.px__range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.px__range::-moz-range-thumb { width: 22px; height: 22px; border: none; border-radius: 50%; background: var(--accent); cursor: pointer; }
.px__cur { display: inline-flex; background: var(--paper-2); border-radius: 999px; padding: 4px; gap: 4px; align-self: flex-start; }
.pxtog { padding: 0.5em 1.3em; border-radius: 999px; font-weight: 600; color: var(--ink-soft); transition: background 0.3s, color 0.3s; }
.pxtog--on { background: var(--ink); color: var(--paper); }
.px__panel { background: var(--fjord-900); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: 0 40px 70px -44px color-mix(in oklab, var(--ink) 70%, transparent); }
.px__panel-k { color: var(--fjord-300); }
.px__total { font-family: var(--serif); font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); line-height: 1; color: var(--paper); margin-top: 0.4rem; }
.px__bars { display: flex; gap: 4px; margin: 1.4rem 0; height: 10px; }
.px__seg { border-radius: 4px; transition: flex-basis 0.4s var(--ease); }
.px__seg--price { background: var(--falun-bright); }
.px__seg--nk { background: var(--wood); }
.px__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.px__k { color: var(--fjord-100); }
.px__v { font-weight: 600; color: var(--paper); white-space: nowrap; }
.px__row--idx .px__k { color: var(--fjord-300); }
.px__trend { color: var(--falun-bright); font-weight: 600; }
.px__row--idx { margin-top: 0.2rem; }
.px__fine { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); color: var(--fjord-300); letter-spacing: 0.05em; }
@media (max-width: 820px) { .px__grid { grid-template-columns: 1fr; } }

/* ============================== RATGEBER-STARTSEITE ============================== */
.rh { padding-bottom: clamp(60px, 10vh, 120px); }
.rh__cover { height: clamp(200px, 32vh, 340px); }
.rh__head { margin-top: clamp(-60px, -6vh, -40px); position: relative; }
.rh__title { font-size: var(--step-4); line-height: 1.05; margin-top: 0.8rem; }
.rh__title .italic { color: var(--accent); }
.rh__intro { margin-top: 1rem; font-size: var(--step-1); color: var(--ink-soft); max-width: 56ch; }
.rh__rowhead { margin: clamp(40px, 6vh, 72px) 0 1.4rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.rh__rowhead h2 { font-size: var(--step-2); }
.rh__more { color: var(--accent); font-weight: 600; font-size: 0.95rem; display: inline-flex; gap: 0.4em; align-items: center; white-space: nowrap; }
.rh__more .arrow { transition: transform 0.4s var(--ease); }
.rh__more:hover .arrow { transform: translateX(4px); }

/* ============================== RECHTLICHE SEITEN ============================== */
.legal { padding-top: clamp(40px, 7vh, 80px); padding-bottom: clamp(60px, 10vh, 120px); }
.legal__title { font-size: var(--step-4); margin: 1rem 0 1.2rem; }
.legal__body { margin-top: 1.6rem; }
.legal__body h2 { font-size: var(--step-2); margin-top: 2.2rem; }
.legal__body p { color: var(--ink-soft); line-height: 1.7; margin-top: 0.8rem; max-width: 68ch; }
.legal__body strong { color: var(--ink); }
.legal__ph { display: inline-block; margin-top: 1.4rem; color: var(--ink-faint); letter-spacing: 0.05em; }

/* ============================== MOTION & POLISH ============================== */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px;
}
.on-dark a:focus-visible, .on-dark button:focus-visible { outline-color: var(--falun-bright); }
.btn:active { transform: translateY(0) scale(0.975); transition-duration: 0.09s; }
.opt:active, .magcat:active, .timepill:active, .magcard:active { transform: scale(0.99); }
.pillar { transition: transform 0.5s var(--ease), border-color 0.5s; }
.pillar:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--accent) 50%, transparent); }
.pillar__k { transition: color 0.4s; }
.pillar:hover .pillar__k { color: var(--accent-bright); }
.node:hover .node__halo { opacity: 0.22; }
.post__cover .fjord-scene { transition: transform 1.2s var(--ease); }
.post:hover .post__cover .fjord-scene { transform: scale(1.04); }
.page { animation: pageIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } }
@media (prefers-reduced-motion: reduce) { .page { animation: none; } .post:hover .post__cover .fjord-scene { transform: none; } }

/* ============================== KLEINE SCREENS — FEINSCHLIFF ============================== */
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.15rem, 4vw + 1.2rem, 3rem); }
  .hero__lede { font-size: 1.02rem; }
  .pagebar__back { font-size: 0.85rem; }
  .post__head { margin-top: -26px; }
  .post__title { font-size: clamp(2.1rem, 6vw + 1rem, 3rem); }
  .stickycta { bottom: 12px; }
  .region__meta-label { max-width: none; }
  .kosten__bar { gap: 4px; }
  .kseg { min-width: 38px; padding: 0.45rem; }
}

/* ============================== REALITÄT ============================== */
.reality { padding: clamp(80px, 14vh, 170px) 0; }
.reality__head { max-width: 680px; }
.reality__title { font-size: var(--step-3); margin-top: 1rem; }
.reality__title .italic { color: var(--accent); }
.reality__intro { margin-top: 1.2rem; color: var(--ink-soft); font-size: var(--step-1); max-width: 52ch; }
.reality__grid {
  margin-top: clamp(44px, 7vh, 80px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.truth {
  position: relative;
  padding: clamp(26px, 3vw, 42px);
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--ink) 9%, transparent);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.truth:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -34px color-mix(in oklab, var(--ink) 55%, transparent); }
.truth__k {
  font-family: var(--serif); font-style: italic;
  font-size: var(--step-1); color: var(--accent);
  padding-bottom: 0.8rem; margin-bottom: 1rem;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
}
.truth__t { font-size: var(--step-2); }
.truth__d { margin-top: 0.8rem; color: var(--ink-soft); }
.truth__tag { display: inline-block; margin-top: 1.2rem; color: var(--ink-faint); letter-spacing: 0.08em; }
.reality__foot { margin-top: clamp(40px, 6vh, 72px); text-align: center; font-size: var(--step-2); color: var(--ink-soft); }
.reality__foot .italic { color: var(--ink); }

/* ============================== FAHRPLAN / KONFIGURATOR ============================== */
.fahrplan {
  padding: clamp(80px, 14vh, 170px) 0;
  background:
    radial-gradient(120% 80% at 85% 0%, color-mix(in oklab, var(--falun-tint) 70%, transparent), transparent 60%),
    var(--paper-2);
  scroll-margin-top: 80px;
}
.fahrplan__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.fahrplan__intro { position: sticky; top: 110px; }
.fahrplan__title { font-size: var(--step-3); margin-top: 1rem; }
.fahrplan__title .italic { color: var(--accent); }
.fahrplan__text { margin-top: 1.2rem; color: var(--ink-soft); font-size: var(--step-1); max-width: 46ch; }
.fahrplan__bullets { list-style: none; padding: 0; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.9rem; }
.fahrplan__bullets li { display: flex; gap: 0.9rem; align-items: baseline; color: var(--ink); }
.fahrplan__bullets .mono { color: var(--accent); font-size: 0.78rem; flex: none; }
.fahrplan__guard { margin-top: 1.8rem; color: var(--ink-faint); letter-spacing: 0.06em; padding-top: 1.2rem; border-top: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }

.config {
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 40px 80px -50px color-mix(in oklab, var(--ink) 70%, transparent);
  min-height: 440px;
  display: flex; flex-direction: column;
}
.config__bar { height: 4px; border-radius: 4px; background: color-mix(in oklab, var(--ink) 10%, transparent); overflow: hidden; }
.config__bar-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width 0.5s var(--ease); }
.config__meta { display: flex; justify-content: space-between; margin-top: 0.9rem; color: var(--ink-faint); letter-spacing: 0.08em; }
.config__wip { color: var(--accent); opacity: 0.8; }

.config__q { margin-top: 1.6rem; animation: fadeUp 0.4s var(--ease) both; flex: 1; display: flex; flex-direction: column; }
@keyframes fadeUp { from { transform: translateY(10px); } to { transform: none; } }
.config__qtext { font-size: var(--step-2); }
.config__help { margin-top: 0.5rem; color: var(--ink-soft); }
.config__opts { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.opt {
  display: flex; align-items: center; gap: 0.9rem;
  text-align: left;
  padding: 1em 1.2em;
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: inset 0 0 0 1px transparent;
  font-weight: 500;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.opt:hover { transform: translateX(3px); box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 18%, transparent); }
.opt__tick { width: 16px; height: 16px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--ink) 30%, transparent); flex: none; transition: all 0.3s; }
.opt--on { background: color-mix(in oklab, var(--accent) 12%, var(--paper-2)); box-shadow: inset 0 0 0 1.5px var(--accent); }
.opt--on .opt__tick { background: var(--accent); box-shadow: inset 0 0 0 4px var(--surface), 0 0 0 1.5px var(--accent); }
.config__nav { margin-top: auto; padding-top: 1.6rem; display: flex; align-items: center; justify-content: space-between; }
.config__back { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }
.config__back:disabled { opacity: 0.3; cursor: default; }
.config__back:not(:disabled):hover { color: var(--accent); }
.config__dots { display: flex; gap: 6px; }
.config__dots .dot { width: 7px; height: 7px; border-radius: 50%; background: color-mix(in oklab, var(--ink) 16%, transparent); transition: background 0.3s; }
.config__dots .dot.on { background: var(--accent); }

.config__result { margin-top: 1.6rem; animation: fadeUp 0.5s var(--ease) both; }
.result__summary { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0; border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent); border-radius: var(--radius); overflow: hidden; }
.result__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7em 1em; }
.result__row:nth-child(odd) { background: var(--paper-2); }
.result__k { color: var(--ink-faint); letter-spacing: 0.06em; }
.result__v { font-weight: 600; text-align: right; }
.result__orient { margin-top: 1.4rem; padding: 1.2rem 1.3rem; background: color-mix(in oklab, var(--falun-tint) 60%, var(--surface)); border-radius: var(--radius); border-left: 2px solid var(--accent); }
.result__orient p { color: var(--ink); }
.result__ph { display: block; margin-top: 0.8rem; color: var(--ink-faint); letter-spacing: 0.06em; }
.result__gate { margin-top: 1.4rem; }
.result__gate-lead { color: var(--ink-soft); }
.result__fields { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.6rem; }
.result__field input, .result__fields input {
  flex: 1; min-width: 200px; padding: 0.9em 1.1em;
  border-radius: var(--radius); border: 1px solid color-mix(in oklab, var(--ink) 22%, transparent);
  font: inherit; background: var(--surface); color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.result__field input:focus, .result__fields input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent); }
.result__field { margin-top: 0.6rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.result__fine { display: block; margin-top: 0.8rem; color: var(--ink-faint); letter-spacing: 0.05em; }
.result__thanks { margin-top: 1.4rem; padding: 1.4rem; background: var(--paper-2); border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.5rem; }
.result__thanks-mark { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; font-weight: 700; }
.config__restart { margin-top: 1.4rem; color: var(--ink-faint); letter-spacing: 0.08em; align-self: flex-start; transition: color 0.3s; }
.config__restart:hover { color: var(--accent); }
.result__jump { display: inline-flex; align-items: center; gap: 0.5em; margin-top: 0.7rem; color: var(--accent); font-weight: 600; font-size: 0.95rem; }
.result__jump .arrow { transition: transform 0.4s var(--ease); }
.result__jump:hover .arrow { transform: translateX(4px); }

/* Beispiel-Immobilien im Ergebnis */
.result__props { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.result__props-h { color: var(--ink-faint); letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.prop {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.6rem; border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 7%, transparent);
}
.prop__thumb { position: relative; width: 76px; height: 58px; border-radius: 7px; overflow: hidden; flex: none; }
.prop__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; flex: 1; }
.prop__name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.prop__meta { font-size: 0.82rem; color: var(--ink-faint); }
.prop__badge { flex: none; color: var(--ink-faint); letter-spacing: 0.08em; padding: 0.3em 0.7em; background: var(--surface); border-radius: 999px; box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 10%, transparent); }

/* Mitscrollende CTA-Leiste */
.stickycta {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 150%);
  z-index: 45;
  display: flex; align-items: center; gap: 1.1rem;
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  background: color-mix(in oklab, var(--fjord-900) 90%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  border-radius: 999px;
  box-shadow: 0 22px 50px -20px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.10);
  opacity: 0; pointer-events: none;
  transition: transform 0.55s var(--ease), opacity 0.45s var(--ease);
}
.stickycta--show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.stickycta__text { color: var(--paper); font-weight: 500; font-size: 0.96rem; white-space: nowrap; }
.stickycta .btn { padding: 0.7em 1.2em; font-size: 0.92rem; }
@media (max-width: 600px) {
  .stickycta { left: 12px; right: 12px; transform: translateY(150%); gap: 0.6rem; padding-left: 1.1rem; }
  .stickycta--show { transform: translateY(0); }
  .stickycta__text { display: none; }
  .stickycta .btn { width: 100%; justify-content: center; }
}

/* ============================== KOSTENWAHRHEIT ============================== */
.kosten { padding: clamp(80px, 14vh, 170px) 0; }
.kosten__head { max-width: 720px; }
.kosten__title { font-size: var(--step-3); margin-top: 1rem; }
.kosten__title .italic { color: var(--falun-bright); }
.kosten__intro { margin-top: 1.2rem; color: var(--fjord-100); font-size: var(--step-1); max-width: 56ch; }
.kosten__intro strong { color: var(--paper); }

.kosten__bar { margin-top: clamp(40px, 6vh, 64px); display: flex; gap: 6px; height: 76px; }
.kseg { position: relative; flex-grow: 0; flex-shrink: 1; min-width: 44px; border-radius: 8px; overflow: hidden; display: flex; align-items: flex-end; padding: 0.6rem; transition: flex-basis 0.5s var(--ease); }
.kseg__fill { position: absolute; inset: 0; background: var(--seg); opacity: 0.38; transition: opacity 0.4s; }
.kseg--on .kseg__fill { opacity: 1; }
.kseg__pct { position: relative; color: var(--paper); }
.kseg:hover { cursor: pointer; }
.kosten__illus { margin-top: 0.8rem; color: var(--fjord-300); letter-spacing: 0.08em; }

.kosten__grid { margin-top: clamp(36px, 5vh, 56px); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.kcard { padding: clamp(20px, 2vw, 28px); border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease); }
.kcard--on { background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--seg) 60%, transparent); transform: translateY(-3px); }
.kcard__dot { display: block; width: 12px; height: 12px; border-radius: 50%; background: var(--seg); }
.kcard__t { font-size: var(--step-1); margin-top: 0.9rem; color: var(--paper); }
.kcard__d { margin-top: 0.6rem; color: var(--fjord-100); font-size: 0.96rem; }
.kcard__note { display: inline-block; margin-top: 1rem; color: var(--fjord-300); letter-spacing: 0.06em; }
@media (max-width: 860px) { .kosten__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .kosten__grid { grid-template-columns: 1fr; } .kosten__bar { height: 60px; } }

/* ============================== VERTRAUEN / FAQ ============================== */
.trust { padding: clamp(80px, 14vh, 170px) 0; background: var(--paper-2); }
.trust__head { max-width: 720px; }
.trust__title { font-size: var(--step-3); margin-top: 1rem; }
.trust__title .italic { color: var(--accent); }
.trust__intro { margin-top: 1.2rem; color: var(--ink-soft); font-size: var(--step-1); max-width: 56ch; }

.trust__promises {
  margin-top: clamp(44px, 7vh, 80px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.promise {
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 44px -34px color-mix(in oklab, var(--ink) 55%, transparent);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.promise:hover { transform: translateY(-4px); box-shadow: 0 32px 54px -32px color-mix(in oklab, var(--ink) 55%, transparent); }
.promise__mark { display: block; width: 30px; height: 30px; border-radius: 8px; background: color-mix(in oklab, var(--accent) 16%, transparent); position: relative; }
.promise__mark::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--accent); }
.promise__t { font-size: var(--step-1); margin-top: 1.1rem; }
.promise__d { margin-top: 0.7rem; color: var(--ink-soft); }

.trust__faq { margin-top: clamp(48px, 8vh, 90px); max-width: 860px; }
.faq__title { font-size: var(--step-2); margin-bottom: 1.4rem; }
.faq__list { list-style: none; padding: 0; display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }
.faq__item:last-child { border-bottom: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.25em 0; text-align: left;
  font-family: var(--serif); font-size: var(--step-1); color: var(--ink);
  transition: color 0.3s;
}
.faq__q:hover { color: var(--accent); }
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.faq__icon::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq__icon::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq__item--open .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq__item--open .faq__a-wrap { grid-template-rows: 1fr; }
.faq__a { overflow: hidden; }
.faq__a p { color: var(--ink-soft); max-width: 64ch; padding-bottom: 1.4rem; }
.faq__note { display: inline-block; margin: -0.6rem 0 1.4rem; color: var(--ink-faint); letter-spacing: 0.08em; padding: 0.35em 0.8em; background: var(--paper-2); border-radius: 999px; }

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

/* ============================== STIMMEN / TESTIMONIALS (Platzhalter) ============================== */
.voices { padding: clamp(80px, 14vh, 170px) 0; }
.voices__head { max-width: 720px; }
.voices__title { font-size: var(--step-3); margin-top: 1rem; }
.voices__title .italic { color: var(--accent); }
.voices__intro { margin-top: 1.2rem; color: var(--ink-soft); font-size: var(--step-1); max-width: 54ch; }
.voices__grid {
  margin-top: clamp(44px, 7vh, 80px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.voice {
  position: relative;
  padding: clamp(26px, 2.6vw, 38px);
  background: var(--surface);
  border: 1px dashed color-mix(in oklab, var(--ink) 22%, transparent);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 1rem;
}
.voice__quote { font-family: var(--serif); font-size: 3.4rem; line-height: 0.5; height: 1.4rem; color: color-mix(in oklab, var(--accent) 45%, transparent); }
.voice__text { color: var(--ink-faint); font-style: italic; font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; }
.voice__person { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.voice__avatar { width: 50px; height: 50px; --slot-bg: var(--fog); flex: none; border-radius: 50%; overflow: hidden; }
.voice__id { display: flex; flex-direction: column; }
.voice__name { font-weight: 600; color: var(--ink-soft); }
.voice__meta { font-size: 0.85rem; color: var(--ink-faint); }
.voice__badge { align-self: flex-start; white-space: nowrap; color: var(--ink-faint); letter-spacing: 0.08em; padding: 0.35em 0.8em; background: var(--paper-2); border-radius: 999px; }
.voices__foot { margin-top: clamp(36px, 6vh, 64px); text-align: center; font-size: var(--step-1); color: var(--ink-soft); }
.voices__foot .italic { color: var(--ink); }
@media (max-width: 860px) { .voices__grid { grid-template-columns: 1fr; } }

/* ============================== WER WIR SIND ============================== */
.about { padding: clamp(80px, 14vh, 160px) 0; }
.about__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about__media { position: relative; }
.about__frame { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg); }
.about__scene { position: absolute; inset: 0; }
.about__photo { position: absolute; inset: 0; width: 100%; height: 100%; --slot-bg: transparent; background: transparent; }
.about__cap { display: block; margin-top: 0.8rem; color: var(--fjord-300); font-style: italic; font-family: var(--serif); }
.about__title { font-size: var(--step-3); margin-top: 1rem; }
.about__title .italic { color: var(--falun-bright); }
.about__text { margin-top: 1.3rem; color: var(--fjord-100); font-size: var(--step-1); max-width: 52ch; }
.about__text strong { color: var(--paper); }
.about__list { list-style: none; padding: 0; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.about__list li { display: flex; gap: 0.8rem; color: var(--fjord-100); }
.about__list .mono { color: var(--falun-bright); }
.about__list em { color: var(--fjord-300); font-style: italic; }
.about__placeholder { margin-top: 1.8rem; color: var(--fjord-300); letter-spacing: 0.05em; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.12); max-width: 52ch; }

/* ============================== FOOTER ============================== */
.foot { background: var(--fjord-900); color: var(--fjord-100); padding: clamp(56px, 8vh, 90px) 0 2rem; }
.foot__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(36px, 6vw, 80px); }
.foot .nav__word { color: var(--paper); }
.foot__flag { width: 34px; }
.foot__copy { display: inline-flex; align-items: center; gap: 0.6em; }
.foot__copyflag { width: 18px; }
.foot__tag { margin-top: 1rem; color: var(--fjord-300); font-family: var(--serif); font-style: italic; font-size: var(--step-1); max-width: 28ch; }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.foot__cols > div { display: flex; flex-direction: column; gap: 0.7rem; }
.foot__h { color: var(--fjord-300); letter-spacing: 0.14em; margin-bottom: 0.4rem; }
.foot__cols a { color: var(--fjord-100); opacity: 0.85; transition: opacity 0.3s, color 0.3s; width: fit-content; }
.foot__cols a:hover { opacity: 1; color: var(--falun-bright); }
.foot__soon { color: var(--fjord-300); opacity: 0.6; }
.foot__base { margin-top: clamp(40px, 6vh, 70px); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--fjord-300); letter-spacing: 0.06em; }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 980px) {
  .nav__links, .nav__cta, .nav__right { display: none; }
  .nav__burger { display: flex; }
  .nav__sheet { display: flex; flex-direction: column; }
  .intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .map__stage { grid-template-columns: 1fr; }
  .map__viz { max-width: 420px; margin-inline: auto; }
  .journey__grid { grid-template-columns: 1fr; }
  .journey__sticky { position: relative; top: 0; }
  .route__bar { min-height: 80px; }
  .reality__grid { grid-template-columns: 1fr; }
  .fahrplan__grid { grid-template-columns: 1fr; }
  .fahrplan__intro { position: relative; top: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 360px; }
  .foot__inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .region { grid-template-columns: 1fr; }
  .region__photo { min-height: 200px; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .result__row { flex-direction: column; gap: 0.2rem; }
  .result__v { text-align: left; }
}


/* ---- SSR-Cover (Illustrations-Fallback als Verlauf) ---- */
.post__cover-illu{position:absolute;inset:0}
.post__cover-illu--morgen{background:linear-gradient(160deg,#e7eef4,#9fb3c8)}
.post__cover-illu--tag{background:linear-gradient(160deg,#bcd6e6,#5e8fb0)}
.post__cover-illu--abend{background:linear-gradient(160deg,#2a4a6e,#16335a)}
.post__cover-illu--polarnacht{background:linear-gradient(160deg,#1a2740,#0b1426)}
.post__cover-illu--winter{background:linear-gradient(160deg,#dde7ec,#9cb0bb)}
.post__coverimg,.magcard__img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.foot__base a{text-decoration:underline;text-underline-offset:2px}
.foot__base a:hover{color:var(--accent)}

/* ---- Artikel-Illustrationen (clean, minimalistisch) ---- */
.post__illu{margin:2.6rem 0}
.post__illu svg{display:block;width:100%;max-width:600px;height:auto;margin-inline:auto;overflow:visible}
.post__illu figcaption{margin-top:.7rem;text-align:center;font-family:var(--sans);font-size:.8rem;letter-spacing:.03em;color:var(--ink-faint)}
.illu-track{stroke:color-mix(in oklab,var(--ink) 16%,transparent);stroke-width:2;stroke-linecap:round}
.illu-node{fill:#fff;stroke:var(--accent);stroke-width:2}
.illu-node--goal{fill:var(--falun-bright);stroke:var(--falun-bright)}
.illu-num{fill:var(--accent);font-family:var(--sans);font-weight:600;font-size:14px}
.illu-num--goal{fill:#3a2c05}
.illu-label{fill:var(--ink-soft);font-family:var(--sans);font-size:13px}
.illu-div{stroke:color-mix(in oklab,var(--ink) 12%,transparent);stroke-width:1}
.illu-val{fill:var(--ink);font-family:var(--serif);font-size:30px}
.illu-val--zero{fill:color-mix(in oklab,var(--ink) 55%,transparent)}
.illu-key{fill:var(--ink-faint);font-family:var(--sans);font-size:11.5px;letter-spacing:.05em;text-transform:uppercase}
