/* ==========================================================================
   BlueHazeAudio — Theme "Blue Haze"
   Tiefes Mitternachtsblau, Dunst-Gradienten, Studio-Atmosphäre
   ========================================================================== */

:root {
  --bg:        #05080f;
  --bg-2:      #080d18;
  --surface:   #0c1220;
  --surface-2: #101829;
  --line:      rgba(140, 170, 225, .13);
  --line-str:  rgba(140, 170, 225, .26);

  --text:      #e9eefa;
  --muted:     #93a2bf;
  --muted-2:   #6f7f9c;

  --blue:      #4f8ff7;
  --blue-soft: #7bb0ff;
  --violet:    #8b6ff5;
  --glow:      rgba(79, 143, 247, .35);

  --display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1160px;
  --r:    16px;
  --r-lg: 24px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 6.2vw, 4.6rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 3.8vw, 3rem); }
h3 { font-size: 1.16rem; letter-spacing: -.015em; }
p  { margin: 0 0 1.1em; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* Feines Filmkorn über allem */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-family: var(--display);
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 30px -10px var(--glow);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, filter .25s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -12px var(--glow);
  filter: brightness(1.08);
}
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-str);
  color: var(--text);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(123, 176, 255, .08);
  border-color: var(--blue);
  box-shadow: none;
  filter: none;
}

.btn-sm { padding: 11px 20px; font-size: .9rem; }
.btn-full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 8, 15, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.02em;
}
.brand-text span { color: var(--blue-soft); }

.brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.brand-mark i {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--blue-soft), var(--violet));
  animation: bounce 1.5s ease-in-out infinite;
}
.brand-mark i:nth-child(1) { height: 9px;  animation-delay: 0s;   }
.brand-mark i:nth-child(2) { height: 18px; animation-delay: .18s; }
.brand-mark i:nth-child(3) { height: 13px; animation-delay: .36s; }
.brand-mark i:nth-child(4) { height: 7px;  animation-delay: .54s; }

@keyframes bounce {
  0%, 100% { transform: scaleY(.55); }
  50%      { transform: scaleY(1.25); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  font-size: .95rem;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .btn { color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  margin: 0 auto;
  background: var(--text);
  transition: transform .25s, opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 22px;
  background: rgba(5, 8, 15, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.05rem;
}
.mobile-menu a:last-child { border-bottom: 0; color: var(--blue-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  padding: 168px 0 130px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(79,143,247,.16), transparent 70%),
    linear-gradient(180deg, #060a13 0%, var(--bg) 100%);
}

.haze {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.haze-1 {
  width: 620px; height: 620px;
  top: -180px; left: -160px;
  background: radial-gradient(circle, rgba(79,143,247,.30), transparent 68%);
  animation: drift 22s ease-in-out infinite alternate;
}
.haze-2 {
  width: 560px; height: 560px;
  top: 60px; right: -180px;
  background: radial-gradient(circle, rgba(139,111,245,.26), transparent 68%);
  animation: drift 27s ease-in-out infinite alternate-reverse;
}
.haze-3 {
  width: 700px; height: 700px;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79,143,247,.20), transparent 68%);
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 50px) scale(1.14); }
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 26px;
  padding: 8px 18px 8px 14px;
  border: 1px solid var(--line-str);
  border-radius: 999px;
  background: rgba(123, 176, 255, .07);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--text);
}
.pill-solid { background: rgba(5, 8, 15, .5); }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 0 0 rgba(123,176,255,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,176,255,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(123,176,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,176,255,0); }
}

.hero h1 {
  background: linear-gradient(170deg, #ffffff 25%, #a9c4ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 640px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--muted);
}
.lead-sm { font-size: 1.1rem; color: var(--text); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 62px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-facts strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--blue-soft);
}
.hero-facts span {
  font-size: .88rem;
  color: var(--muted-2);
}

/* Equalizer am Hero-Fuß */
.eq {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 90px;
  opacity: .3;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.eq i {
  width: 4px;
  height: 14px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--blue-soft), rgba(139,111,245,.15));
  transform-origin: bottom;
  animation: eq 1.6s ease-in-out infinite;
}
.eq i:nth-child(3n)   { animation-duration: 2.1s; }
.eq i:nth-child(4n)   { animation-duration: 1.3s; }
.eq i:nth-child(5n)   { animation-duration: 2.6s; }
.eq i:nth-child(odd)  { animation-delay: -.4s; }
.eq i:nth-child(7n)   { animation-delay: -1.1s; }
@keyframes eq {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(3.6); }
}

/* ---------- Laufband ---------- */
.marquee {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: slide 38s linear infinite;
  font-family: var(--display);
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}
.marquee-track span:nth-child(even) { color: var(--blue); }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: 108px 0;
}
.section-alt { background: var(--bg-2); }

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-head { max-width: 720px; margin-bottom: 58px; }
.section-sub  { color: var(--muted); max-width: 620px; }

/* ---------- Karten (Leistungen) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface), rgba(12,18,32,.4));
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, background .3s;
}
.card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 170px; height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,143,247,.22), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-str);
  background: linear-gradient(160deg, var(--surface-2), rgba(12,18,32,.5));
}
.card:hover::before { opacity: 1; }

.card-num {
  display: block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--blue);
}
.card p { color: var(--muted); font-size: .97rem; }
.card ul {
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.card li {
  position: relative;
  padding-left: 20px;
  font-size: .9rem;
  color: var(--muted-2);
  line-height: 2.1;
}
.card li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 7px; height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

/* ---------- Split (Vorteile) ---------- */
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 68px;
  align-items: start;
}
.split-text { position: sticky; top: 110px; }

