/* =====================================================
   NEBELSCHAF STUDIO — pastel gradient flow
   ===================================================== */

:root {
  /* sanfte pastellpalette - jede sektion klar unterscheidbar */
  --hero-bg-1: #e8f0ff;     /* helleres blau */
  --hero-bg-2: #f5e8ff;     /* sanftes lila */
  --about-bg: #ffe8f0;      /* deutliches rosa */
  --accounts-bg: #fff4e0;   /* warmes vanille/creme */
  --music-bg: #e8e8ff;      /* deutliches blau-lila */
  --shop-bg: #e0f5e8;       /* deutliches mint */
  --collabs-bg: #ffeed8;    /* warmes peach-creme */
  --contact-bg: #f0e0ff;    /* lavendel */

  --ink: #2a1f3d;
  --ink-soft: #5a4d75;
  --ink-mute: #8a7eaa;
  --line: rgba(42, 31, 61, 0.1);
  --line-strong: rgba(42, 31, 61, 0.22);
  --white: #ffffff;

  /* rainbow accents - leuchtend aber sanft */
  --r1: #ff6b9d;
  --r2: #ffa83d;
  --r3: #ffd93d;
  --r4: #6bcc8b;
  --r5: #5dabe8;
  --r6: #a888e8;
  --r7: #ff8ec7;

  /* per-account accents */
  --acc-neb: #ff8a4c;
  --acc-cozy: #ff6b9d;
  --acc-lucent: #9d80e8;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-accent: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --max: 1300px;
  --pad: clamp(1.2rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--hero-bg-1);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* =========================  RAINBOW STRIP  ========================= */
.rainbow-strip {
  display: flex;
  height: 8px;
  width: 100%;
}
.rainbow-strip span { flex: 1; height: 100%; }
.rainbow-strip span:nth-child(1) { background: var(--r1); }
.rainbow-strip span:nth-child(2) { background: var(--r2); }
.rainbow-strip span:nth-child(3) { background: var(--r3); }
.rainbow-strip span:nth-child(4) { background: var(--r4); }
.rainbow-strip span:nth-child(5) { background: var(--r5); }
.rainbow-strip span:nth-child(6) { background: var(--r6); }
.rainbow-strip span:nth-child(7) { background: var(--r7); }

/* =========================  NAV  ========================= */
.topnav {
  position: sticky;
  top: 8px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem var(--pad);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 500;
}
.brand em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.brand-mark {
  font-size: 1.2rem;
  color: var(--r1);
  display: inline-block;
  animation: rainbow-cycle 8s linear infinite;
}
@keyframes rainbow-cycle {
  0% { color: var(--r1); } 16% { color: var(--r2); } 33% { color: var(--r3); }
  50% { color: var(--r4); } 66% { color: var(--r5); } 83% { color: var(--r6); }
  100% { color: var(--r1); }
}
.topnav-links {
  display: flex;
  gap: 1.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
}
.topnav-links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.3s;
}
.topnav-links a:hover { color: var(--ink); }
.topnav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--r1), var(--r3), var(--r5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  border-radius: 2px;
}
.topnav-links a:hover::after { transform: scaleX(1); }
.topnav-socials { display: flex; gap: 0.5rem; }
.topnav-socials a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.3s;
}
.topnav-socials a:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px) rotate(-4deg);
}

/* =========================  HERO  ========================= */
.hero {
  position: relative;
  padding: 4rem var(--pad) 6rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--hero-bg-1) 0%, var(--hero-bg-2) 100%);
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.blob-1 {
  top: -10%; left: -8%;
  width: 500px; aspect-ratio: 1;
  background: radial-gradient(circle, var(--r6), transparent 70%);
  animation: float 14s ease-in-out infinite alternate;
}
.blob-2 {
  bottom: 5%; right: -10%;
  width: 600px; aspect-ratio: 1;
  background: radial-gradient(circle, var(--r1), transparent 70%);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite alternate-reverse;
}
.blob-3 {
  top: 50%; left: 35%;
  width: 350px; aspect-ratio: 1;
  background: radial-gradient(circle, var(--r3), transparent 70%);
  opacity: 0.25;
  animation: float 22s ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.1); }
}
.star {
  position: absolute;
  font-size: 1.8rem;
  animation: twinkle 3s ease-in-out infinite;
  z-index: 1;
}
.star-1 { top: 18%; left: 5%; color: var(--r2); animation-delay: 0s; }
.star-2 { top: 70%; right: 3%; color: var(--r6); font-size: 1.4rem; animation-delay: 1s; }
.star-3 { top: 12%; right: 8%; color: var(--r4); font-size: 1.2rem; animation-delay: 2s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

/* HERO LAYOUT — zweispaltig */
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}

