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

html,
body {
  height: 100%;
  margin: 0;
}

html {
  min-height: 100%;
  min-height: -webkit-fill-available;
  color-scheme: dark;
  /* Schwarz als Fläche hinter den Layern (Overscroll / Safe Area); Verläufe darüber */
  background-color: #000;
  background-image:
    radial-gradient(
      circle min(175vmin, 1900px) at 50% clamp(200px, 31vh, 380px),
      rgba(172, 219, 244, 0.62) 0%,
      rgba(172, 219, 244, 0.26) 15%,
      rgba(172, 219, 244, 0.07) 28%,
      rgba(172, 219, 244, 0.02) 40%,
      transparent 58%
    ),
    linear-gradient(
      180deg,
      #000 0%,
      #000 66.66%,
      #404040 100%
    );
  background-attachment: fixed, fixed;
}

body {
  min-height: 100%;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, sans-serif;
  background: transparent;
  color: #f2f2f2;
  padding-bottom: 2.75rem;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0 2rem;
}

.hero-wrap {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.65rem;
  background: transparent;
}

.hero-title {
  display: block;
  max-width: min(100%, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}

/* Smartphone Hoch/Quer: Titel über dem Hero (kein extra Block im Fluss). */
@media (max-width: 640px),
  (max-width: 926px) and (max-height: 460px) and (orientation: landscape) {
  .hero-title-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    margin-bottom: 0;
    padding: 0 0.5rem;
    pointer-events: none;
    background: none;
    justify-content: center;
  }

  .hero-title {
    max-height: min(24vw, 140px);
    max-width: min(100%, 92vw);
  }
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 900px);
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  container-type: size;
  container-name: hero;
  --kitt-strip-h: 66px;
  /* Y (waagerechter Balken): senkrechte Bewegung; X (seitlich): andere Periode + Delay → nicht parallel */
  --scan-dur-y: 3s;
  --scan-dur-x: 4.2s;
  --scan-delay-x: 0.55s;
  /* Bildausschnitt leicht nach rechts (Kopf zentrieren); Portrait überschreibt stärker */
  --hero-pos-x: 42%;
  --hero-pan-x: 3%;
}

.hero__bw,
.hero__bw-blur,
.hero__scan-fill {
  background-position: var(--hero-pos-x) center;
  transform: translateX(var(--hero-pan-x));
}

.hero__bw {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__bw-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/hero_blur.png");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
}

.hero__bw-blur--on {
  opacity: 1;
}

/*
 * Farbstreifen: linear alternate; X und Y mit unterschiedlicher Dauer + X verzögert,
 * damit die Kreuzung im Zeitverlauf wandert (nicht dauernd parallel).
 */
.hero__scan {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  box-sizing: border-box;
}

.hero__scan--x {
  top: 0;
  left: 0;
  width: var(--kitt-strip-h);
  height: 100cqh;
  z-index: 1;
  animation: scan-x-window var(--scan-dur-x) linear var(--scan-delay-x) infinite
    alternate;
}

.hero__scan--y {
  top: 0;
  left: 0;
  right: 0;
  height: var(--kitt-strip-h);
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  animation: scan-y-window var(--scan-dur-y) linear infinite alternate;
}

