/* =========================================================
   robertlazik.com — Personenseite (Visual-Studio)
   Mobile-first. Es werden ausschließlich transform/opacity
   animiert; kein transition: all.
   ========================================================= */

:root {
  /* Marke (Design-Tokens, unverändert) */
  --navy:        #0A1628;
  --navy-2:      #0D2240;
  --navy-3:      #16305A;
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --orange:      #F97316;
  /* Helle Orange-Stufe für Labels auf Navy (10,7:1 statt 6,5:1). */
  --orange-lite: #FDBA74;
  /* Dunkle Orange-Stufe für Labels auf Papier (8,0:1 statt 3,0:1). */
  --orange-ink:  #7E2E02;
  --green:       #22C55E;

  /* Flächen — Papiertöne aus den Illustrationen gemessen */
  --white:       #FFFFFF;
  --surface:     #F3F4F6;
  --paper:       #FBF3E7;
  --paper-soft:  #FDF5EA;
  --paper-warm:  #F9EEDA;

  /* Text */
  --ink:         #111827;
  --ink-strong:  #0A1628;
  --ink-2:       #3D4A5C;
  --on-navy:     #FFFFFF;
  --on-navy-2:   #C9D6EC;

  /* Struktur */
  --line:        #E4E7EC;
  --line-warm:   #ECDFC9;
  --r-s: 10px;
  --r-m: 16px;
  --r-l: 24px;
  --shadow-s: 0 1px 2px rgba(10,22,40,.06), 0 2px 8px rgba(10,22,40,.05);
  --shadow-m: 0 2px 6px rgba(10,22,40,.06), 0 12px 28px rgba(10,22,40,.08);
  --shadow-l: 0 4px 12px rgba(10,22,40,.08), 0 24px 56px rgba(10,22,40,.12);

  /* Motion */
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-reveal: 700ms;
  --dur-micro: 160ms;

  --bar-h: 52px;
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: Nunito, "Nunito Sans", system-ui, sans-serif;
  color: var(--ink-strong);
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 9.2vw, 4rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 5.6vw, 2.5rem); font-weight: 800; line-height: 1.14; }
h3 { font-size: 1.14rem; font-weight: 700; line-height: 1.35; }

p { margin: 0; }
a { color: var(--blue-dark); }

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--r-s) var(--r-s); text-decoration: none; font-weight: 700;
}
.skip:focus { top: 0; }

.wrap { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 20px; }
.wrap-narrow { max-width: 780px; }

section { scroll-margin-top: calc(var(--bar-h) + 8px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: Nunito, "Nunito Sans", system-ui, sans-serif;
  font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-decoration: none; text-align: center;
  padding: 13px 22px; min-height: 46px;
  border: 2px solid transparent; border-radius: 999px;
  transition: transform var(--dur-micro) var(--ease-out-strong),
              background-color var(--dur-micro) linear,
              border-color var(--dur-micro) linear,
              color var(--dur-micro) linear;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,.26); }
.btn-ghost   { background: transparent; color: var(--ink-strong); border-color: #C3CBD8; }

.btn-sm { font-size: .94rem; padding: 8px 16px; min-height: 38px; }
.btn-lg { font-size: 1.05rem; padding: 15px 26px; min-height: 52px; }

@media (max-width: 430px) {
  .btn-lg { font-size: 1rem; padding-inline: 18px; }
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--blue-dark); }
  .btn-ghost:hover   { border-color: var(--navy); background: rgba(10,22,40,.04); }
}

/* =========================================================
   KOPFZEILE — schlank, ohne doppelte Marke
   ========================================================= */
.topbar {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-in {
  display: flex; align-items: center; gap: 14px;
  min-height: var(--bar-h);
}

.wordmark {
  flex: none;
  font-family: Nunito, sans-serif; font-weight: 800; font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--ink-strong); text-decoration: none;
}
.wordmark:hover { color: var(--navy-3); }

