/* ============================================================
   ROBIN EBNER BAUMEISTER — main.css
   1:1 zusammengeführt aus React-Quellen (index.css + App.css)
   + a11y-widget + error-404
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --c-black:       #0A0A0A;
  --c-anthrazit:   #1E1E1E;
  --c-dark:        #2D2D2D;
  --c-mid:         #4A4A4A;
  --c-subtle:      #6B6B6B;
  --c-mud:         #8B7D6B;
  --c-mud-dark:    #6E6155;
  --c-olive:       #5C6B4F;
  --c-beige:       #C4B5A0;
  --c-bg-light:    #FAFAF8;
  --c-bg-creme:    #F5F0EB;
  --c-bg-dark:     #0A0A0A;
  --c-bg-dark2:    #141414;

  --glass-light-bg:     rgba(255, 255, 255, 0.09);
  --glass-light-border: rgba(255, 255, 255, 0.16);
  --glass-dark-bg:      rgba(10, 10, 10, 0.06);
  --glass-dark-border:  rgba(10, 10, 10, 0.10);

  --font-sans:  'Rajdhani', system-ui, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  --section-y:  clamp(80px, 10vw, 140px);
  --section-x:  clamp(20px, 5vw, 80px);
  --max-w:      1440px;
  --max-w-text: 760px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  --shadow-glass: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.08);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  /* scroll-behavior NICHT auf smooth setzen — Lenis steuert das Smooth-Scrolling */
  font-size: 16px;
  overflow-x: clip; /* clip statt hidden: kein eigener Scroll-Container, freundlich zu Lenis */
}

body {
  font-family: var(--font-sans);
  background-color: var(--c-bg-light);
  color: var(--c-anthrazit);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Lenis-Klassen: sobald Lenis aktiv ist, setzt es html.lenis + body wird zum Scroll-Container.
   Diese Defaults stellen sicher, dass Browser-Native-Smooth nicht reinfunkt. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  line-height: 1.15;
  color: var(--c-anthrazit);
}

.display-xl {
  font-family: var(--font-sans);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--c-anthrazit);
}
.display-xl.on-dark { color: #FAFAF8; }

h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--c-mid);
  line-height: 1.75;
  margin-bottom: 1em;
}
p:last-child { margin-bottom: 0; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-subtle);
}

