/* =========================================================
   Friseursalon MAGIE – Weinböhla
   Stylesheet
   ========================================================= */

:root {
  --plum-950: #120c17;
  --plum-900: #1b1222;
  --plum-800: #2a1b36;
  --plum-700: #3d2750;

  --accent:   #a855c9;   /* Lila – Logofarbe */
  --accent-2: #e0218a;   /* Magenta – Akzent */
  --accent-soft: #f3e9f8;

  --ink:      #221a29;
  --body:     #5b5163;
  --line:     #e7dfec;
  --cream:    #faf7fb;
  --white:    #ffffff;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --radius: 4px;
  --shadow: 0 18px 50px -22px rgba(30, 12, 45, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Die Kopfzeile liegt fest über der Seite. Ohne diesen Abstand landet ein
   angesprungener Abschnitt teilweise darunter. */
[id] { scroll-margin-top: 6.5rem; }

/* Tastaturbedienung: sichtbarer Rahmen, hell genug auch auf dunklem Grund. */
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--dark :focus-visible,
.facts :focus-visible,
.footer :focus-visible,
.hero :focus-visible,
.cta :focus-visible { outline-color: #fff; }

/* Sprungmarke für Tastatur und Screenreader – sonst unsichtbar. */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  padding: .9rem 1.4rem;
  background: var(--white); color: var(--ink);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.9rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.section--tint { background: var(--cream); }
.section--dark { background: var(--plum-900); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, .74); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }
.section--dark .eyebrow { color: #d78fe8; }

.lead { font-size: 1.15rem; }
.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .3s, color .3s, border-color .3s, box-shadow .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 10px 24px -16px rgba(120, 20, 80, .55);
}
.btn--primary:hover { box-shadow: 0 16px 30px -16px rgba(120, 20, 80, .65); }
.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.btn--outline { color: var(--ink); border-color: var(--line); background: #fff; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.4rem 0;
  transition: background-color .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
/* Unterseiten ohne Hero: Kopfzeile dauerhaft hell. */
.header.is-stuck,
.header--solid {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: .75rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .07);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand-group { display: flex; align-items: center; gap: 1.1rem; }

/* Die beiden Symbole stehen nebeneinander. Die Fläche ist bewusst grösser
   als das Zeichen selbst, damit man sie auch mit dem Finger sicher trifft. */
.brand-social { display: flex; align-items: center; gap: .15rem; }
.brand-social a {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: rgba(255, 255, 255, .8);
  transition: color .3s, background-color .3s;
}
.brand-social a:hover { color: #fff; background: rgba(255, 255, 255, .14); }
.header.is-stuck .brand-social a,
.header--solid .brand-social a { color: var(--body); }
.header.is-stuck .brand-social a:hover,
.header--solid .brand-social a:hover { color: var(--accent-2); background: var(--accent-soft); }

/* Logo: zwei Fassungen übereinander, es wird nur überblendet.
   Beide sind beim Laden da, deshalb kein Flackern beim Umschalten. */
.brand { position: relative; display: block; line-height: 0; }
.brand__logo {
  display: block; width: auto; height: 54px;
  transition: opacity .4s var(--ease);
}
.brand__logo--dunkel {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
}
.header.is-stuck .brand__logo--hell,
.header.is-navopen .brand__logo--hell,
.header--solid .brand__logo--hell { opacity: 0; }
.header.is-stuck .brand__logo--dunkel,
.header.is-navopen .brand__logo--dunkel,
.header--solid .brand__logo--dunkel { opacity: 1; }
.header.is-stuck .brand__logo,
.header--solid .brand__logo { height: 46px; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav__link {
  position: relative;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: rgba(255, 255, 255, .88);
  transition: color .3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--accent-2);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.header.is-stuck .nav__link,
.header--solid .nav__link { color: var(--ink); }
.nav .btn { padding: .8rem 1.5rem; font-size: .7rem; }

.burger {
  display: none; width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px;
}
.burger span {
  display: block; height: 1.5px; background: #fff; border-radius: 2px;
  transition: transform .4s var(--ease), width .3s, opacity .2s, background-color .4s;
}
.burger span:nth-child(1) { width: 26px; }
.burger span:nth-child(2) { width: 18px; }
.header.is-stuck .burger span,
.header--solid .burger span { background: var(--ink); }
.burger.is-open span { background: var(--ink); }
.burger.is-open span:nth-child(1) { width: 26px; transform: translateY(3.75px) rotate(45deg); }
.burger.is-open span:nth-child(2) { width: 26px; transform: translateY(-3.75px) rotate(-45deg); }

/* Mobile Menü */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--white);
  padding: 7.5rem 2rem 3rem;
  display: flex; flex-direction: column; gap: .3rem;
  transform: translateY(-100%);
  transition: transform .55s var(--ease), visibility .55s;
  overflow-y: auto;
  /* Geschlossen ist das Menü für Tastatur und Screenreader nicht vorhanden.
     Ohne diese Zeile springt die Tabulatortaste durch sieben unsichtbare Links. */
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
/* Nur die direkten Menüpunkte gross setzen – nicht die Social-Links in der Liste. */
.mobile-nav > a:not(.btn) {
  font-family: var(--serif); font-size: 1.9rem;
  color: var(--ink); text-decoration: none;
  padding: .5rem 0; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 2rem; align-self: flex-start; }

/* ---------- Hero ---------- */
/* Vollbild: Foto füllt den Bildschirm, Text liegt unten darüber. */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 9rem 0 clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
/* Unten kräftig abgedunkelt, damit der weisse Text sicher lesbar bleibt –
   nach oben hin deutlich heller, damit die Gesichter zur Geltung kommen. */
.hero__media::after {
  content: ""; position: absolute; inset: -1px;
  background:
    /* schmaler Streifen oben, damit Schriftzug und Menü lesbar bleiben */
    linear-gradient(to bottom, rgba(18, 12, 23, .5) 0%, rgba(18, 12, 23, .18) 12%, transparent 22%),
    linear-gradient(to top, rgba(18, 12, 23, .9) 0%, rgba(18, 12, 23, .38) 48%, rgba(18, 12, 23, .1) 100%),
    linear-gradient(105deg, rgba(168, 85, 201, .18) 0%, rgba(224, 33, 138, .06) 60%, transparent 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 44rem; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: #eeb5f7; }
.hero__text { color: rgba(255, 255, 255, .82); font-size: 1.2rem; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

/* ---------- Fakten-Leiste ---------- */
.facts { background: var(--plum-900); color: #fff; }
.facts__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.facts__item {
  padding: 2.6rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none; display: block;
  transition: background-color .35s;
}
.facts__item:last-child { border-right: 0; }
.facts__item:hover { background: rgba(255, 255, 255, .04); }
.facts__label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: #d78fe8; margin-bottom: .55rem;
}
.facts__value { font-family: var(--serif); font-size: 1.35rem; color: #fff; line-height: 1.35; }
.facts__note { font-size: .85rem; color: rgba(255, 255, 255, .55); margin-top: .2rem; }

/* ---------- Über uns ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; max-height: 640px; object-fit: cover; object-position: center 22%;
}
.signature {
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem; color: var(--ink); margin-top: 1.6rem;
}
.signature small { display: block; font-family: var(--sans); font-style: normal; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2); margin-top: .4rem; }

/* ---------- Leistungen ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.service {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service__media { aspect-ratio: 16 / 10; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.service:hover .service__media img { transform: scale(1.06); }
.service__body { padding: 1.6rem 2.1rem 2.1rem; flex: 1; }
.service ul li {
  position: relative; padding-left: 1.4rem; margin-bottom: .45rem; font-size: .96rem;
}
.service ul li::before {
  content: ""; position: absolute; left: 0; top: .68em;
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.member { text-align: center; }
.member__media {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3 / 4; margin-bottom: 1.2rem;
  background: var(--plum-800);
}
.member__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: grayscale(1) contrast(1.02);
  transition: transform 1s var(--ease), filter .6s;
}
.member:hover .member__media img { filter: grayscale(0); transform: scale(1.05); }
.member__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(168, 85, 201, .5), transparent 55%);
  opacity: 0; transition: opacity .6s;
}
.member:hover .member__media::after { opacity: 1; }
.member__name { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); margin-bottom: .2rem; }
.member__role { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-2); }
.section--dark .member__name { color: #fff; }
.section--dark .member__role { color: #d78fe8; }

/* ---------- Marken ---------- */
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3.5rem; align-items: center; }
.brands li {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  letter-spacing: .06em; color: var(--ink); opacity: .45;
  transition: opacity .4s, color .4s;
}
.brands li:hover { opacity: 1; color: var(--accent); }
/* Die Markennamen führen auf die Herstellerseiten. Keine Unterstreichung –
   der Hover-Effekt der Zeile zeigt schon an, dass sich hier etwas anklicken lässt. */
.brands li a { text-decoration: none; }

/* ---------- Galerie ---------- */
/* 3 Spalten × 2 Reihen = 6 Zellen: Bild 1 belegt 2×2, die beiden übrigen je eine Zelle. */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ---------- Zitat ---------- */
.quote { text-align: center; max-width: 46rem; margin-inline: auto; }
.quote blockquote {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.35; color: #fff;
}
.quote::before {
  content: ""; display: block; width: 46px; height: 2px; margin: 0 auto 2.2rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.quote cite {
  display: block; margin-top: 1.8rem; font-style: normal;
  font-family: var(--sans); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; color: #d78fe8;
}

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
.hours { border-top: 1px solid var(--line); margin-bottom: 2rem; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line);
}
.hours strong { color: var(--ink); font-weight: 600; font-size: .95rem; }
.hours span { color: var(--body); font-variant-numeric: tabular-nums; }
.hours li.is-today { color: var(--accent-2); }
.hours li.is-today strong, .hours li.is-today span { color: var(--accent-2); }

.contact-list li { display: flex; gap: 1.1rem; padding: 1.1rem 0; align-items: flex-start; }
.contact-list .ico {
  flex: 0 0 42px; height: 42px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 1.05rem;
}
.contact-list a { text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color .3s, color .3s; }
.contact-list a:hover { color: var(--accent-2); border-color: var(--accent-2); }
.contact-list .k { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2); display: block; margin-bottom: .15rem; }

/* Schaufensterfoto als Hintergrund, Text mit Abdunklung darüber lesbar. */
.map-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 340px; display: grid; place-items: end center; text-align: center;
  background: var(--plum-800);
  color: #fff; padding: 2.5rem; margin-top: 2rem;
}
.map-card > img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.map-card::after {
  content: ""; position: absolute; inset: -1px; z-index: 1;
  background: linear-gradient(to top, rgba(18, 12, 23, .92) 0%, rgba(18, 12, 23, .6) 45%, rgba(18, 12, 23, .25) 100%);
}
.map-card__body { position: relative; z-index: 2; }
.map-card h3 { color: #fff; }
.map-card p { color: rgba(255, 255, 255, .8); }

/* ---------- CTA-Band ---------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff; text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .88); max-width: 34rem; margin-inline: auto; }
.cta .btn { background: #fff; color: var(--accent-2); margin-top: 1.8rem; }
.cta .btn:hover { background: var(--plum-900); color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--plum-950); color: rgba(255, 255, 255, .6); padding: 4.5rem 0 2rem; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer a { color: rgba(255, 255, 255, .6); text-decoration: none; transition: color .3s; }
.footer a:hover { color: #fff; }
.footer li { margin-bottom: .5rem; }
.footer__logo { width: auto; height: 60px; margin-bottom: 1.4rem; }

/* Social-Links: nur Verlinkung, keine eingebetteten Widgets. */
.social { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.social li { margin: 0; }
.social a {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .6rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius);
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  transition: color .3s, border-color .3s, background-color .3s;
}
.social a:hover { color: #fff; border-color: var(--accent); background: rgba(168, 85, 201, .16); }
.social svg { flex: none; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .82rem;
}

/* ---------- Rechtstexte ---------- */
.legal { padding: 11rem 0 6rem; }
.legal .wrap { max-width: 48rem; }
.legal h2 { font-size: 1.6rem; margin-top: 2.5rem; }
.legal h3 { font-size: 1.15rem; margin-top: 1.8rem; }
.legal address { font-style: normal; margin-bottom: 1.2rem; }
.page-header--legal { background: var(--plum-900); }

/* ---------- Scroll-Animation ---------- */
/* Nur wenn JavaScript aktiv ist, wird ausgeblendet – sonst bleibt alles sichtbar. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .team { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  /* Kein Platz neben dem Schriftzug – die Symbole stehen stattdessen im Menü. */
  .brand-social { display: none; }
  .mobile-nav .social { margin-top: 2.5rem; }
  .mobile-nav .social a { color: var(--body); border-color: var(--line); }
  .mobile-nav .social a:hover { color: var(--accent-2); border-color: var(--accent-2); background: var(--accent-soft); }
  .split, .contact { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .services { grid-template-columns: 1fr; }
  .facts__grid { grid-template-columns: 1fr; }
  .facts__item { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); padding: 1.8rem 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 560px) {
  .team { grid-template-columns: repeat(2, 1fr); }
  .hero__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  /* Muss so genau sein wie die Regel oben, sonst greift sie nicht. */
  .js .reveal { opacity: 1; transform: none; }
}