.nav-main { display: none; }
.topbar-cta { margin-left: auto; }

@media (min-width: 900px) {
  :root { --bar-h: 66px; }
  .topbar-in { gap: 30px; }
  .wordmark { font-size: 1.14rem; }
  .nav-main { display: flex; gap: 26px; }
  .nav-main a {
    color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: .98rem;
    padding: 5px 0; border-bottom: 2px solid transparent;
    transition: color var(--dur-micro) linear, border-color var(--dur-micro) linear;
  }
  .nav-main a:hover { color: var(--ink-strong); border-bottom-color: var(--orange); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 30px 0 44px;
  background:
    radial-gradient(115% 85% at 86% 2%, rgba(249,115,22,.10) 0%, rgba(249,115,22,0) 58%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 48%, var(--white) 100%);
}
.hero-grid { display: grid; gap: 30px; }

.eyebrow {
  display: inline-block;
  font-family: Nunito, sans-serif; font-weight: 700; font-size: .8rem;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--navy-3);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line-warm);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { color: var(--navy-3); }

.lead {
  font-size: clamp(1.04rem, 3.4vw, 1.18rem);
  color: var(--ink-2);
  line-height: 1.64;
  max-width: 34em;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta-row .btn-lg { flex: 1 1 auto; }

.hero-side {
  margin-top: 20px;
  font-size: .99rem; font-weight: 600; color: var(--ink-2);
}
.link-plain {
  color: var(--blue-dark); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid rgba(37,99,235,.28); padding-bottom: 1px;
  transition: border-color var(--dur-micro) linear;
}
.link-plain:hover { border-bottom-color: var(--blue); }

.hero-shot { margin: 0; position: relative; }
.shot-frame {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--r-l);
  aspect-ratio: 1 / 1;
  background: var(--paper-warm);
  box-shadow: var(--shadow-l);
}
.shot-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.shot-glow { display: none; }

@media (min-width: 900px) {
  .hero { padding: 60px 0 78px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; align-items: center; gap: 56px; }
  .cta-row .btn-lg { flex: 0 0 auto; }
  .shot-frame { aspect-ratio: 4 / 5; }
  .shot-frame img { object-position: 50% 22%; }
  .shot-glow {
    display: block; position: absolute; inset: auto -20px -24px -20px; height: 58%;
    background: radial-gradient(60% 100% at 50% 100%, rgba(249,115,22,.16), rgba(249,115,22,0) 70%);
    z-index: -1;
  }
}

/* =========================================================
   Sektions-Grundgerüst
   ========================================================= */
.sec-head { max-width: 40rem; margin-bottom: 28px; }
.sec-sub { margin-top: 12px; color: var(--ink-2); font-size: 1.04rem; }

.kicker {
  font-family: Nunito, sans-serif; font-weight: 800; font-size: .78rem;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--orange-lite);
  margin-bottom: 14px;
}
.kicker-ink { color: var(--orange-ink); margin-bottom: 8px; }

/* =========================================================
   HALTUNG — der eine dunkle Block der Seite
   ========================================================= */
.stance {
  position: relative; overflow: hidden;
  padding: 60px 0 62px;
  background:
    radial-gradient(90% 70% at 76% 6%, rgba(37,99,235,.20) 0%, rgba(37,99,235,0) 62%),
    var(--navy);
  color: var(--on-navy);
}

.stance-lead { position: relative; max-width: 44rem; }

/* Signature: ein sehr langsamer Atem hinter dem Leitsatz. */
.breath {
  position: absolute; z-index: 0;
  left: -18%; top: -70%;
  width: 130%; aspect-ratio: 1 / 1;
  background: radial-gradient(closest-side, rgba(126,169,247,.20), rgba(126,169,247,0) 72%);
  pointer-events: none;
}
.stance-lead > :not(.breath) { position: relative; z-index: 1; }