.stat-num {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-anthrazit);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section--dark  { background: var(--c-bg-dark); }
.section--dark2 { background: var(--c-bg-dark2); }
.section--creme { background: var(--c-bg-creme); }
.section--white { background: var(--c-bg-light); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   GLASS / CARDS
   ============================================================ */
.glass {
  background: var(--glass-light-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-glass);
}
.glass--light {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 181, 160, 0.35);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.card {
  background: var(--c-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 40px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}
.card--dark   { background: var(--c-bg-dark2); border-color: rgba(255, 255, 255, 0.08); }
.card--active { background: var(--c-anthrazit); color: #FAFAF8; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary { background: var(--c-mud); color: #FAFAF8; }
.btn--primary:hover { background: var(--c-mud-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--c-anthrazit); border: 1.5px solid var(--c-anthrazit); }
.btn--outline:hover { background: var(--c-anthrazit); color: #FAFAF8; }
.btn--outline-light { background: transparent; color: #FAFAF8; border: 1.5px solid rgba(255, 255, 255, 0.5); }
.btn--outline-light:hover { background: #FAFAF8; color: var(--c-anthrazit); }
.btn--ghost-mud { background: transparent; color: var(--c-mud); border: 1.5px solid var(--c-mud); }
.btn--ghost-mud:hover { background: var(--c-mud); color: #FAFAF8; }

/* ============================================================
   DIVIDER, REVEAL, SKIP-LINK, IMG
   ============================================================ */
.divider {
  width: 48px;
  height: 2px;
  background: var(--c-mud);
  border-radius: 2px;
  margin-bottom: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: var(--c-anthrazit);
  color: #FAFAF8;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

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

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 32px;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.hdr.scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 32px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(196, 181, 160, 0.3);
}

.hdr__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr__logo img {
  height: 56px;
  width: auto;
  transition: filter 0.3s;
}
.hdr.scrolled .hdr__logo img { filter: brightness(0); }

.hdr__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hdr__nav a, .hdr__nav button {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 248, 0.9);
  text-decoration: none;
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s;
}
.hdr.scrolled .hdr__nav a,
.hdr.scrolled .hdr__nav button { color: var(--c-anthrazit); }
.hdr__nav a::after, .hdr__nav button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--c-mud);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.hdr__nav a:hover::after, .hdr__nav button:hover::after { transform: scaleX(1); }

.hdr__cta {
  background: transparent !important;
  color: rgba(250, 250, 248, 0.9) !important;
  padding: 8px 32px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: none !important;
}
.hdr.scrolled .hdr__cta { color: var(--c-anthrazit) !important; }
.hdr__cta:hover { opacity: 0.7; }
.hdr.scrolled .hdr__cta:hover { opacity: 0.7; }
.hdr__cta::after { display: none !important; }

/* Hamburger */
.hdr__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hdr__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAFAF8;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hdr.scrolled .hdr__burger span { background: var(--c-anthrazit); }
.hdr__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu — JS removes [hidden] + adds .open */
.hdr__mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 850;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.hdr__mobile-menu.open { display: flex; }
.hdr__mobile-menu a, .hdr__mobile-menu button {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  color: #FAFAF8;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.hdr__mobile-menu a:hover, .hdr__mobile-menu button:hover { color: var(--c-mud); }

@media (max-width: 900px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--c-bg-dark);
}
.hero__video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
  transform: scale(1.1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.35) 50%,
      rgba(10, 10, 10, 0.80) 100%);
}
.hero__container {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--section-x);
  padding-right: var(--section-x);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0;
  padding-bottom: clamp(60px, 8vw, 100px);
  max-width: 100%;
  width: 100%;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-mud);
}
.hero__heading {
  font-family: var(--font-sans);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #FAFAF8;
  margin-bottom: 28px;
  max-width: 900px;
}
.hero__heading-em {
  font-style: italic;
  text-transform: lowercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.015em;
}
.hero__heading-line { display: block; white-space: nowrap; }
.hero__sub {
  font-size: clamp(14px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: none;
  white-space: nowrap;
  line-height: 1.5;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sticky floating logo */
.sticky-logo {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  padding: 14px 18px;
  border-radius: 20px;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    background 0.5s ease,
    backdrop-filter 0.5s ease,
    -webkit-backdrop-filter 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    padding 0.4s ease;
  pointer-events: none;
}
.sticky-logo img {
  display: block;
  height: 88px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.sticky-logo--glass {
  background:
    linear-gradient(135deg, rgba(20, 20, 22, 0.78) 0%, rgba(8, 8, 10, 0.62) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Hero Stats bar */
.hero__stats {
  position: absolute;
  top: 50%;
  right: var(--section-x);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}
.hero__stat { text-align: right; }
.hero__stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #FAFAF8;
  line-height: 1;
}
.hero__stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero__stats { display: none; }
  .hero__heading {
    font-size: clamp(36px, 9.5vw, 60px);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__heading-line { white-space: nowrap; }
  .hero__pill {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    text-align: center;
    max-width: calc(100% - 8px);
    white-space: normal;
    line-height: 1.3;
  }
  .hero__container { justify-content: center; }
  .hero__content {
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    gap: 14px;
  }
  .hero__content .hero__pill,
  .hero__content .hero__heading,
  .hero__content .hero__sub { margin-bottom: 0; }
  .hero__pill { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .sticky-logo {
    bottom: 16px;
    right: 16px;
    padding: 10px 12px;
    border-radius: 16px;
  }
  .sticky-logo img { height: 56px; }
  .hero__sub { white-space: normal; font-size: 14px; text-align: center; }
}
.hero__logo-mobile { display: none; }

/* ============================================================
   TAGLINE BAND
   ============================================================ */
.tagline-band {
  background: var(--c-bg-light);
  padding: clamp(72px, 10vw, 120px) 0;
}
.tagline-band__quote {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--section-x);
  text-align: center;
  border: none;
}
.tagline-band__text {
  font-family: var(--font-sans);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 500;
  font-style: italic;
  color: var(--c-anthrazit);
  text-align: center;
  letter-spacing: -0.012em;
  line-height: 1.4;
  margin: 0 0 20px;
}
.tagline-band__cite {
  display: block;
  font-style: normal;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-mud);
  text-align: center;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen { background: var(--c-bg-creme); }
.section-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.section-intro {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-intro h2 { margin-bottom: 16px; }

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.leistungen__grid .l-card:nth-child(1) { grid-column: span 8; }
.leistungen__grid .l-card:nth-child(2) { grid-column: span 4; }
.leistungen__grid .l-card:nth-child(3) { grid-column: span 4; }
.leistungen__grid .l-card:nth-child(4) { grid-column: span 4; }
.leistungen__grid .l-card:nth-child(5) { grid-column: span 4; }

.l-card {
  background: var(--c-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}
.l-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  border-color: var(--c-beige);
}
.l-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-mud);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAFAF8;
  flex-shrink: 0;
}
.l-card h3 { color: var(--c-anthrazit); }
.l-card p {
  color: var(--c-mid);
  font-size: 15px;
  margin: 0;
}
.l-card--featured { background: var(--c-anthrazit); border-color: transparent; }
.l-card--featured h3 { color: #FAFAF8; }
.l-card--featured p { color: rgba(250, 250, 248, 0.72); }
.l-card--featured .l-card__icon { background: rgba(255, 255, 255, 0.15); }

@media (max-width: 1100px) {
  .leistungen__grid .l-card { grid-column: span 6; }
  .leistungen__grid .l-card:nth-child(1) { grid-column: span 12; }
}
@media (max-width: 700px) {
  .leistungen__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .leistungen__grid::-webkit-scrollbar { display: none; }
  .leistungen__grid .l-card,
  .leistungen__grid .l-card:nth-child(1),
  .leistungen__grid .l-card:nth-child(2),
  .leistungen__grid .l-card:nth-child(3),
  .leistungen__grid .l-card:nth-child(4),
  .leistungen__grid .l-card:nth-child(5) {
    grid-column: auto;
    flex: 0 0 82%;
    scroll-snap-align: start;
    min-width: 0;
  }
  .l-card { padding: 28px 22px; }
  .leistungen__grid::after { content: ''; flex: 0 0 4px; }
}

/* ============================================================
   PROJEKTABWICKLUNG
   ============================================================ */
.projekt-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.projekt-steps { padding: var(--section-y) var(--section-x); }
.projekt-steps .section-intro { margin-bottom: 48px; }

.step-list { display: flex; flex-direction: column; gap: 0; }

.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: all 0.3s;
  align-items: flex-start;
}
.step-item:hover .step-item__title { color: var(--c-mud); }
.step-item__chev {
  margin-left: auto;
  color: var(--c-mud);
  padding-top: 4px;
  transition: transform 0.35s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-item.active .step-item__chev { transform: rotate(180deg); }
.step-item:first-child { border-top: 1px solid rgba(0, 0, 0, 0.07); }

.step-item__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-beige);
  padding-top: 4px;
  min-width: 30px;
  transition: color 0.3s;
}
.step-item.active .step-item__num { color: var(--c-mud); }

.step-item__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-anthrazit);
  margin-bottom: 0;
  transition: margin-bottom 0.3s;
}
.step-item__reveal {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease, opacity 0.4s ease, margin-top 0.3s;
  opacity: 0;
  margin: 0;
}
.step-item__reveal-inner { min-height: 0; overflow: hidden; }
.step-item.active .step-item__reveal {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 10px;
}
.step-item__text { font-size: 15px; color: var(--c-mid); margin: 0; }

.step-item__img-mobile { display: none; }
@media (max-width: 900px) {
  .step-item__img-mobile {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--r-md);
    overflow: hidden;
    margin-top: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  }
  .step-item__img-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.projekt-image-col {
  position: relative;
  padding: var(--section-y) clamp(20px, 4vw, 60px) var(--section-y) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projekt-image-col__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}
.projekt-image-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.8s ease;
}
@media (max-width: 900px) {
  .projekt-wrap { grid-template-columns: 1fr; }
  .projekt-image-col { display: none; }
}

