/* ==========================================================================
   BETTR Agency — Homepage
   Design-Tokens und Layout aus dem Claude-Design-Handoff.
   Keine externen Ressourcen: Fonts liegen lokal (DSGVO), keine Trackers.
   ========================================================================== */

/* ---------- Fonts (self-hosted, kein Google-Request) ---------- */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fredoka-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fredoka-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/mulish-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/mulish-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --accent: #fc4005;
  /* Hellere Accent-Variante fuer kleinen Text: erfuellt WCAG AA auf --bg */
  --accent-soft: #ff8a5c;
  --bg: #0c0b0a;
  --bg-band: #0f0e0c;
  --bg-card: #100f0d;
  --bg-card-hover: #14100e;
  --bg-placeholder: #1a1815;
  --text: #f4f1ec;
  --text-2: #c8c3ba;
  --text-3: #b6b1a8;
  --muted: #a39e95;
  --muted-2: #9b968d;
  --muted-3: #8f8a81;
  --muted-4: #7c766c;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.22);
  --radius-card: 18px;
  --radius-lg: 22px;
  --pill: 100px;
  --pad-x: 40px;
  --maxw: 1200px;
  --header-h: 75px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sticky Header darf Anker-Ziele nicht verdecken */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent-soft);
}

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

/* Sichtbarer Fokus fuer Tastaturbedienung (WCAG 2.4.7) */
:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Utilities ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
}

.eyebrow {
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent-soft);
  margin-bottom: 28px;
}

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

.section-title em {
  color: var(--accent);
  font-style: normal;
}

.section {
  padding: clamp(72px, 12vw, 120px) var(--pad-x);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 200;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--pill);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  color: var(--bg);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn--solid {
  background: var(--accent);
  color: var(--bg);
}

.btn--solid:hover {
  background: #ff5a24;
  color: var(--bg);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px var(--pad-x);
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header__logo img {
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  gap: 38px;
  align-items: center;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav a[aria-current='page'] {
  color: var(--accent-soft);
}

.nav__cta {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--pill);
  font-weight: 600;
  transition: background 0.25s ease;
}

.nav__cta:hover {
  background: #ff5a24;
  color: var(--bg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--pad-x) 60px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(252, 64, 5, 0.18), transparent 55%),
    radial-gradient(90% 80% at -10% 100%, rgba(252, 64, 5, 0.1), transparent 60%),
    var(--bg);
}

.hero__grid,
.hero__glow,
.hero__ghost {
  pointer-events: none;
  user-select: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 60% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000 0%, transparent 78%);
}

.hero__glow {
  position: absolute;
  top: -18%;
  right: -8%;
  width: 620px;
  height: 620px;
  max-width: 100vw;
  background: radial-gradient(circle, rgba(252, 64, 5, 0.32), transparent 62%);
  filter: blur(30px);
}

.hero__ghost {
  position: absolute;
  right: -4%;
  bottom: -14%;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 34vw;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.045);
  letter-spacing: -0.04em;
}

.hero > :not(.hero__grid):not(.hero__glow):not(.hero__ghost) {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent-soft);
  margin-bottom: 26px;
}

.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 11vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  max-width: 1100px;
}

.hero__lead {
  margin-top: 34px;
  max-width: 560px;
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.6;
  color: var(--text-3);
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 26s linear infinite;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: 0.02em;
  color: var(--muted-4);
  will-change: transform;
}

.marquee__track i {
  color: var(--accent);
  font-style: normal;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- About ---------- */
.about__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-top: 56px;
}

.about__cols p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
}

.about__cols strong {
  color: var(--text);
}

/* ---------- Talents ---------- */
.talents {
  background: var(--bg-band);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.talents__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.talents__intro {
  max-width: 340px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-2);
}

.talents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.talent-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-placeholder);
  isolation: isolate;
}

.talent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.talent-card:hover img,
.talent-card:focus-visible img {
  transform: scale(1.05);
}

.talent-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.85) 0%, transparent 55%);
}

.talent-card__meta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
}

/* Die Meta-Spans sind inline-Elemente in einem <a> — ohne block stapeln
   sie nicht und die margin-top-Abstaende wirken nicht. */
.talent-card__meta > span {
  display: block;
}

.talent-card__name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3.4vw, 28px);
  letter-spacing: -0.01em;
  color: var(--text);
}

.talent-card__handle {
  margin-top: 6px;
  font-size: 15px;
  color: var(--accent-soft);
  font-weight: 600;
}

.talent-card:hover .talent-card__name {
  color: var(--text);
}

