/* =========================================================
   falkotreptau.com — Personal-Brand One-Pager
   Monochrom (Schwarz/Weiß) · Anton + Outfit · vanilla CSS
   ========================================================= */

:root {
  /* Theme tokens — strikt monochrom */
  --bg:          #0a0a0a;
  --bg-elev:     #141414;
  --text:        #ffffff;
  --text-muted:  rgba(255, 255, 255, 0.62);
  --text-dim:    rgba(255, 255, 255, 0.40);
  --line:        rgba(255, 255, 255, 0.12);
  --line-hi:     rgba(255, 255, 255, 0.30);

  --font-display: 'PolySans Median', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --maxw:      660px;
  --maxw-wide: 960px;
  --gap-section: clamp(4.5rem, 11vw, 8rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 2rem;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

::selection { background: #ffffff; color: #0a0a0a; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Background atmosphere (monochrom) ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(720px 480px at 50% -8%, rgba(255, 255, 255, 0.06), transparent 62%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(125% 125% at 50% 28%, transparent 56%, rgba(0, 0, 0, 0.6) 100%);
}

/* ---------- Inline-Highlight (ein Wort pulst Grau→Weiß) ---------- */
.hl {
  color: var(--text);
  animation: hlPulse 3s ease-in-out infinite;
}
@keyframes hlPulse {
  0%, 100% { color: var(--text-muted); text-shadow: none; }
  50%      { color: #ffffff; text-shadow: 0 0 16px rgba(255, 255, 255, 0.4); }
}

/* ---------- BlurText: Headline-Wörter ziehen aus Unschärfe scharf ---------- */
.bw {
  display: inline-block;
  filter: blur(12px);
  opacity: 0;
  transform: translateY(-20px);
  transition: filter 0.7s ease-out, opacity 0.7s ease-out, transform 0.7s ease-out;
}
.bw-in .bw { filter: blur(0); opacity: 1; transform: none; }

/* ---------- Name-Reveal: Zeilen gleiten solide von links/rechts zusammen ---------- */
.namehero__name { display: block; }
.nm-inner { display: block; }
.js .nm-inner {
  transform: translateX(-118%);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.js .namehero__name:nth-of-type(2) .nm-inner { transform: translateX(118%); }
.js .namehero__stage.rise-in .nm-inner { transform: translateX(0); }
.js .namehero__stage.rise-in .namehero__name:nth-of-type(2) .nm-inner { transition-delay: 0.06s; }
.js .namehero__portrait { opacity: 0; transition: opacity 0.6s var(--ease) 0.35s; }
.js .namehero.portrait-in .namehero__portrait { opacity: 1; }

/* ---------- Text-Gradient-Scroll: Bio-Wörter hellen beim Scrollen auf ---------- */
.gw { opacity: 0.18; transition: opacity 0.2s linear; }
.gw--b { color: var(--text); font-weight: 600; }

/* ---------- Standort-Tag im Footer ---------- */
.footer__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer__loc[hidden] { display: none; }
.loc-tag__dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  flex: 0 0 auto;
}
.loc-tag__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ffffff;
  animation: locPing 2.2s ease-out infinite;
}
@keyframes locPing {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* ---------- Layout helpers ---------- */
main { width: 100%; }

.hero,
.section {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { margin-top: var(--gap-section); }
.projects { max-width: var(--maxw-wide); }

/* ---------- Kicker label ---------- */
.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.kicker::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--line-hi);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: clamp(2.5rem, 7vh, 4.5rem);
  padding-bottom: clamp(2.5rem, 7vh, 4rem);
}

.hero__portrait {
  width: clamp(140px, 30vw, 200px);
  aspect-ratio: 1 / 1;
  margin-bottom: 2.4rem;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 50%;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.7rem, 2.4vw, 0.82rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 9vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero__sub {
  max-width: 31rem;
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  color: var(--text-muted);
  margin-bottom: 2.6rem;
}
.hero__sub strong { color: var(--text); font-weight: 500; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* ---------- Name-Hero (portfolio-hero) ---------- */
.namehero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
  gap: clamp(0.6rem, 1.8vh, 1.2rem);
  overflow: hidden;
}
.namehero__stage {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.82;
}
.namehero__name {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 22vw, 13rem);
  text-transform: uppercase;
  letter-spacing: -0.045em;
  color: var(--text);
  white-space: nowrap;
}
.namehero__portrait {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: clamp(80px, 12vw, 120px);
  aspect-ratio: 0.62 / 1;
}
.namehero__portrait-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.85);
}
.namehero__portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 20%;
}
.verified {
  position: absolute;
  bottom: 4%;
  right: -2%;
  width: 38%;
  max-width: 40px;
  aspect-ratio: 1;
  z-index: 6;
  line-height: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
}
.verified svg { display: block; width: 100%; height: 100%; }
.namehero__tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.82rem, 2.4vw, 1.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.namehero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.namehero__scroll:hover { color: var(--text); }
.namehero__scroll-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.namehero__scroll svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* ---------- Statement (runterscrollen → animierte Headline) ---------- */
.statement {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gap-section) 1.25rem;
}
.statement__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7.5vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
}
.statement__headline .sc { transition: opacity 0.18s linear; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.btn--primary { background: #ffffff; color: #0a0a0a; }
.btn--primary:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.88); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-hi); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--text); background: rgba(255, 255, 255, 0.05); }
.btn:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }

/* ---------- BIO ---------- */
.bio__text {
  font-size: clamp(1.3rem, 4vw, 1.85rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.bio__text strong { color: var(--text); font-weight: 600; }

/* ---------- PROJECT CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.9rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(440px 220px at 0% 0%, rgba(255, 255, 255, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-hi); }
.card:hover::before { opacity: 1; }
.card:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }

.card--stealth {
  cursor: default;
  opacity: 0.48;
  pointer-events: none;
}
.card--stealth .card__name { filter: blur(7px); user-select: none; }
.card--stealth .card__desc { filter: blur(4px); user-select: none; }

.card__soon {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.28rem 0.6rem;
}

.card__tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.card__desc { color: var(--text-muted); font-size: 1rem; }
.card__cta {
  margin-top: 0.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.card:hover .card__cta { color: var(--text); gap: 0.8rem; }

/* ---------- SOCIALS ---------- */
.social-list { list-style: none; }
.social-list li { border-top: 1px solid var(--line); }
.social-list li:last-child { border-bottom: 1px solid var(--line); }

.social-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 0.25rem;
  transition: padding 0.3s var(--ease);
}
.social__net {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 5.4vw, 2.3rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.social__handle {
  font-size: 0.95rem;
  color: var(--text-dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s var(--ease);
}
.social__arrow { display: inline-block; transition: transform 0.3s var(--ease); }

.social-list a:hover .social__handle { color: var(--text); }
.social-list a:hover .social__arrow { transform: translate(3px, -3px); }
.social-list a:focus-visible { outline: 2px solid #ffffff; outline-offset: 4px; border-radius: 6px; }

/* ---------- NEWSLETTER ---------- */
.newsletter { text-align: center; }
.newsletter__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 7.5vw, 3.8rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.newsletter__sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  max-width: 33rem;
  margin: 0 auto 2.1rem;
}

.nl-form { max-width: 30rem; margin-inline: auto; }
.nl-form__row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.nl-form__input {
  flex: 1 1 240px;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--line-hi);
  border-radius: 100px;
  padding: 0.95rem 1.4rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nl-form__input::placeholder { color: var(--text-dim); }
.nl-form__input:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}
.nl-form__btn { flex: 0 0 auto; }
.nl-form__btn[disabled] { opacity: 0.55; cursor: progress; transform: none; }

/* Honeypot — visuell entfernt */
.nl-form__trap {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

.nl-form__status {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--text-muted);
}
.nl-form__status.is-ok  { color: #ffffff; }
.nl-form__status.is-err { color: var(--text-dim); }

.newsletter__direct {
  margin-top: 1.9rem;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.newsletter__direct a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--line-hi);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.newsletter__direct a:hover { color: var(--text); border-color: var(--text); }

/* ---------- FOOTER ---------- */
.footer {
  max-width: var(--maxw);
  margin: var(--gap-section) auto 0;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer__copy { color: var(--text-dim); font-size: 0.85rem; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a {
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color 0.3s var(--ease);
}
.footer__legal a:hover { color: var(--text); }

/* ---------- Zentrierte Sektionen (Newsletter bleibt linksbündig) ---------- */
.bio,
.projects,
.socials { text-align: center; }
.bio .kicker,
.projects .kicker,
.socials .kicker,
.newsletter .kicker { justify-content: center; }
.card { align-items: center; text-align: center; }
.social-list a { justify-content: center; }
.footer { justify-content: center; text-align: center; }

/* ---------- Contact Modal ---------- */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modalFade 0.25s var(--ease);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #111111;
  border: 1px solid var(--line-hi);
  border-radius: 20px;
  padding: clamp(1.6rem, 5vw, 2.4rem);
  max-height: calc(100svh - 3rem);
  overflow-y: auto;
  animation: modalDialog 0.32s var(--ease);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalDialog {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 0.8rem;
  right: 1.1rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.modal__close:hover { color: var(--text); }
.modal__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 4px; }

.modal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.5rem;
}
.modal__sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.6rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.field .req { color: var(--text); }
.field .opt { color: var(--text-dim); font-weight: 400; }
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-hi);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.contact-form__btn { margin-top: 0.5rem; justify-content: center; }
.contact-form__btn[disabled] { opacity: 0.55; cursor: progress; }
.contact-form__status {
  font-size: 0.88rem;
  min-height: 1.1em;
  margin-top: 0.2rem;
  color: var(--text-muted);
}
.contact-form__status.is-ok  { color: #ffffff; }
.contact-form__status.is-err { color: var(--text-dim); }

/* ---------- Reveal animation (nur wenn JS aktiv → No-JS-sicher) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}
.js .reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .cards { grid-template-columns: 1fr 1fr; }

  /* Desktop: Portrait über dem Namen (in normalem Flex-Flow, kein Overlap) */
  .namehero {
    gap: clamp(1rem, 2.2vh, 1.6rem);
  }
  .namehero__portrait {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: clamp(90px, 9vw, 130px);
    will-change: transform;
  }
  .namehero__stage {
    position: relative;
  }
}

/* Mobile: Bio-Text sofort sichtbar (kein Scroll-Fade) */
@media (max-width: 719px) {
  .gw { opacity: 1; }
}

/* Mobile Hero: Portrait als Vollbild-Hintergrund */
@media (max-width: 719px) {
  .namehero {
    justify-content: flex-end;
    align-items: stretch;
    padding: 0 0 5rem;
    gap: 0;
  }
  /* Gradient-Overlay für Lesbarkeit */
  .namehero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      transparent 25%,
      rgba(10,10,10,0.45) 52%,
      rgba(10,10,10,0.88) 70%,
      #0a0a0a 82%
    );
  }
  /* Portrait füllt den ganzen Hero */
  .namehero__portrait {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    z-index: 1;
  }
  .namehero__portrait-img {
    border-radius: 0;
    box-shadow: none;
    height: 100%;
  }
  .namehero__portrait-img img {
    height: 100%;
    object-position: 50% 10%;
    image-rendering: smooth;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  }
  .verified { display: none; }
  /* Stage über dem Gradient */
  .namehero__stage {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.25rem 0.3rem;
    line-height: 0.88;
  }
  /* Tagline direkt unter TREPTAU */
  .namehero__tagline {
    position: relative;
    z-index: 3;
    padding: 0.55rem 1.25rem 0;
    margin-bottom: 0;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
  /* Scroll-Indikator kleiner */
  .namehero__scroll {
    z-index: 3;
    bottom: 1.2rem;
    gap: 0.35rem;
  }
  .namehero__scroll-label { font-size: 0.55rem; }
  .namehero__scroll svg { width: 16px; height: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hl { animation: none; color: #ffffff; }
  .bw { opacity: 1; filter: none; transform: none; }
  .gw { opacity: 1; }
  .js .nm-inner { transform: none; }
  .js .namehero__portrait { opacity: 1; }
  .loc-tag__dot::after { display: none; }
  .namehero__scroll svg { animation: none; }
}