.quote-xl { margin: 0; }
.quote-xl p {
  font-family: Nunito, sans-serif; font-weight: 800;
  font-size: clamp(1.72rem, 6.4vw, 2.9rem);
  line-height: 1.16; letter-spacing: -0.02em;
  color: var(--on-navy);
  text-wrap: balance;
}

.hair { display: block; width: 100%; height: 2px; margin: 24px 0 22px; overflow: hidden; }
.hair-line {
  display: block; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(249,115,22,.22));
  transform: scaleX(1); transform-origin: left;
}

.stance-text { color: var(--on-navy-2); font-size: 1.06rem; line-height: 1.68; max-width: 36em; }

.quote-grid {
  list-style: none; margin: 36px 0 0; padding: 0;
  display: grid; gap: 14px;
}
.quote-card {
  background: var(--navy-2);
  border: 1px solid rgba(160,190,240,.24);
  border-radius: var(--r-m);
  padding: 20px 20px 22px;
}
.quote-card p {
  font-family: Nunito, sans-serif; font-weight: 700;
  font-size: 1.06rem; line-height: 1.45;
  color: var(--on-navy);
}

@media (min-width: 780px) {
  .quote-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .quote-card { padding: 24px 24px 26px; }
}
@media (min-width: 1000px) {
  .stance { padding: 92px 0 96px; }
  .quote-grid { margin-top: 48px; }
}

/* =========================================================
   MEIN WEG
   ========================================================= */
.path { padding: 56px 0 58px; background: var(--paper); }

.stations {
  list-style: none; margin: 0; padding: 0;
  position: relative;
  display: grid; gap: 30px;
}
/* Die Linie, an der die Stationen hängen. */
.stations::before {
  content: ""; position: absolute; z-index: 0;
  left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(249,115,22,.18));
  transform: scaleY(1); transform-origin: top;
}
.anim .stations::before {
  transform: scaleY(0);
  transition: transform 900ms var(--ease-in-out-strong);
}
.anim .stations.is-drawn::before { transform: scaleY(1); }

.station { position: relative; z-index: 1; padding-left: 34px; }
.station::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--orange);
}
.station-year {
  display: block;
  font-family: Nunito, sans-serif; font-weight: 800; font-size: .82rem;
  letter-spacing: .12em; color: var(--orange-ink);
  margin-bottom: 4px;
}
.station h3 { margin-bottom: 8px; }
.station p { color: var(--ink-2); font-size: 1.01rem; }
.station em { font-style: normal; color: var(--ink-strong); font-weight: 600; }

.facts {
  list-style: none; margin: 38px 0 0; padding: 26px 0 0;
  border-top: 1px solid var(--line-warm);
  display: grid; gap: 13px;
  font-size: 1.01rem; font-weight: 600; color: var(--ink-strong);
}
.facts li { display: flex; align-items: flex-start; gap: 11px; }
.tick {
  width: 22px; height: 22px; flex: none; margin-top: 2px;
  fill: none; stroke: var(--green); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (min-width: 800px) {
  .stations { grid-template-columns: repeat(3, 1fr); gap: 34px; padding-top: 26px; }
  .stations::before {
    left: 8px; right: 8px; top: 7px; bottom: auto;
    width: auto; height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(249,115,22,.18));
    transform: scaleX(1); transform-origin: left;
  }
  .anim .stations::before { transform: scaleX(0); }
  .anim .stations.is-drawn::before { transform: scaleX(1); }
  .station { padding-left: 0; padding-top: 30px; }
  .station::before { top: 0; left: 0; }
  .facts { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 1000px) { .path { padding: 88px 0 92px; } }

/* =========================================================
   ANGEBOTE
   ========================================================= */
.offers { padding: 56px 0 58px; background: var(--white); }

.feature {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}
.feature-pic { display: block; background: var(--paper-warm); }
.feature-pic img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.feature-body { padding: 24px 22px 28px; }

.feature-mark {
  display: block; position: relative; overflow: hidden;
  width: 150px; aspect-ratio: 2.495;
  margin-bottom: 18px;
}
.feature-mark img {
  position: absolute; width: 131.32%; height: auto;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}

.feature-body h3 {
  font-size: clamp(1.16rem, 4.2vw, 1.42rem);
  line-height: 1.32; margin-bottom: 12px;
}
.feature-text { color: var(--ink-2); font-size: 1.02rem; }
.feature-price {
  margin: 20px 0 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
}
.feature-price strong {
  font-family: Nunito, sans-serif; font-weight: 800;
  font-size: clamp(1.9rem, 7vw, 2.3rem); line-height: 1;
  color: var(--ink-strong); letter-spacing: -0.02em;
}
.feature-price span { color: var(--ink-2); font-size: .99rem; font-weight: 600; }

.offer-card {
  margin-top: 20px;
  display: grid;
  background: var(--paper-soft);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-l);
  overflow: hidden;
}
.offer-pic { background: var(--paper-warm); }
.offer-pic img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.offer-body { padding: 22px 22px 26px; }
.offer-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.offer-body p { color: var(--ink-2); font-size: 1.01rem; }