.hero__scan-fill {
  position: absolute;
  background-image: url("../images/hero_color.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__scan-fill--x {
  top: 0;
  width: 100cqi;
  height: 100cqh;
  animation: scan-x-fill var(--scan-dur-x) linear var(--scan-delay-x) infinite alternate;
}

.hero__scan-fill--y {
  left: 0;
  width: 100%;
  height: 100cqh;
  animation: scan-y-fill var(--scan-dur-y) linear infinite alternate;
}

@keyframes scan-y-window {
  from {
    top: 0;
  }
  to {
    top: calc(100cqh - var(--kitt-strip-h));
  }
}

@keyframes scan-y-fill {
  from {
    top: 0;
  }
  to {
    top: calc(var(--kitt-strip-h) - 100cqh);
  }
}

@keyframes scan-x-window {
  from {
    left: 0;
  }
  to {
    left: calc(100cqi - var(--kitt-strip-h));
  }
}

@keyframes scan-x-fill {
  from {
    left: 0;
  }
  to {
    left: calc(var(--kitt-strip-h) - 100cqi);
  }
}

@media (max-width: 520px) {
  .hero {
    aspect-ratio: 4 / 3;
    max-height: 55vh;
    --kitt-strip-h: 40px;
    --scan-dur-y: 2.65s;
    --scan-dur-x: 3.75s;
    --scan-delay-x: 0.45s;
    --hero-pos-x: 34%;
    --hero-pan-x: 3.5%;
  }
}

/* Smartphone Hochkant: mehr Luft oben/unten, Hero+Nav weiter unten; Titel nicht beschneiden
   (kein overflow-x auf .hero-wrap — sonst wird overflow-y zu auto und schneidet den absoluten Titel) */
@media (max-width: 640px) and (orientation: portrait) {
  .page {
    padding-top: 2.25rem;
    padding-bottom: 1.75rem;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero-wrap {
    margin-top: 1.25rem;
    padding-top: 0;
  }

  .hero-title-wrap {
    top: -0.45rem;
    padding: 0 0.35rem;
  }

  .hero-title {
    max-height: min(28vw, 162px);
  }

  .hero {
    margin-top: 1.35rem;
    max-height: min(68vh, 720px);
    width: 117%;
    margin-left: -10%;
    --hero-pos-x: 18%;
    --hero-pan-x: 4.5%;
  }
}

/* Smartphone Querformat: schmale Streifen; Scroll erlauben damit Safari/Chrome die UI zuerst einfahren */
@media (max-width: 926px) and (max-height: 460px) and (orientation: landscape) {
  html {
    height: auto;
    min-height: 100%;
    min-height: 100svh;
  }

  body {
    height: auto;
    min-height: 100%;
    min-height: 100svh;
  }

  .page {
    min-height: calc(100svh + 48px);
    justify-content: flex-start;
    padding-top: 0.65rem;
    box-sizing: border-box;
  }

  .hero {
    --kitt-strip-h: 40px;
    --scan-dur-y: 2.65s;
    --scan-dur-x: 3.75s;
    --scan-delay-x: 0.45s;
    --hero-pos-x: 30%;
    --hero-pan-x: 4%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-title-wrap {
    position: absolute;
    top: clamp(-2rem, -1.25vw, -0.75rem);
    left: 0;
    right: 0;
    z-index: 6;
    margin-bottom: 0;
    padding: 0 0.5rem;
    pointer-events: none;
    background: transparent;
  }

  .hero-title {
    max-width: min(100%, 720px);
  }

  .hero__bw,
  .hero__bw-blur,
  .hero__scan-fill {
    background-position: var(--hero-pos-x) top;
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .hero-title-wrap {
    top: 0.15rem;
  }
}

/* Tablet / iPad: Hero-Block 80 %; gesamter Block etwas nach oben; Footer-Abstand */
@media (min-width: 641px) and (max-width: 1366px),
  ((hover: none) and (pointer: coarse) and (min-width: 641px)) {
  .page {
    justify-content: flex-start;
    padding-top: 0.5rem;
    padding-inline: clamp(0.75rem, 2.5vw, 1.5rem);
    padding-bottom: 1.5rem;
    box-sizing: border-box;
    min-height: 100%;
    min-height: 100dvh;
  }

  .hero-wrap {
    width: 80%;
    max-width: 960px;
    margin: -4.5vh auto 0;
  }

  .hero-title-wrap {
    top: 1.25rem;
  }

  .hero__bw,
  .hero__bw-blur,
  .hero__scan-fill {
    background-position: var(--hero-pos-x) top;
  }

  /* Safari/iPad: Panel per top/bottom statt %‑calc (96vh‑Fallback sonst aktiv) */
  .page-dialog {
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
  }

  .page-dialog__panel {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 3rem);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 5rem);
    left: max(1rem, env(safe-area-inset-left, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    width: auto;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    transform: none;
    max-height: none;
    height: auto;
    align-self: auto;
    flex-shrink: 1;
    min-height: 0;
  }

  body:has(.site-footer-social) {
    padding-bottom: 6rem;
  }

  /* Tablet Hochformat: Block mittig, leicht nach oben (nicht am Viewport-Rand kleben) */
  @media (orientation: portrait) {
    .page {
      justify-content: center;
      padding-top: clamp(1rem, 2.5vh, 2rem);
      padding-bottom: clamp(4.5rem, 11vh, 6.5rem);
    }

    .hero-wrap {
      margin: -2.75vh auto 0;
    }
  }
}

.nav-strip {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #ecd850 0%, #e9d54d 100%);
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-strip__inner {
  width: 80%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.65rem;
  padding: 0.45rem 0.75rem;
}

/* Smartphone: festes 2×2 — gleich breite Spalten + zentrierter Text */
@media (max-width: 640px) {
  .nav-strip__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 19.5rem);
    column-gap: 0.5rem;
    row-gap: 0.28rem;
    justify-items: stretch;
    align-items: center;
    padding: 0.48rem 0.6rem;
  }

  .nav-strip__link {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

.nav-strip__link {
  font-family: "Orbitron", system-ui, sans-serif;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  word-spacing: normal;
  padding: 0.2rem 0.35rem;
  margin: 0;
  border-radius: 3px;
  transition: background 0.15s ease, color 0.15s ease;
}

/* role="button": manche Browser (z. B. Safari) setzen eigenes Letterspacing/Font — angleichen */
.nav-strip__link[role="button"] {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  word-spacing: normal;
  -webkit-appearance: none;
  appearance: none;
}

.nav-strip__link:hover,
.nav-strip__link:focus-visible {
  background: rgba(209, 209, 209, 0.7);
  color: #000;
  outline: none;
}

/* Hochkant: schmalere Nav; Music/Contact rechts, About/Legal links */
@media (max-width: 640px) and (orientation: portrait) {
  .nav-strip {
    border-radius: 0 0 14px 14px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 2px 6px rgba(0, 0, 0, 0.16);
  }

  .nav-strip__inner {
    width: min(100%, 18rem);
    padding: 0.28rem 0.4rem;
    column-gap: 0.35rem;
    row-gap: 0.12rem;
  }

  .nav-strip__link,
  .nav-strip__link[role="button"] {
    padding: 0.08rem 0.18rem;
    font-size: 0.82rem;
  }

  .nav-strip__inner .nav-strip__link:nth-child(1),
  .nav-strip__inner .nav-strip__link:nth-child(3) {
    text-align: right;
  }

  .nav-strip__inner .nav-strip__link:nth-child(2),
  .nav-strip__inner .nav-strip__link:nth-child(4) {
    text-align: left;
  }
}

body.dialog-open {
  overflow: hidden;
}

.page-dialog {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.page-dialog.is-open {
  display: flex;
}

.page-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-dialog__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 40rem);
  max-height: min(96vh, 54rem);
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  color: #e8e8e8;
  border: 1px solid rgba(236, 216, 80, 0.25);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

@media (max-width: 640px) {
  .page-dialog__panel {
    max-height: min(76vh, 36rem);
  }
}

.page-dialog__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, #222 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(236, 216, 80, 0.2);
}

.page-dialog__title {
  margin: 0;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ecd850;
}

.page-dialog__close {
  appearance: none;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2f2f2;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.page-dialog__close:hover,
.page-dialog__close:focus-visible {
  background: rgba(236, 216, 80, 0.25);
  color: #111;
  outline: none;
}

.page-dialog__scroll {
  overflow-y: auto;
  padding: 1rem 1.1rem 1.25rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.page-dialog__scroll h3 {
  margin: 1.1rem 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ecd850;
}

.page-dialog__scroll h3:first-child {
  margin-top: 0;
}

.page-dialog__credit {
  margin: 0.5rem 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  color: #ecd850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-dialog__scroll p {
  margin: 0 0 0.75rem;
}

.page-dialog__scroll--about::after {
  content: "";
  display: table;
  clear: both;
}

.page-dialog__about-photo {
  float: left;
  width: 238px;
  max-width: 63%;
  height: auto;
  margin: 0.1rem 1rem 0.55rem 0;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(236, 216, 80, 0.25);
}

@media (max-width: 640px) {
  .page-dialog__about-photo {
    width: 162px;
    max-width: 54%;
    margin-right: 0.7rem;
    margin-bottom: 0.45rem;
  }
}

.page-dialog__scroll--playlists > .page-dialog__credit:first-child {
  margin-top: 0;
}

.page-dialog__playlists-lead {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(242, 242, 242, 0.88);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.page-dialog__playlist-hr {
  width: 80%;
  margin: 1rem auto;
  border: 0;
  border-top: 1px solid #fff;
}

.page-dialog__credit--playlist {
  margin-top: 0.35rem;
}

.page-dialog__playlist-desc {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(242, 242, 242, 0.88);
}

.page-dialog__about-text {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(242, 242, 242, 0.88);
  white-space: pre-wrap;
}

.page-dialog__thankyou {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(242, 242, 242, 0.92);
}

.page-dialog__spotify-wrap {
  margin: 0 0 0.25rem;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid rgba(236, 216, 80, 0.22);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  background: #000;
}

.page-dialog__spotify-wrap iframe {
  display: block;
  width: 100%;
  min-height: 352px;
  border: 0;
  background: #000;
}

@media (max-width: 640px) {
  .page-dialog__spotify-wrap iframe {
    min-height: 380px;
    height: 380px;
  }
}

.page-dialog__scroll a {
  color: #f0dc6a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-dialog__scroll a:hover,
.page-dialog__scroll a:focus-visible {
  color: #fff6c8;
}

.page-dialog__form {
  margin: 0;
}

.page-dialog__field {
  margin: 0 0 0.85rem;
}

.page-dialog__label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(242, 242, 242, 0.88);
}

.page-dialog__input,
.page-dialog__textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.45rem 0.55rem;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #f2f2f2;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(236, 216, 80, 0.28);
  border-radius: 6px;
}

.page-dialog__input:focus,
.page-dialog__textarea:focus {
  outline: none;
  border-color: rgba(236, 216, 80, 0.55);
  box-shadow: 0 0 0 1px rgba(236, 216, 80, 0.2);
}

.page-dialog__textarea {
  min-height: 7rem;
  resize: vertical;
}

.page-dialog__captcha {
  margin: 0.25rem 0 0.85rem;
  padding: 0.55rem 0.65rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.8rem;
}

.page-dialog__captcha-label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(242, 242, 242, 0.85);
}

.page-dialog__submit {
  appearance: none;
  margin-top: 0.25rem;
  padding: 0.5rem 1.1rem;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: linear-gradient(180deg, #ecd850 0%, #d4c040 100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  cursor: pointer;
}

.page-dialog__submit:hover,
.page-dialog__submit:focus-visible {
  filter: brightness(1.06);
  outline: none;
}

.page-dialog__form-error {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: #ff8a7a;
}

.page-dialog__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: auto;
  margin: 0;
  padding: 0.32rem 0.5rem 0.28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-align: center;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: calc(0.5rem + 1pt);
  line-height: 1.25;
  color: rgba(242, 242, 242, 0.72);
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

.site-footer-social {
  --site-footer-social-slot: 50px;
  display: grid;
  grid-template-columns: repeat(4, var(--site-footer-social-slot));
  column-gap: 2px;
  row-gap: 0;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  line-height: 0;
  min-height: var(--site-footer-social-slot);
  overflow: visible;
}

.site-footer-social__link {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  height: var(--site-footer-social-slot);
  min-height: var(--site-footer-social-slot);
  padding: 0;
  line-height: 0;
  border-radius: 4px;
  outline: none;
  overflow: visible;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

.site-footer-social__link::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: center center;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 0.15s ease,
    -webkit-filter 0.15s ease,
    filter 0.15s ease;
  -webkit-filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.42));
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.42));
}

.site-footer-social__link:nth-child(1)::before {
  background-image: url("../icon/i1.png");
}

.site-footer-social__link:nth-child(2)::before {
  background-image: url("../icon/i2.png");
}

.site-footer-social__link:nth-child(3)::before {
  background-image: url("../icon/i3.png");
}

.site-footer-social__link:nth-child(4)::before {
  background-image: url("../icon/i4.png");
}

.site-footer-social__link:hover,
.site-footer-social__link:focus-visible,
.site-footer-social__link:active {
  z-index: 1;
}

.site-footer-social__link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

/* 28px Basis; Hover nur dieses Icon: +2px je Seite, Mittelpunkt fix */
.site-footer-social__icon {
  display: none;
  width: 28px;
  height: 28px;
  object-fit: contain;
  object-position: center;
  background-color: transparent;
  transform-origin: center center;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 0.15s ease,
    -webkit-filter 0.15s ease,
    filter 0.15s ease;
  /* wie Beatport: weicher weißer Halo um die gesamte Icon-Fläche */
  -webkit-filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.42));
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.42));
}