.benefits { display: grid; gap: 16px; }
.benefit {
  display: flex;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color .3s, background .3s;
}
.benefit:hover { border-color: var(--line-str); background: var(--surface-2); }
.benefit-ic {
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(79,143,247,.18), rgba(139,111,245,.14));
  border: 1px solid var(--line-str);
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--blue-soft);
}
.benefit h3 { margin-bottom: .35em; }
.benefit p  { margin: 0; font-size: .95rem; color: var(--muted); }

/* ---------- Zitatband ---------- */
.quote-band {
  position: relative;
  z-index: 2;
  padding: 92px 0;
  text-align: center;
  background:
    radial-gradient(700px 300px at 50% 50%, rgba(139,111,245,.13), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-band blockquote {
  max-width: 860px;
  margin: 0 auto 18px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.quote-by {
  margin: 0;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--muted-2);
}

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color .3s, transform .3s;
}
.step:hover { border-color: var(--line-str); transform: translateY(-4px); }
.step-n {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-str);
  background: rgba(79,143,247,.1);
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue-soft);
}
.step p { margin: 0; font-size: .95rem; color: var(--muted); }
.step-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(150deg, rgba(79,143,247,.14), rgba(139,111,245,.08));
  border-color: var(--line-str);
}
.step-cta .btn { margin-top: 18px; align-self: flex-start; }

/* ---------- Zielgruppe / Studio ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.aud {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--blue);
  border-radius: 4px var(--r) var(--r) 4px;
  background: var(--surface);
}
.aud p { margin: 0; font-size: .95rem; color: var(--muted); }

.studio-note {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(79,143,247,.12), transparent 70%),
    var(--surface);
}
.studio-note p { margin: 0; color: var(--muted); }
.studio-stats { display: grid; gap: 18px; }
.studio-stats div {
  padding-left: 16px;
  border-left: 1px solid var(--line-str);
}
.studio-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--blue-soft);
}
.studio-stats span { font-size: .87rem; color: var(--muted-2); }

/* ---------- Über mich ---------- */
.about {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: start;
}
.about-text p { color: var(--muted); }
.about-text .lead-sm { color: var(--text); }

.vita {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  position: sticky;
  top: 110px;
}
.vita h3 {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.vita-list { margin: 0; padding: 0; list-style: none; }
.vita-list li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.vita-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.vita-list span {
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-soft);
  padding-top: 2px;
}
.vita-list p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.55; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  z-index: 2;
  padding: 104px 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--line);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { margin-bottom: .4em; }
.cta-band > .wrap > p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
}
.cta-band .hero-cta { justify-content: center; }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-items {
  display: grid;
  gap: 2px;
  margin-top: 36px;
}
.contact-item {
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left .25s, border-color .25s;
}
.contact-item:last-child { border-bottom: 1px solid var(--line); }
a.contact-item:hover { padding-left: 10px; border-color: var(--blue); }
.ci-label {
  display: block;
  margin-bottom: 4px;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.ci-value {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.5;
}

.contact-form {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: .97rem;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79,143,247,.16);
}
.field input::placeholder,
.field textarea::placeholder { color: #55627c; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field option { background: var(--surface); color: var(--text); }

.form-hint {
  margin: 14px 0 0;
  font-size: .82rem;
  color: var(--muted-2);
  text-align: center;
}
.form-hint a { color: var(--blue-soft); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  padding: 70px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.foot-claim {
  margin: 16px 0 0;
  font-size: .92rem;
  color: var(--muted-2);
}
.foot-nav { display: flex; flex-wrap: wrap; gap: 26px; }
.foot-nav a {
  font-size: .92rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.foot-nav a:hover { color: var(--text); }

.imprint { padding: 44px 0 0; }
.imprint h2 {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.imprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.imprint-grid p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--muted);
}
.imprint-grid strong { color: var(--text); }
.imprint-grid a { color: var(--blue-soft); text-decoration: none; }
.imprint-grid a:hover { text-decoration: underline; }
.imprint-note {
  margin: 26px 0 0;
  max-width: 780px;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--muted-2);
}
.copy {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .84rem;
  color: var(--muted-2);
}

/* ---------- Reveal-Animation ---------- */
/* Ohne JS bleibt alles sichtbar — nur mit .js wird animiert eingeblendet */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .09s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .27s; }
.delay-4 { transition-delay: .36s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split, .about, .contact, .studio-note {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-text, .vita { position: static; }
  .studio-note { padding: 32px 26px; }
}

@media (min-width: 801px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 800px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { padding: 130px 0 100px; }
  .section { padding: 78px 0; }
  .hero-facts { gap: 28px; margin-top: 46px; }
  .hero-facts > div { min-width: 120px; }
  .quote-band, .cta-band { padding: 72px 0; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .btn { width: 100%; }
  .btn-sm, .step-cta .btn { width: auto; }
  .hero-cta { flex-direction: column; }
  .card, .step, .aud, .contact-form { padding: 26px 22px; }
  .vita-list li { grid-template-columns: 1fr; gap: 3px; }
}

/* ---------- Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Fokus / Selektion ---------- */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: rgba(79,143,247,.32); color: #fff; }