/* ---------- Leistungen ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service {
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease,
    background 0.35s ease;
}

.service:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 64, 5, 0.55);
  background: var(--bg-card-hover);
  box-shadow: 0 18px 40px -18px rgba(252, 64, 5, 0.45);
}

.service__no {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-soft);
}

.service h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 23px;
  margin-top: 18px;
  letter-spacing: -0.01em;
}

.service p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------- Kontakt ---------- */
.contact {
  text-align: center;
}

.contact__inner {
  max-width: 1000px;
  margin-inline: auto;
}

.contact h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25em;
  flex-wrap: wrap;
}

.contact__wordmark {
  height: 0.78em;
  width: auto;
  transform: translateY(0.06em);
}

.contact__lead {
  margin-top: 24px;
  font-size: clamp(17px, 2.2vw, 19px);
  color: var(--text-3);
}

.contact__mail {
  display: inline-block;
  margin-top: 40px;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  overflow-wrap: anywhere;
}

/* ---------- Footer ---------- */
.footer {
  padding: 70px var(--pad-x) 44px;
  border-top: 1px solid var(--line);
}

.footer__top {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__brand img {
  height: 52px;
  width: auto;
}

.footer__tagline {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted-4);
  max-width: 280px;
}

.footer__cols {
  display: flex;
  gap: clamp(28px, 6vw, 64px);
  flex-wrap: wrap;
}

.footer__col h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-4);
  margin-bottom: 14px;
}

.footer__col a,
.footer__col button {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.footer__col a:hover,
.footer__col button:hover {
  color: var(--accent-soft);
}

.footer__bottom {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: #66605a;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom a:hover {
  color: var(--accent-soft);
}

/* ---------- Impressum-Dialog ---------- */
.modal {
  width: min(720px, 100%);
  max-width: 720px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  color: var(--text);
  padding: 44px 44px 48px;
  position: relative;
  margin: 56px auto;
}

.modal::backdrop {
  background: rgba(6, 5, 5, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.modal__eyebrow {
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent-soft);
  margin-bottom: 16px;
}

.modal__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab {
  padding: 12px 24px;
  border-radius: var(--pill);
  font-family: 'Mulish', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text-2);
}

.tab:hover {
  border-color: var(--accent);
  color: var(--text);
}

.tab[aria-selected='true'] {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.imprint h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 24px;
}

.imprint__tag {
  margin-top: 8px;
  font-size: 14px;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}

.imprint__body {
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-2);
  white-space: pre-line;
}

.imprint__body a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  overflow-wrap: anywhere;
}

.imprint details {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 20px;
}

.imprint summary {
  cursor: pointer;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  list-style: none;
}

.imprint summary::-webkit-details-marker {
  display: none;
}

.imprint summary::before {
  content: '+ ';
  color: var(--accent-soft);
}

.imprint details[open] summary::before {
  content: '– ';
}

.imprint details > div {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted-3);
  white-space: pre-line;
}

[hidden] {
  display: none !important;
}

/* ---------- Rechtstext-Seiten ---------- */
.legal {
  max-width: 820px;
  margin-inline: auto;
}

.legal h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.legal h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(21px, 3vw, 27px);
  margin-top: 48px;
  letter-spacing: -0.01em;
}

.legal h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-top: 28px;
}

.legal p,
.legal li {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
}

.legal ul {
  margin-top: 8px;
  padding-left: 22px;
}

.legal li {
  margin-top: 8px;
}

.legal address {
  font-style: normal;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
}

.legal a {
  color: var(--accent-soft);
  border-bottom: 1px solid rgba(255, 138, 92, 0.4);
  overflow-wrap: anywhere;
}

.legal__meta {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted-4);
}

/* Zuruck-Button: setzt die Link-Optik der Rechtstexte bewusst zurueck. */
.legal a.legal__back {
  display: inline-block;
  margin-top: 56px;
  padding: 13px 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.legal a.legal__back:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.error-page__code {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(72px, 18vw, 180px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root {
    --pad-x: 22px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--pad-x) 22px;
    /* Deckend, sonst scheint der Hero-Text durch das geoeffnete Menue. */
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.9);
    font-size: 17px;
  }

  .nav[data-open='false'] {
    display: none;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav__cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: 0;
    padding: 14px 22px;
  }

  .modal {
    padding: 40px 22px 32px;
    margin: 20px auto;
  }

  .talents__head {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 84vh;
    padding-top: 56px;
  }

  .hero__ghost {
    font-size: 46vw;
    bottom: -6%;
  }

  .footer__cols {
    gap: 28px;
    width: 100%;
  }

  .footer__col {
    min-width: 140px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .marquee__track {
    animation: none;
    transform: none;
  }
}

/* ---------- Print ---------- */
@media print {
  .header,
  .marquee,
  .hero__grid,
  .hero__glow,
  .hero__ghost,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