/* ============================================================
   PROJEKTE
   ============================================================ */
.projekte { background: var(--c-bg-dark); }
.projekte .section-intro h2,
.projekte .section-intro p { color: #FAFAF8; }
.projekte .section-intro p { color: rgba(250, 250, 248, 0.65); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.proj-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.proj-card__img-wrap {
  position: relative;
  padding-top: 65%;
  overflow: hidden;
}
.proj-card__img-wrap img,
.proj-card__img-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.proj-card:hover .proj-card__img-wrap img,
.proj-card:hover .proj-card__img-wrap video { transform: scale(1.05); }

.proj-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  pointer-events: none;
}
.proj-card__title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #FAFAF8;
  margin-bottom: 4px;
}
.proj-card__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
}

.proj-card__dots { display: flex; gap: 5px; margin-top: 8px; pointer-events: auto; }
.proj-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s, transform 0.2s;
}
.proj-card__dot.active {
  background: #FAFAF8;
  transform: scale(1.3);
}

.proj-card__arrows {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.proj-card:hover .proj-card__arrows {
  opacity: 1;
  pointer-events: all;
}
.proj-card__arr-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FAFAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.proj-card__arr-btn:hover { background: rgba(255, 255, 255, 0.4); }

.proj-eigenprojekte {
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
}
.proj-eigenprojekte h3 { color: #FAFAF8; margin: 0; }
.proj-eigenprojekte p {
  color: rgba(250, 250, 248, 0.6);
  font-size: 15px;
  margin: 4px 0 0;
}

@media (max-width: 900px) {
  .proj-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 24px;
    margin: 56px -20px 0;
    scrollbar-width: none;
  }
  .proj-grid::-webkit-scrollbar { display: none; }
  .proj-grid .proj-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    min-width: 0;
  }
  .proj-card__arrows {
    top: 12px;
    left: auto;
    right: 12px;
    transform: none;
    padding: 0;
    gap: 8px;
    justify-content: flex-end;
    opacity: 1;
    pointer-events: all;
  }
  .proj-card__arr-btn {
    width: 32px;
    height: 32px;
    background: rgba(10, 10, 10, 0.55);
    border-color: rgba(255, 255, 255, 0.25);
  }
}

