/* =========================================================
   RABNEY — shared stylesheet
   ========================================================= */

:root {
  --bg:        #07060a;
  --bg-raise:  #0d0a13;
  --panel:     rgba(255, 255, 255, 0.035);
  --panel-hi:  rgba(255, 255, 255, 0.06);
  --line:      rgba(255, 255, 255, 0.09);
  --line-hi:   rgba(196, 132, 252, 0.35);

  --text:      #ede9f4;
  --muted:     #97909f;
  --dim:       #6b6577;

  --accent:    #8b5cf6;
  --accent-hi: #c084fc;
  --accent-dk: #4c1d95;
  --accent-2:  #6d28d9;
  --link-hover:#e9d5ff;

  /* page background stops */
  --bg1: #0a0810;
  --bg2: #07060a;
  --bg3: #050409;

  /* atmospheric glows */
  --glow1: rgba(124, 58, 237, 0.30);
  --glow2: rgba(76, 29, 149, 0.28);
  --glow3: rgba(147, 51, 234, 0.16);

  /* accent-tinted effects */
  --glow-wordmark: rgba(168, 85, 247, 0.55);
  --glow-hero1:    rgba(168, 85, 247, 0.45);
  --glow-hero2:    rgba(124, 58, 237, 0.25);
  --shadow-accent:    rgba(124, 58, 237, 0.35);
  --shadow-accent-hi: rgba(124, 58, 237, 0.50);
  --cover-glow: rgba(124, 58, 237, 0.18);
  --glyph:      rgba(196, 132, 252, 0.45);
  --band1: rgba(124, 58, 237, 0.10);
  --band2: rgba(124, 58, 237, 0.02);

  --lead:   #c9c3d4;
  --heading: #ede9f4;
  --header-bg: rgba(7, 6, 10, 0.72);

  --maxw: 1120px;
  --radius: 14px;
  --sec-pad: 92px;
  --nav-h: 68px;
  --base: 16px;
  --h-scale: 1;
  --hero-scale: 1;
  --nav-tt: uppercase;
  --nav-track: 0.16em;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Pirata One", "Old English Text MT", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* ---- atmospheric background ------------------------------------------ */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 620px at 12% -8%,  var(--glow1), transparent 62%),
    radial-gradient(760px 560px at 92% 6%,   var(--glow2), transparent 60%),
    radial-gradient(1100px 760px at 50% 108%, var(--glow3), transparent 66%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 55%, var(--bg3) 100%);
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: var(--accent-hi); text-decoration: none; }
a:hover { color: var(--link-hover); }

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

/* ---- header / nav ----------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  text-shadow: 0 0 24px var(--glow-wordmark);
}
.wordmark:hover { color: #fff; }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: var(--nav-track);
  text-transform: var(--nav-tt);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  width: 42px;
  height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  content: "";
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }

/* ---- page shell ------------------------------------------------------- */

main { min-height: 60vh; }

.section { padding: var(--sec-pad) 0; }
.section--tight { padding: 60px 0; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin: 0 0 14px;
  font-weight: 600;
}

h1, h2, h3 { line-height: 1.12; margin: 0 0 18px; font-weight: 700; color: var(--heading); }

h1 {
  font-size: calc(clamp(38px, 7vw, 76px) * var(--h-scale));
  letter-spacing: -0.02em;
}

h2 {
  font-size: calc(clamp(26px, 3.6vw, 40px) * var(--h-scale));
  letter-spacing: -0.015em;
}

h3 { font-size: 19px; letter-spacing: -0.005em; }

p { margin: 0 0 18px; color: var(--muted); }
p.lead { font-size: 18px; color: var(--lead); max-width: 60ch; }

.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--line-hi), transparent);
  margin: 0 0 34px;
}

/* ---- hero ------------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(70px, 11vh, 120px) 0 clamp(40px, 6vh, 64px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

/* hero with the image turned off */
.hero-grid--solo { grid-template-columns: 1fr; }

.hero-name {
  font-family: var(--font-display);
  font-size: calc(clamp(58px, 12vw, 132px) * var(--hero-scale));
  line-height: 0.92;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
  text-shadow:
    0 0 40px var(--glow-hero1),
    0 0 100px var(--glow-hero2);
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.cover-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.7),
    0 0 70px var(--cover-glow);
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, #1a1024, #0a0710);
}
.cover-frame img { width: 100%; height: 100%; object-fit: cover; }

.cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.cover-placeholder .glyph {
  font-family: var(--font-display);
  font-size: 54px;
  color: var(--glyph);
  letter-spacing: 0;
}

/* ---- buttons ---------------------------------------------------------- */

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px var(--shadow-accent);
}
.btn--primary:hover { color: #fff; box-shadow: 0 14px 38px var(--shadow-accent-hi); }

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: var(--panel);
}
.btn--ghost:hover { border-color: var(--line-hi); color: #fff; background: var(--panel-hi); }

/* ---- streaming link pills -------------------------------------------- */

.dsp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.dsp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.18s ease;
}
.dsp:hover {
  color: #fff;
  border-color: var(--line-hi);
  background: var(--panel-hi);
  transform: translateY(-2px);
}
.dsp svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- release cards ---------------------------------------------------- */

.release-grid {
  display: grid;
  /* sized for a player whether or not one is present, so cards never resize */
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  /* every row matches the tallest, so all cards are identical whether or not
     they carry a player */
  grid-auto-rows: 1fr;
  gap: 28px;
}

/* use when there are only one or two releases, so cards don't stretch wide */
.release-grid--few { grid-template-columns: repeat(auto-fill, minmax(320px, 420px)); }

