:root{
  /* === Papa Brown Light Palette === */
  --bg-0:#f2e7d3;      /* aged paper background */
  --bg-1:#ead7b3;      /* warm kraft paper */
  --bg-2:#dbc49a;      /* slightly darker paper */

  --paper:#c9a46a;
  --accent:#d07a2d;    /* vinyl label orange */

  --line:rgba(58,42,32,.18);
  --text:#2b1e16;      /* dark brown ink */
  --muted:#5f4b3a;
  --soft:#8b7764;
  --shadow:rgba(0,0,0,.25);

  --radius:22px;
  --max:500px;
  --pad:26px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{ scroll-padding-top: 90px; }

body{
  margin:0;
  color:var(--text);
  font:15px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(1200px 700px at 50% 10%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  overflow-x:hidden;
  padding-bottom:54px;
}

/* REMOVE dark DRUKZ overlays */
body::before,
body::after{
  display:none;
}

/* Main wrapper */
.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding:clamp(22px,5vw,52px);
}

/* Generic card */
.card{
  width:min(var(--max),100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--bg-1);
  box-shadow:0 16px 40px var(--shadow);
  overflow:hidden;
}

/* Release stack */
.release-stack{
  display:flex;
  flex-direction:column;
  gap:28px;
  align-items:center;
}

/* Release cards (LIGHT) */
.release-card{
  width:100%;
  max-width:560px;
  margin:0 auto;
  padding:24px 22px 26px;
  background:var(--bg-2);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}

/* Mono */
.mono{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Courier New",monospace;
  display:block;
  width:100%;
  text-align:center;
  padding:8px 0 12px;
}

.mark{
  letter-spacing:.16em;
  font-weight:800;
  font-size:13px;
  color:var(--muted);
  text-transform:uppercase;
}

/* Cover art */
.cover-art{
  width:100%;
  max-width:420px;
  aspect-ratio:1/1;
  border-radius:18px;
  border:1px solid rgba(58,42,32,.18);
  background:#fff;
  overflow:hidden;
  position:relative;
}

.cover-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:contrast(108%) brightness(98%);
  display:block;
}

.cover-art::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(
    520px 520px at 50% 35%,
    transparent 60%,
    rgba(0,0,0,.25) 100%
  );
  pointer-events:none;
}

/* Buttons / BUY */
a.btn,
.mark a{
  color:var(--accent);
  text-decoration:none;
}

.mark a:hover{
  color:#b86522;
}

/* Icons */
.icons{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center;
}

.icon-link{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--bg-2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .12s ease, background .12s ease;
}

.icon-link:hover{
  transform:translateY(-1px);
  background:var(--paper);
}

.icon{
  width:18px;
  height:18px;
  fill:var(--text);
  opacity:.9;
}

/* Header */
.site-header{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(
    to bottom,
    rgba(242,231,211,.92),
    rgba(242,231,211,.75)
  );
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(6px);
}

@media (min-width:900px){
  .site-header{
    position:sticky;
    top:0;
    z-index:60;
    box-shadow:0 6px 18px rgba(0,0,0,.18);
  }
}

/* Footer */
.site-footer{
  position:fixed;
  left:0;
  right:0;
  bottom:12px;
  text-align:center;
  color:var(--soft);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  z-index:50;
  background:linear-gradient(
    to top,
    rgba(242,231,211,.95),
    rgba(242,231,211,.6),
    rgba(242,231,211,0)
  );
  padding:12px 0 6px;
}

.site-footer a.footer-link{
  color:inherit;
  text-decoration:none;
}

/* Mobile */
@media (max-width:860px){
  .mark.mono{
    text-align:center !important;
  }
}