/* ============================================================
   ZAHLEN & FAKTEN
   ============================================================ */
.zahlen { background: var(--c-bg-creme); }
.zahlen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.zahlen__item {
  padding: 56px 40px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--c-bg-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s;
}
.zahlen__item:hover { background: var(--c-anthrazit); }
.zahlen__item:hover .stat-num,
.zahlen__item:hover p { color: #FAFAF8 !important; }
.zahlen__item:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.zahlen__item:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }

@media (max-width: 700px) {
  .zahlen__grid { grid-template-columns: 1fr; }
  .zahlen__item:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .zahlen__item:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg); }
}

/* ============================================================
   ÜBER ROBIN
   ============================================================ */
.ueber {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: var(--c-bg-light);
}
.ueber__photo { position: relative; overflow: hidden; }
.ueber__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  top: -7%;
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}
.ueber__text {
  padding: var(--section-y) var(--section-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.ueber__text h2 { margin-bottom: 0; }
.ueber__text p { color: var(--c-mid); }
.ueber__text p strong { color: var(--c-anthrazit); font-weight: 600; }

@media (max-width: 900px) {
  .ueber { grid-template-columns: 1fr; }
  .ueber__photo { height: 400px; position: relative; }
  .ueber__photo img { position: absolute; top: 0; height: 100%; }
}

/* ============================================================
   PHOTO BAND
   ============================================================ */
.photo-band {
  position: relative;
  background: var(--c-bg-light);
  padding: 36px 0;
}
.photo-band__viewport {
  height: 340px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.photo-band__viewport::-webkit-scrollbar { display: none; }

.photo-band__track {
  display: flex;
  gap: 28px;
  height: 100%;
  width: max-content;
  padding: 0 14px;
}
.photo-band__item {
  position: relative;
  width: clamp(280px, 22vw, 420px);
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.10);
  scroll-snap-align: start;
}
.photo-band__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.4s;
  pointer-events: none;
}
.photo-band__item:hover::after { background: rgba(0, 0, 0, 0); }
.photo-band__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
}