.release {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  /* column layout so every card in a row ends up the same height */
  display: flex;
  flex-direction: column;
}
.release:hover {
  border-color: var(--line-hi);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.release .art {
  flex: none;
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, #1a1024, #0a0710);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.release .art img { width: 100%; height: 100%; object-fit: cover; }
.release .art .glyph {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--glyph);
}

.release .body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* pushes the player to the foot of the card so players line up across a row */
.release .fill { flex: 1; min-height: 18px; }
.release h3 { margin: 0 0 4px; }
.release .meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 14px;
}
.release .links { display: flex; flex-wrap: wrap; gap: 8px; flex: none; }
.release .links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  transition: all 0.16s ease;
}
.release .links a:hover { color: #fff; border-color: var(--line-hi); }

/* ---- about ------------------------------------------------------------ */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.portrait {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, #1a1024, #0a0710);
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }

.fact-list { list-style: none; margin: 30px 0 0; padding: 0; }
.fact-list li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}
.fact-list li span:first-child {
  min-width: 130px;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 3px;
}

/* ---- contact ---------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 28px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--line-hi); transform: translateY(-3px); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 16px; font-size: 15px; }
.card .mail {
  font-size: 14px;
  letter-spacing: 0.04em;
  word-break: break-all;
}

/* ---- CTA band --------------------------------------------------------- */

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--band1), var(--band2));
  padding: 70px 0;
  text-align: center;
}
.band h2 { margin-bottom: 12px; }
.band p { max-width: 52ch; margin-left: auto; margin-right: auto; }
.band .btn-row { justify-content: center; margin-top: 26px; }

/* ---- footer ----------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 54px;
  margin-top: 20px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.footer-inner p { margin: 0; font-size: 13px; color: var(--dim); }
.footer-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-links a:hover { color: #fff; }

/* ---- reveal animation ------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .release:hover, .card:hover, .dsp:hover { transform: none; }
}

/* ---- responsive ------------------------------------------------------- */

@media (max-width: 860px) {
  .hero-grid,
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid .cover-frame { max-width: 380px; }
  .portrait { max-width: 340px; }
  .section { padding: 68px 0; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #09070d;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7);
    padding: 6px 24px 18px;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .fact-list li { flex-direction: column; gap: 4px; }
  .fact-list li span:first-child { min-width: 0; }
  .btn { width: 100%; justify-content: center; }
}

/* ---- custom page blocks ---------------------------------------------- */

.blk { margin: 0 0 34px; }
.blk:last-child { margin-bottom: 0; }
.blk-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.blk-img img { width: 100%; height: auto; }
.blk-cap { font-size: 12.5px; color: var(--dim); margin-top: 10px; text-align: center; }
.blk-embed iframe, .blk-embed video { max-width: 100%; border: 0; border-radius: var(--radius); }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.price { font-size: 15px; color: var(--accent-hi); font-weight: 600; margin: 0 0 12px; }

/* ---- embeds ----------------------------------------------------------- */

.embed { margin: 0 0 28px; }
.embed:last-child { margin-bottom: 0; }
.embed iframe { display: block; width: 100%; border: 0; border-radius: 12px; }
.embed--video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}
.embed--video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }
.embed-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 10px;
  font-weight: 600;
}
.embed-section { padding: 0 0 var(--sec-pad); }
/* the player runs edge to edge at the foot of the card, reclaiming the padding */
.release .embed {
  margin: 0 -20px -22px;
  border-top: 1px solid var(--line);
}
/* pasted embed code often carries its own border-radius; the card needs its own */
.release .embed iframe { border-radius: 0 0 var(--radius) var(--radius) !important; }
.release .embed-title { padding: 12px 20px 0; margin-bottom: 0; }
.hero .embed { margin-top: 26px; max-width: 560px; }

@media (max-width: 430px) {
  .release-grid,
  .release-grid--few { grid-template-columns: 1fr; }
}

:root{
  --accent: #ff0000;
  --accent-hi: #ff4747;
  --accent-dk: #770404;
  --accent-2: #c70000;
  --link-hover: #ff8585;
  --line-hi: rgba(255, 71, 71, 0.35);
  --bg: #0a0606;
  --bg1: #0f0808;
  --bg2: #0a0606;
  --bg3: #070404;
  --glow1: rgba(255, 0, 0, 0.3);
  --glow2: rgba(119, 4, 4, 0.28);
  --glow3: rgba(255, 71, 71, 0.16);
  --glow-wordmark: rgba(255, 71, 71, 0.55);
  --glow-hero1: rgba(255, 71, 71, 0.45);
  --glow-hero2: rgba(255, 0, 0, 0.25);
  --shadow-accent: rgba(255, 0, 0, 0.35);
  --shadow-accent-hi: rgba(255, 0, 0, 0.5);
  --cover-glow: rgba(255, 0, 0, 0.18);
  --glyph: rgba(255, 71, 71, 0.45);
  --band1: rgba(255, 0, 0, 0.1);
  --band2: rgba(255, 0, 0, 0.02);
}

:root{
  --font-display: "OLDENGL", "Old English Text MT", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --base: 16px;
  --h-scale: 1;
  --hero-scale: 1;
  --nav-tt: uppercase;
  --nav-track: 0.16em;
  --maxw: 1120px;
  --sec-pad: 92px;
  --radius: 14px;
  --nav-h: 68px;
}
@font-face{font-family:"OLDENGL";src:url("fonts/oldengl.ttf") format("truetype");font-display:swap;}
