:root{
  --brand:#383634;
  --accent:#F99B2E;
  --paper:#F3E9D7;

  --text:#000000;

  --btn:#383634;
  --btnHover:#2f2d2b;
  --btnText:#F4F2EE;

  --radius:22px;
  --shadow-strong: 0 30px 90px rgba(0,0,0,.32);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  background: var(--brand);
  color: var(--text);
  padding:28px;
}

/* ================= LAYOUT ================= */

.wrap{
  width:min(1020px,100%);
  margin:0 auto;
}

/* ================= HEADER ================= */

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 16px;
  background: var(--paper);
  border-radius:16px;
  margin-bottom:18px;
}

.wordmark{
  color:var(--brand);
  font-size:32px;
  letter-spacing:.03em;
}

nav a{
  color:#000;
  text-decoration:none;
  font-size:14px;
  padding:8px 10px;
  opacity:.7;

  border-radius:10px; /* damit Hover eine weiche Fläche bekommt */
  transition: opacity 140ms ease, background-color 140ms ease;
}

nav a:hover{
  opacity:1;
  background: rgba(0,0,0,.05);
}


/* ================= MAIN CARD ================= */

.card{
  background: var(--paper);
  border-radius:var(--radius);
  box-shadow:var(--shadow-strong);
  overflow:hidden;
}

/* ================= HERO ================= */

.hero{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  background:var(--accent);
  padding:14px;
}

.hero__art{
  background:var(--paper);
  border-radius:18px 0 0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero__text{
  background:var(--paper);
  border-radius:0 18px 18px 0;
  padding:34px;
}

/* Kicker */

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  background:rgba(0,0,0,.04);
  padding:8px 12px;
  border-radius:999px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
}

/* Hero Text */

h1{
  margin:16px 0 12px;
  font-size:44px;
  font-weight:900;
}

p{
  max-width:60ch;
  opacity:.85;
}

/* ===== Impressum: volle Textbreite ===== */

.legal-box p{
  max-width: none;
}

.legal-note p{
  max-width: none;
}

/* Koala */

.logo-slot{
  width:100%;
  max-width:520px;
  aspect-ratio:1/1;
}

.logo-slot img{
  width:110%;
  height:110%;
  object-fit:contain;
}

/* Buttons */

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn{
  background:var(--btn);
  color:var(--btnText);

  padding:9px 12px;
  border-radius:14px;

  font-size:14px;
  font-weight:700;

  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;

  line-height:1;

  /* Hover-Animation: dezent, ohne Layout-Jank */
  transition: background-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
  will-change: transform;
}


.btn:hover{
  background:var(--btnHover);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}

.btn:active{
  transform: translateY(0);
  box-shadow: none;
}


.btn__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  flex:0 0 16px;
}

.btn__icon img{
  width:16px;
  height:16px;
  display:block;

  /* macht schwarze SVGs zuverlässig off-white */
  filter: brightness(0) invert(1);
}



/* ================= INFO GRID ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  background:var(--accent);
  padding:14px;
}

.tile{
  background:var(--paper);
  border-radius:18px;
  padding:16px;
}

.tile__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.tile h3{
  margin:0;
  font-size:16px;
}

.badge{
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(0,0,0,.06);
}

/* ================= RELEASE BLOCK ================= */

.release{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

/* COVER PLATZHALTER */

.cover{
  width:58px;
  height:58px;
  border-radius:14px;
  background:rgba(0,0,0,.05);
  border:1px solid rgba(0,0,0,.15);
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
}

/* META */

.release__meta{
  flex:1;
  min-width:0;
}

.song{
  font-weight:700;
}

.sub{
  font-size:13px;
  opacity:.7;
  margin:2px 0 6px;
}

/* MINI LINKS */

.mini-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.mini-links a{
  font-size:13px;
  color:#000;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,.25);
}
.mini-links a:hover{
  border-bottom-color:#000;
}

/* ================= FOOTER ================= */

footer{
  color:rgba(255,255,255,.85);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  margin-top:14px;
}

footer a{
  color:rgba(255,255,255,.9);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.4);
}
footer a:hover{ border-bottom-color:#fff; }

/* ================= MOBILE ================= */

@media(max-width:860px){

  nav{ display:none; }

  .hero{
    grid-template-columns:1fr;
    padding:10px;
  }

  .hero__text{
    order:0;
    border-radius:18px 18px 0 0;
    padding:18px 20px 12px;
  }

  .hero__art{
    order:1;
    border-radius:0 0 18px 18px;
    padding:12px;
  }

  .logo-slot{
    max-width:200px;
    margin:0 auto;
  }

  h1{
    font-size:30px;
    line-height:1.15;
  }

  .actions{
    margin-top:12px;
  }

  /* WICHTIG: Grid gleich breit wie Hero */
  .grid{
    grid-template-columns:1fr;
    padding:10px;
  }

  .tile{
    width:100%;
  }
}