.photo-band__arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 250, 248, 0.92);
  border: 1px solid rgba(20, 20, 22, 0.08);
  color: var(--c-anthrazit);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
}
.photo-band__arr:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.photo-band__arr--prev { left: clamp(12px, 2vw, 28px); }
.photo-band__arr--next { right: clamp(12px, 2vw, 28px); }

@media (max-width: 700px) {
  .photo-band { padding: 24px 0; }
  .photo-band__viewport { height: 240px; }
  .photo-band__track { gap: 18px; }
  .photo-band__item { width: 66vw; }
  .photo-band__arr { width: 38px; height: 38px; }
  .photo-band__arr--prev { left: 8px; }
  .photo-band__arr--next { right: 8px; }
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--c-bg-dark); }
.kontakt h2 { color: #FAFAF8; }
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 56px;
  max-width: 640px;
}
.kontakt__card {
  padding: 48px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kontakt__card h3 { color: #FAFAF8; }
.kontakt__card p { color: rgba(250, 250, 248, 0.65); }

.kontakt__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 250, 248, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}
.kontakt__link:hover { color: var(--c-mud); }

.kontakt__link-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(250, 250, 248, 0.7);
}

.kontakt__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.kontakt__social {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(250, 250, 248, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.kontakt__social:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FAFAF8;
  transform: translateY(-2px);
}

.kontakt__presse-link {
  margin-top: 24px;
  background: none;
  border: none;
  padding: 0;
  color: rgba(250, 250, 248, 0.7);
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.3s ease, gap 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 4px;
  align-self: flex-start;
  text-decoration: none;
}
.kontakt__presse-link:hover {
  color: #FAFAF8;
  gap: 10px;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 700px) {
  .kontakt__grid { grid-template-columns: 1fr; gap: 24px; }
  .kontakt__card { padding: 28px 22px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-black);
  color: rgba(250, 250, 248, 0.7);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.footer__logo img {
  height: 80px;
  width: auto;
  opacity: 0.9;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.5;
}
.footer__nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px 60px;
}
.footer__nav-group h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}
.footer__nav-group a,
.footer__nav-group button {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0;
  text-align: left;
  transition: color 0.2s;
}
.footer__nav-group a:hover,
.footer__nav-group button:hover { color: #FAFAF8; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   PRESSE PAGE
   ============================================================ */
.presse-page {
  min-height: 100svh;
  background: var(--c-bg-light);
  padding-top: 0;
}
.presse__hero {
  padding: 140px 0 80px;
  background: var(--c-anthrazit);
}
.presse__hero h1 { color: #FAFAF8; }
.presse__hero p { color: rgba(250, 250, 248, 0.7); }

.presse__articles {
  background: var(--c-bg-light);
  padding-top: var(--section-y);
  padding-bottom: 0;
}
.presse__articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.presse__article {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(20, 20, 22, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.presse__article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(20, 20, 22, 0.10);
  border-color: rgba(20, 20, 22, 0.14);
}
.presse__article--disabled { cursor: default; }
.presse__article--disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(20, 20, 22, 0.08);
}
.presse__article--disabled .presse__article-cta {
  color: var(--c-subtle);
  font-weight: 500;
  font-style: italic;
}
.presse__article-img {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
  background: #f4f4f1;
}
.presse__article-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.presse__article:hover .presse__article-img img { transform: scale(1.04); }

.presse__article-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.presse__article-source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mud);
}
.presse__article-title {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0;
  color: var(--c-anthrazit);
  line-height: 1.2;
}
.presse__article-meta {
  font-size: 14px;
  color: var(--c-mid);
}
.presse__article-cta {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-anthrazit);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.presse__article:hover .presse__article-cta { gap: 10px; }

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