.hero-meta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  margin-bottom: 2.5rem;
}
.hero-meta .dot { color: var(--r1); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  font-variation-settings: "opsz" 144;
}
.hero-title .line {
  display: block;
  animation: rise 1s cubic-bezier(.2,.8,.2,1) backwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) { animation-delay: 0.2s; }
.hero-title .line:nth-child(3) { animation-delay: 0.3s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rainbow-text {
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
  animation: rainbow-shift 6s linear infinite;
}
@keyframes rainbow-shift { to { background-position: 200% 0; } }

.hero-bottom {
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line-strong);
}
.hero-lede {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.55;
  margin-bottom: 1.8rem;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-stats {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--line);
  transition: all 0.3s;
  min-width: 90px;
}
.stat:hover { transform: translateY(-3px) rotate(-1deg); }
.stat:nth-child(1):hover { border-color: var(--r1); }
.stat:nth-child(2):hover { border-color: var(--r4); }
.stat:nth-child(3):hover { border-color: var(--r6); }
.stat-num {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
.stat:nth-child(1) .stat-num { color: var(--r1); }
.stat:nth-child(2) .stat-num { color: var(--r4); }
.stat:nth-child(3) .stat-num { color: var(--r6); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  margin-top: 0.2rem;
}

/* ====== HERO MOSAIC — drei Polaroid-Karten ====== */
.hero-right { position: relative; min-height: 540px; }
.hero-mosaic {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
}
.mosaic-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  padding: 10px 10px 32px;
  box-shadow: 0 25px 50px -15px rgba(42, 31, 61, 0.25), 0 8px 20px -8px rgba(42, 31, 61, 0.15);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, opacity 0.4s;
}
.mosaic-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.mosaic-tag {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.mosaic-card--1 {
  width: 56%;
  top: 4%;
  right: 4%;
  z-index: 3;
  animation: float-mosaic-1 8s ease-in-out infinite alternate;
}
.mosaic-card--2 {
  width: 50%;
  bottom: 6%;
  left: 0%;
  z-index: 2;
  animation: float-mosaic-2 10s ease-in-out infinite alternate;
}
.mosaic-card--3 {
  width: 42%;
  top: 40%;
  right: 36%;
  z-index: 1;
  animation: float-mosaic-3 12s ease-in-out infinite alternate;
}

@keyframes float-mosaic-1 {
  from { transform: rotate(4deg) translateY(0); }
  to { transform: rotate(5deg) translateY(-12px); }
}
@keyframes float-mosaic-2 {
  from { transform: rotate(-6deg) translateY(0); }
  to { transform: rotate(-7deg) translateY(-10px); }
}
@keyframes float-mosaic-3 {
  from { transform: rotate(2deg) translateY(0); }
  to { transform: rotate(1deg) translateY(-8px); }
}

.mosaic-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.05) !important;
  z-index: 10;
  animation-play-state: paused;
}

/* =========================  ABOUT  ========================= */
.about {
  padding: 6rem var(--pad);
  background: var(--about-bg);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-inner { max-width: 800px; margin: 0 auto; }
.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--r1);
  display: inline-block;
  margin-bottom: 2rem;
}
.kicker .num {
  display: inline-block;
  background: var(--r1);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  margin-right: 0.3rem;
  font-weight: 700;
}
.about-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.about-quote em {
  font-style: italic;
  font-weight: 500;
  color: var(--r2);
  background: linear-gradient(transparent 65%, rgba(255, 168, 61, 0.25) 65%);
  padding: 0 0.1em;
}
.quote-mark {
  font-family: var(--font-accent);
  font-size: 1.4em;
  font-weight: 500;
  color: var(--r1);
  font-style: italic;
  line-height: 0;
  vertical-align: -0.1em;
}
.about-sig {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mute);
  margin-bottom: 2rem;
}
.about-extra { font-size: 1rem; color: var(--ink-soft); }

/* =========================  SECTION HEAD  ========================= */
.section {
  padding: 7rem var(--pad);
  position: relative;
}
.section-head {
  max-width: var(--max);
  margin: 0 auto 5rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--r2);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.5;
}
.section-sub em { color: var(--r1); font-weight: 500; font-style: italic; }

/* per-section colors — jede sektion klar abgegrenzt */
.section--accounts {
  background: var(--accounts-bg);
  border-top: 4px solid var(--acc-neb);
}
.section--accounts .kicker { color: var(--acc-neb); }
.section--accounts .kicker .num { background: var(--acc-neb); }
.section--accounts .section-title em { color: var(--acc-neb); }