@media (min-width: 860px) {
  .feature { grid-template-columns: .92fr 1.08fr; align-items: stretch; }
  .feature-pic img { aspect-ratio: auto; min-height: 100%; }
  .feature-body { padding: 40px 42px 42px; align-self: center; }

  .offer-card { margin-top: 24px; grid-template-columns: .92fr 1.08fr; align-items: stretch; }
  .offer-pic img { aspect-ratio: auto; min-height: 100%; }
  .offer-body { padding: 34px 42px 36px; align-self: center; }
}
@media (min-width: 1000px) { .offers { padding: 88px 0 92px; } }

/* =========================================================
   KANÄLE — wächst ohne Umbau
   ========================================================= */
.feed { padding: 56px 0 58px; background: var(--surface); }

/* auto-fit: ein Kanal füllt die Zeile, zwei teilen sie, drei passen daneben —
   ein weiterer <li class="channel"> genügt, kein Umbau nötig. */
.channels {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.channel-link {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 16px 18px;
  text-decoration: none; color: var(--ink-strong);
  box-shadow: var(--shadow-s);
  transition: transform 200ms var(--ease-out-strong), box-shadow 200ms var(--ease-out-strong);
}
.channel-icon {
  display: grid; place-items: center; flex: none;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--navy);
}
.channel-icon svg { width: 24px; height: 24px; fill: #fff; }
.channel-text { display: grid; gap: 1px; }
.channel-text strong {
  font-family: Nunito, sans-serif; font-weight: 800; font-size: 1.06rem;
  color: var(--ink-strong);
}
.channel-handle { color: var(--ink-2); font-size: .97rem; font-weight: 600; }
.channel-arrow {
  width: 22px; height: 22px; margin-left: auto; flex: none;
  fill: none; stroke: var(--blue); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 200ms var(--ease-out-strong);
}

@media (hover: hover) and (pointer: fine) {
  .channel-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
  .channel-link:hover .channel-arrow { transform: translateX(3px); }
}
@media (min-width: 620px) { .channels { gap: 16px; } }
@media (min-width: 1000px) { .feed { padding: 84px 0 88px; } }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { padding: 56px 0 58px; background: var(--white); }
.contact-box {
  background: var(--paper);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-l);
  padding: 30px 24px 32px;
  text-align: center;
}
.contact-box p { margin: 12px auto 22px; color: var(--ink-2); font-size: 1.04rem; max-width: 34em; }

.mailto {
  display: inline-block;
  font-family: Nunito, sans-serif; font-weight: 800;
  font-size: clamp(1.16rem, 4.6vw, 1.55rem);
  color: var(--blue-dark); text-decoration: none;
  border-bottom: 3px solid rgba(37,99,235,.3);
  padding-bottom: 3px; word-break: break-word;
  transition: border-color var(--dur-micro) linear;
}
.mailto:hover { border-bottom-color: var(--blue); }