.presse__body { padding: var(--section-y) 0; }
.presse__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.presse__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  background: var(--c-mud);
  color: #FAFAF8;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  margin-bottom: 28px;
}
.presse__download-btn:hover {
  background: var(--c-mud-dark);
  transform: translateY(-2px);
}
.presse__kit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.presse__kit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-mid);
}
.presse__kit-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-mud);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .presse__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   404
   ============================================================ */
.error-404 { background: var(--c-bg-creme); min-height: 70vh; padding-top: 180px; }
.error-404__inner { max-width: 560px; text-align: left; }
.error-404 h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.error-404 p { margin-bottom: 32px; }

/* ============================================================
   A11Y WIDGET
   ============================================================ */
.a11y-widget {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 95;
}
.a11y-trigger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-anthrazit);
  color: #FAFAF8;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.a11y-trigger:hover { background: var(--c-mud); transform: scale(1.05); }
.a11y-trigger:focus-visible { outline: 3px solid var(--c-mud); outline-offset: 2px; }

.a11y-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.8rem);
  width: 280px;
  background: #ffffff;
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  padding: 1rem 1rem 0.8rem;
}
.a11y-panel[hidden] { display: none; }

.a11y-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.a11y-panel-head strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--c-anthrazit);
  font-weight: 600;
}
.a11y-close {
  background: none;
  border: 0;
  font-size: 1.4rem;
  color: var(--c-subtle);
  line-height: 1;
  cursor: pointer;
}
.a11y-close:hover { color: var(--c-anthrazit); }

.a11y-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.a11y-row:first-of-type { border-top: 0; padding-top: 0; }
.a11y-label {
  font-size: 0.88rem;
  color: var(--c-mid);
}

.a11y-btn-group {
  display: inline-flex;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.a11y-btn {
  background: #ffffff;
  border: 0;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-sans);
  color: var(--c-mid);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.a11y-btn[aria-pressed="true"] {
  background: var(--c-anthrazit);
  color: #FAFAF8;
}
.a11y-btn + .a11y-btn { border-left: 1px solid rgba(0,0,0,0.08); }

.a11y-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  border: 0;
  border-radius: 100px;
  background: #cdd1d6;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.a11y-toggle[aria-pressed="true"] { background: var(--c-mud); }
.a11y-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.2s;
}
.a11y-toggle[aria-pressed="true"] .a11y-toggle-knob { transform: translateX(18px); }

.a11y-reset {
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.55rem 1rem;
  background: var(--c-bg-creme);
  border: 0;
  border-radius: var(--r-sm);
  color: var(--c-anthrazit);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s;
}
.a11y-reset:hover { background: var(--c-beige); }

@media (max-width: 480px) {
  .a11y-widget { left: 0.6rem; bottom: 0.6rem; }
  .a11y-panel { width: calc(100vw - 1.6rem); max-width: 280px; }
}

/* A11y body classes set via JS / LocalStorage */
html.a11y-font-1 body { font-size: 1.08rem; }
html.a11y-font-2 body { font-size: 1.18rem; }
html.a11y-contrast body {
  filter: contrast(1.18);
}
html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}