.section--music {
  background: var(--music-bg);
  border-top: 4px solid var(--r6);
}
.section--music .kicker { color: var(--r6); }
.section--music .kicker .num { background: var(--r6); }
.section--music .section-title em { color: var(--r6); }

.section--shop {
  background: var(--shop-bg);
  border-top: 4px solid var(--r4);
}
.section--shop .kicker { color: var(--r4); }
.section--shop .kicker .num { background: var(--r4); }
.section--shop .section-title em { color: var(--r4); }

.section--collabs {
  background: var(--collabs-bg);
  border-top: 4px solid var(--r5);
}
.section--collabs .kicker { color: var(--r5); }
.section--collabs .kicker .num { background: var(--r5); }
.section--collabs .section-title em { color: var(--r5); }

/* =========================  ACCOUNTS  ========================= */
.account-stack {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.acc {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 28px;
  border: 1.5px solid var(--line);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.acc:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(42, 31, 61, 0.15);
}
.acc-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-accent);
  font-size: 5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: rgba(42, 31, 61, 0.06);
  pointer-events: none;
}
.acc-photo { position: relative; }
.acc-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.acc:hover .acc-photo img { transform: rotate(-1.5deg) scale(1.02); }
.acc-sticker {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 2px solid var(--ink);
  transform: rotate(4deg);
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 2;
}
.acc-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.acc-handle {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.acc-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
}
.acc-desc {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
}
.acc-traits {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.acc-traits span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--line-strong);
}
.acc-platforms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.acc-platforms a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 2px solid;
  transition: all 0.3s;
  background: transparent;
}
.acc-platforms a:hover {
  transform: translateY(-2px);
}

.acc--neb .acc-handle { color: var(--acc-neb); }
.acc--neb .acc-sticker { background: var(--acc-neb); color: var(--white); border-color: var(--acc-neb); }
.acc--neb .acc-platforms a {
  color: var(--acc-neb);
  border-color: var(--acc-neb);
}
.acc--neb .acc-platforms a:hover {
  background: var(--acc-neb);
  color: var(--white);
}

.acc--cozy .acc-handle { color: var(--acc-cozy); }
.acc--cozy .acc-sticker { background: var(--acc-cozy); color: var(--white); border-color: var(--acc-cozy); }
.acc--cozy .acc-platforms a {
  color: var(--acc-cozy);
  border-color: var(--acc-cozy);
}
.acc--cozy .acc-platforms a:hover {
  background: var(--acc-cozy);
  color: var(--white);
}
.acc--cozy:hover .acc-photo img { transform: rotate(1.5deg) scale(1.02); }

.acc--lucent .acc-handle { color: var(--acc-lucent); }
.acc--lucent .acc-sticker { background: var(--acc-lucent); color: var(--white); border-color: var(--acc-lucent); }
.acc--lucent .acc-platforms a {
  color: var(--acc-lucent);
  border-color: var(--acc-lucent);
}
.acc--lucent .acc-platforms a:hover {
  background: var(--acc-lucent);
  color: var(--white);
}

.acc:nth-child(even) .acc-photo { order: 2; }

/* =========================  MUSIC  ========================= */
.music-compact {
  max-width: var(--max);
  margin: 0 auto;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--r1), var(--r6));
  box-shadow: 0 10px 25px -10px rgba(42, 31, 61, 0.2);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.video-thumb .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--r6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  padding-left: 5px;
  z-index: 2;
  box-shadow: 0 8px 20px -5px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
}
.video-thumb:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(42, 31, 61, 0.3); }
.video-thumb:hover .play-icon { transform: translate(-50%, -50%) scale(1.15); background: var(--r6); color: var(--white); }
.video-thumb:hover img { transform: scale(1.05); }

.music-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.music-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  background: var(--r6);
  color: var(--white);
  transition: all 0.3s;
  box-shadow: 0 10px 25px -8px rgba(168, 136, 232, 0.5);
}
.music-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px -8px rgba(168, 136, 232, 0.6);
}
.music-actions-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
}

/* =========================  SHOP  ========================= */
.shop-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--line);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.shop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2.5px solid var(--card, var(--r1));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.shop-card:hover { transform: translateY(-6px); }
.shop-card:hover::before { opacity: 1; }
.shop-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--card, var(--r1)) 0%, transparent 100%);
}
.shop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.shop-card:hover .shop-img img { transform: scale(1.07); }
.shop-img--text {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--card), color-mix(in srgb, var(--card), white 30%));
}
.shop-img--text span {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}
.shop-meta {
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--card, var(--ink-mute));
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.shop-meta h3 {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.shop-meta p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 1;
}
.shop-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--card, var(--r1));
  transition: letter-spacing 0.3s;
}
.shop-card:hover .shop-link { letter-spacing: 0.1em; }