@media (min-width: 700px) { .contact-box { padding: 44px 40px 46px; } }
@media (min-width: 1000px) { .contact { padding: 84px 0 88px; } }

/* =========================================================
   PFLICHT-HINWEIS
   ========================================================= */
.notice { padding: 0 0 56px; background: var(--white); }
.notice-text {
  background: var(--surface);
  border-left: 4px solid var(--navy-3);
  border-radius: 0 var(--r-s) var(--r-s) 0;
  padding: 18px 20px;
  font-size: .99rem; line-height: 1.62;
  color: var(--ink);
}
.notice-text strong { color: var(--ink-strong); }

@media (min-width: 1000px) { .notice { padding-bottom: 88px; } }

/* =========================================================
   FOOTER
   ========================================================= */
.foot { background: var(--navy); color: var(--on-navy-2); padding: 42px 0 34px; }
.foot-grid { display: grid; gap: 26px; }
.foot-name {
  font-family: Nunito, sans-serif; font-weight: 800; font-size: 1.2rem;
  color: #fff; margin-bottom: 10px;
}
.foot-brand p { color: var(--on-navy-2); font-size: 1rem; max-width: 30rem; }
.foot-mail {
  display: inline-block; margin-top: 14px;
  color: #fff; font-weight: 700; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px;
}
.foot-mail:hover { border-bottom-color: var(--orange); }

.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot-links a {
  color: #fff; text-decoration: none; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 2px;
}
.foot-links a:hover { border-bottom-color: var(--orange); }

.foot-note {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: var(--on-navy-2); font-size: .95rem;
}

@media (min-width: 780px) {
  .foot { padding: 54px 0 40px; }
  .foot-grid { grid-template-columns: 1.5fr 1fr; align-items: start; gap: 40px; }
  .foot-links { justify-content: flex-end; }
}

/* =========================================================
   MOTION
   ========================================================= */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rise-photo {
  from { opacity: 0; transform: translateY(16px) scale(1.03); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes breathe-glow {
  0%, 100% { opacity: .58; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}

.rise       { animation: rise-in var(--dur-reveal) var(--ease-out-strong) both; animation-delay: var(--d, 0ms); }
.rise-photo { animation: rise-photo var(--dur-reveal) var(--ease-out-strong) both; animation-delay: var(--d, 0ms); }

.breath { animation: breathe-glow 7s ease-in-out infinite; will-change: transform, opacity; }

/* Draw-in der Haarlinie: der sichtbare Zustand ist der Standard. Die Klasse
   .anim setzt app.js selbst — bleibt das Skript aus, ist nichts versteckt. */
.anim .hair-line { transform: scaleX(0); transition: transform 900ms var(--ease-in-out-strong); }
.anim .is-drawn .hair-line { transform: scaleX(1); }

/* Reveals: das Attribut setzt ausschließlich JS — ohne JS ist alles sichtbar. */
[data-reveal] {
  transition: opacity 600ms var(--ease-out-strong), transform 600ms var(--ease-out-strong);
}
[data-reveal]:not([data-inview]) { opacity: 0; transform: translateY(20px); }

/* -----------------------------------------------------------------
   prefers-reduced-motion: reduce
   Nicht nur „kürzer“, sondern AUS — und jeder Inhalt sofort sichtbar.
   Kein Element darf in einem Zwischenzustand hängen bleiben.
   ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .rise, .rise-photo { opacity: 1 !important; transform: none !important; }
  [data-reveal], [data-reveal]:not([data-inview]) { opacity: 1 !important; transform: none !important; }
  .hair-line, .anim .hair-line { transform: scaleX(1) !important; }
  .stations::before, .anim .stations::before { transform: scaleY(1) !important; }
  .breath { opacity: .7 !important; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 800px) {
  .stations::before, .anim .stations::before { transform: scaleX(1) !important; }
}