.site-footer-social__link:focus-visible .site-footer-social__icon,
.site-footer-social__link:focus-visible::before {
  transform: translate3d(0, 0, 0) scale(1.125);
}

@media (hover: hover) {
  .site-footer-social__link:hover .site-footer-social__icon,
  .site-footer-social__link:hover::before {
    transform: translate3d(0, 0, 0) scale(1.125);
  }
}

.site-footer-social__link:active .site-footer-social__icon,
.site-footer-social__link:active::before {
  transform: translate3d(0, 0, 0) scale(1.125);
}

.site-footer__copy {
  margin: 0;
  padding: 0;
  line-height: inherit;
}

.site-footer .js-current-year,
.site-footer__link {
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
  color: inherit;
  text-decoration: none;
}

.brand-gradient {
  background: linear-gradient(90deg, orange, gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-style: italic;
  font-size: 1rem;
}

.site-footer__link {
  position: relative;
  background: linear-gradient(90deg, orange, gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, orange, gold);
  opacity: 0;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  text-decoration: none;
  text-underline-offset: 2px;
  outline: none;
}

.site-footer__link:hover::after,
.site-footer__link:focus-visible::after {
  opacity: 1;
}

.site-footer:has(.site-footer-social) {
  padding-bottom: 0.35rem;
}

body:has(.site-footer-social) {
  padding-bottom: 4.25rem;
}

@media (max-width: 932px) {
  .site-footer-social {
    --site-footer-social-slot: clamp(42px, 10.5vw, 50px);
    padding-inline: clamp(8px, 3.5vw, 18px);
  }
}