/* =========================  COLLABS  ========================= */
.collab-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.collab {
  position: relative;
  padding: 2rem 1.3rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: all 0.3s;
  text-align: center;
}
.collab:hover {
  border-color: var(--r5);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px rgba(42, 31, 61, 0.15);
}
.collab-logo {
  width: 56px; height: 56px;
  margin: 0 auto 0.7rem;
}
.collab-logo img { width: 100%; height: 100%; object-fit: contain; }
.collab h4 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.collab p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.collab-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: var(--r3);
  color: var(--ink);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* =========================  CONTACT  ========================= */
.contact {
  position: relative;
  padding: 9rem var(--pad);
  text-align: center;
  background: var(--contact-bg);
  border-top: 4px solid var(--r1);
  overflow: hidden;
}
.contact-deco { position: absolute; inset: 0; pointer-events: none; }
.contact-deco .blob-1 {
  top: 10%; left: 10%;
  width: 400px; aspect-ratio: 1;
  background: radial-gradient(circle, var(--r1), transparent 70%);
  animation: float 16s ease-in-out infinite alternate;
  opacity: 0.4;
}
.contact-deco .blob-2 {
  bottom: 10%; right: 10%;
  width: 400px; aspect-ratio: 1;
  background: radial-gradient(circle, var(--r5), transparent 70%);
  animation: float 20s ease-in-out infinite alternate-reverse;
  opacity: 0.4;
}
.contact-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.contact .kicker { color: var(--r2); margin-bottom: 2rem; }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 3rem;
}
.contact-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, var(--r1), var(--r6));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  padding: 1rem 2rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
.contact-mail:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--r2);
}
.mail-arrow { transition: transform 0.3s; }
.contact-mail:hover .mail-arrow { transform: translate(4px, -4px) rotate(15deg); }
.contact-note {
  font-size: 1rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* =========================  FOOTER  ========================= */
.footer {
  padding: 4rem var(--pad) 0;
  background: var(--ink);
  color: var(--white);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1.2rem;
}
.footer-brand em { color: rgba(255, 255, 255, 0.6); font-weight: 300; }
.footer-socials {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
}
.footer-socials a { color: rgba(255, 255, 255, 0.7); transition: color 0.3s; }
.footer-socials a:hover { color: var(--r3); }
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.footer-legal a { color: rgba(255, 255, 255, 0.7); }
.footer-legal a:hover { color: var(--r3); }
.muted { color: rgba(255, 255, 255, 0.4); }
.footer-mark {
  text-align: center;
  padding: 3rem 0 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}
.footer-mark > span:first-child {
  font-size: clamp(3rem, 14vw, 13rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  display: block;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.footer-mark-small {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================  IMPRESSUM  ========================= */
.legal-page {
  padding: 5rem var(--pad);
  max-width: 800px;
  margin: 0 auto;
  background: var(--hero-bg-1);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.legal-page h1 em { font-style: italic; font-weight: 500; color: var(--r2); }
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--r1);
}
.legal-page p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-page a.legal-mail {
  color: var(--r2);
  border-bottom: 2px solid var(--r2);
  font-weight: 500;
}

/* =========================  RESPONSIVE  ========================= */
@media (max-width: 980px) {
  .topnav { flex-wrap: wrap; gap: 0.8rem; padding: 1rem var(--pad); }
  .topnav-links { width: 100%; order: 3; gap: 1.2rem; flex-wrap: wrap; justify-content: flex-start; font-size: 0.85rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    min-height: auto;
  }
  .hero-right { min-height: 480px; }

  .acc { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .acc:nth-child(even) .acc-photo { order: 1; }
  .acc-num { font-size: 3.5rem; top: 1rem; right: 1rem; }

  .cover-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .collab-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer-socials { justify-content: center; }
  .footer-legal { align-items: center; }
}

@media (max-width: 600px) {
  .section { padding: 5rem var(--pad); }
  .cover-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .topnav-socials { gap: 0.4rem; }
  .topnav-socials a { width: 28px; height: 28px; font-size: 0.6rem; }
  .hero-meta { flex-wrap: wrap; gap: 0.4rem; font-size: 0.7rem; }
  .blob-1, .blob-2, .blob-3 { width: 300px; }
  .music-block-head { flex-direction: column; align-items: flex-start; }
}
