
:root {
  --bg: #03060c;
  --ink: #f8f2e8;
  --muted: rgba(248,242,232,.72);
  --soft: rgba(248,242,232,.52);
  --gold: #d6b469;
  --gold2: #f3d69b;
  --line: rgba(214,180,105,.22);
  --line-soft: rgba(255,255,255,.08);
  --max: 1180px;
  --player-h: 118px;
  --footer-h: 38px;
  --header-h: 96px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  background-color: var(--bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 22%, rgba(100,62,164,.15), transparent 34%),
    linear-gradient(90deg, rgba(3,6,12,.86) 0%, rgba(3,6,12,.58) 45%, rgba(3,6,12,.72) 100%),
    linear-gradient(180deg, rgba(3,6,12,.03) 0%, rgba(3,6,12,.36) 100%);
}
body > * { position: relative; z-index: 1; }
body.shell {
  overflow: hidden;
  background-image: url("../images/backgrounds/home.jpg");
}
body.page {
  min-height: 100vh;
  overflow-x: hidden;
  padding: 0;
}
body.home { background-image: url("../images/backgrounds/home.jpg"); }
body.music { background-image: url("../images/backgrounds/music.jpg"); }
body.releases { background-image: url("../images/backgrounds/releases.jpg"); }
body.licensing { background-image: url("../images/backgrounds/licensing.jpg"); }
body.about { background-image: url("../images/backgrounds/about.jpg"); }
body.contact { background-image: url("../images/backgrounds/contact.jpg"); }
body.imprint { background-image: url("../images/backgrounds/imprint.jpg"); }
body.data { background-image: url("../images/backgrounds/data.jpg"); }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  z-index: 100;
  width: min(var(--max), calc(100% - 44px));
  background: transparent;
  border: 0;
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .34em;
  white-space: nowrap;
}
.brand strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .28em;
}
.brand span {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: .42em;
  font-weight: 700;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 29px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
}
.nav a, .contact-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: rgba(248,242,232,.9);
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav a:hover, .contact-trigger:hover { color: var(--gold2); }
.nav a.active {
  color: var(--gold2);
  border-bottom: 2px solid var(--gold);
}
.contact-menu {
  position: relative;
  padding-bottom: 76px;
  margin-bottom: -76px;
  z-index: 120;
}
.contact-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 2px);
  min-width: 235px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(4,7,13,.95);
  box-shadow: 0 26px 90px rgba(0,0,0,.42);
  opacity: 0;
  transform: translateY(-7px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(14px);
}
.contact-menu:hover .contact-dropdown,
.contact-menu:focus-within .contact-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.contact-dropdown a {
  display: block;
  padding: 12px 11px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-dropdown a:last-child { border-bottom: 0; }
.contact-dropdown a:hover { background: var(--gold); color: #120f08; }

.mobile-menu-toggle { display: none; }

.content-frame {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: calc(var(--player-h) + var(--footer-h));
  width: 100%;
  height: calc(100vh - var(--player-h) - var(--footer-h));
  border: 0;
  z-index: 5;
  background: transparent;
}

.shell-player {
  position: fixed;
  left: 50%;
  bottom: var(--footer-h);
  transform: translateX(-50%);
  z-index: 80;
  width: min(var(--max), calc(100% - 44px));
  min-height: 70px;
  display: grid;
  grid-template-columns: 56px minmax(0,1fr) 38px;
  gap: 12px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(5,8,14,.36), rgba(5,8,14,.08));
  box-shadow: none;
  backdrop-filter: blur(7px);
  padding: 7px 0;
}
.cover {
  width: 54px;
  height: 54px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(214,180,105,.22);
}
.cover img { width: 100%; height: 100%; object-fit: cover; }
.player-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 2px;
}
.player-artist {
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 5px;
}
.timeline { display: flex; align-items: center; gap: 8px; }
.time {
  color: var(--muted);
  font-size: 10px;
  width: 30px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.progress {
  flex: 1;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.progress::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: rgba(255,255,255,.23);
}
.progress-fill {
  position: absolute;
  left: 0; top: 50%;
  height: 2px;
  width: 0%;
  background: var(--gold2);
}
.progress-dot {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%,-50%);
}
.play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #151006;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, var(--gold2), #b88a43);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 13px;
}

.shell-footer {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 70;
  width: min(var(--max), calc(100% - 44px));
  height: var(--footer-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(214,180,105,.16);
  color: var(--soft);
  font-size: 12px;
  background: rgba(3,6,12,.26);
  backdrop-filter: blur(8px);
}
.footer-brand {
  color: var(--gold);
  letter-spacing: .38em;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
}
.shell-footer a { color: var(--gold); }

.page-wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding-top: 128px;
  padding-bottom: 56px;
}
.home-screen {
  min-height: calc(100vh - var(--player-h) - var(--footer-h));
  display: grid;
  align-items: center;
}
.hero-copy {
  max-width: 680px;
  padding-top: 8px;
}
h1, h2, h3 {
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 400;
}
h1 {
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(21px, 2.05vw, 31px);
  line-height: 1.28;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(248,242,232,.94);
}
.script {
  display: block;
  margin-top: 5px;
  font-family: "Edwardian Script ITC", "Alex Brush", "Brush Script MT", cursive;
  color: rgba(246, 246, 248, .96);
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: .78;
  letter-spacing: .01em;
  text-transform: none;
  font-weight: 400;
  text-shadow:
    0 1px 0 rgba(255,255,255,.10),
    0 6px 18px rgba(0,0,0,.34);
  transform: rotate(-1deg);
  transform-origin: left center;
}
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}
.gold-line {
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 18px;
}
.lead {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.62;
  font-size: 13px;
}
.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(5,8,14,.28);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 9px;
  font-weight: 900;
  transition: .18s ease;
}
.btn:hover { border-color: var(--gold); color: var(--gold2); transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold2), #b88a43);
  color: #181105;
  border-color: rgba(255,255,255,.18);
}
.btn-gold:hover { color: #100b03; background: linear-gradient(180deg, #ffe4aa, #c99748); }

.sub-hero {
  min-height: 320px;
  display: grid;
  align-items: end;
  padding: 58px 0 38px;
}
.sub-hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 5vw, 70px);
}
.content { display: grid; gap: 22px; }
.glass {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(5,8,14,.72), rgba(5,8,14,.44));
  box-shadow: 0 26px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
}
.panel { padding: clamp(24px, 3vw, 36px); }
.panel h2, .panel h3, .card h3 {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 16px;
}
.panel p, .card p, .legal-row p {
  color: var(--muted);
  line-height: 1.84;
  font-size: 15px;
}
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { min-height: 210px; padding: 25px; }
.icon { color: var(--gold); font-size: 32px; margin-bottom: 18px; }
.row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}
.row:last-child { border-bottom: 0; }
.row strong { color: var(--ink); font-weight: 400; }
.row span { color: var(--gold); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; text-align: right; }
.release-cover {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 18px;
}
.platform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  margin-bottom: 12px;
}
.platform:hover { background: rgba(214,180,105,.11); color: var(--gold2); }
.price {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold2);
  font-size: clamp(58px, 8vw, 92px);
  line-height: 1;
}
.notice {
  border-left: 2px solid var(--gold);
  background: rgba(214,180,105,.075);
  color: var(--muted);
  padding: 16px 18px;
  margin: 22px 0;
  line-height: 1.72;
}
.legal-list { display: grid; }
.legal-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  border-bottom: 1px solid var(--line-soft);
}
.legal-row:last-child { border-bottom: 0; }
.legal-row h3 {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 26px;
}
.legal-row p { padding: 26px; }
.form label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}
.form input, .form textarea {
  width: 100%;
  margin-bottom: 18px;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0,0,0,.22);
}
.form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

@media (min-width: 981px) and (max-height: 820px) {
  :root { --player-h: 104px; --footer-h: 34px; }
  .site-header { top: 14px; }
  .header-inner { min-height: 58px; }
  .page-wrap { padding-top: 96px; }
  .hero-copy { max-width: 430px; }
  h1 { font-size: clamp(24px, 2.7vw, 36px); line-height: 1.14; }
  .script { font-size: clamp(36px, 4.2vw, 56px); }
  .lead { font-size: 13px; line-height: 1.55; max-width: 360px; }
  .gold-line { margin: 14px 0; }
  .btn-row { margin-top: 16px; }
  .btn { min-height: 38px; padding: 0 16px; }
  .shell-player { width: min(700px, calc(100% - 44px)); min-height: 76px; grid-template-columns: 58px minmax(0,1fr) 40px; padding: 8px 10px; }
  .cover { width: 58px; height: 58px; }
  .player-title { font-size: 18px; }
  .player-artist { font-size: 11px; margin-bottom: 5px; }
  .play { width: 38px; height: 38px; }
}

@media (max-width: 980px) {
  body { background-attachment: scroll; }
  body.shell { overflow-y: hidden; }
  body::after {
    background:
      radial-gradient(circle at 72% 24%, rgba(100,62,164,.14), transparent 34%),
      linear-gradient(90deg, rgba(3,6,12,.88), rgba(3,6,12,.68));
  }
  .site-header {
    top: 0;
    width: 100%;
    left: 0;
    transform: none;
    background: rgba(4,7,13,.88);
    backdrop-filter: blur(14px);
  }
  .header-inner {
    min-height: 78px;
    padding: 0 16px;
  }
  .brand { letter-spacing: .22em; }
  .brand strong { font-size: 18px; }
  .brand span { font-size: 9px; letter-spacing: .26em; }
  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(0,0,0,.18);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(4,7,13,.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .nav.open { display: flex; }
  .nav a, .contact-trigger {
    min-height: 44px;
    width: 100%;
    justify-content: flex-start;
  }
  .contact-menu { padding-bottom: 0; margin-bottom: 0; }
  .contact-dropdown {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    box-shadow: none;
    display: grid;
    margin-top: 6px;
    background: rgba(255,255,255,.03);
  }
  .content-frame {
    top: 78px;
    height: calc(100vh - 78px - var(--player-h) - var(--footer-h));
    bottom: calc(var(--player-h) + var(--footer-h));
  }
  .shell-player {
    width: calc(100% - 20px);
    min-height: 66px;
    grid-template-columns: 48px minmax(0,1fr) 34px;
    gap: 9px;
    padding: 7px 8px;
  }
  .cover { width: 56px; height: 56px; }
  .player-title { font-size: 17px; }
  .player-artist { font-size: 11px; margin-bottom: 4px; }
  .play { width: 36px; height: 36px; }
  .time { width: 32px; font-size: 10px; }
  .shell-footer {
    width: 100%;
    padding: 0 12px;
    font-size: 10px;
  }
  .footer-brand { display: none; }
  .page-wrap {
    width: calc(100% - 28px);
    padding-top: 28px;
    padding-bottom: 38px;
  }
  .home-screen {
    min-height: auto;
    padding: 50px 0 24px;
  }
  h1 { font-size: clamp(30px, 10vw, 48px); letter-spacing: .15em; }
  .script { font-size: clamp(42px, 13vw, 64px); }
  .lead { font-size: 14px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sub-hero { min-height: 250px; padding: 42px 0 32px; }
  .legal-row { grid-template-columns: 1fr; }
  .legal-row h3 { padding: 22px 22px 0; }
  .legal-row p { padding: 14px 22px 22px; }
}

@media (max-width: 560px) {
  .btn { width: 100%; }
  .shell-player { grid-template-columns: 48px minmax(0,1fr) 34px; }
  .cover { width: 48px; height: 48px; }
  .player-title { font-size: 15px; }
  .time { display: none; }
  .play { width: 34px; height: 34px; }
  .shell-footer { justify-content: center; }
  .shell-footer div:nth-child(2) { display: none; }
}

/* polish v2: remove homepage iframe scrollbar */
body.page.home {
  overflow: hidden;
}
body.page.home .page-wrap {
  height: 100vh;
  padding-top: 116px;
  padding-bottom: 0;
  overflow: hidden;
}
body.page.home .home-screen {
  min-height: calc(100vh - 116px);
  align-items: center;
}

@media (min-width: 981px) and (max-height: 820px) {
  body.page.home .page-wrap {
    padding-top: 96px;
  }
  body.page.home .home-screen {
    min-height: calc(100vh - 96px);
  }
  .hero-copy { max-width: 390px; }
  h1 { font-size: clamp(22px, 2.25vw, 31px); line-height: 1.22; }
  .script { font-size: clamp(32px, 3.7vw, 50px); }
  .lead { font-size: 12px; line-height: 1.52; max-width: 340px; }
  .gold-line { margin: 12px 0; }
  .btn-row { margin-top: 14px; }
  .btn { min-height: 34px; padding: 0 14px; }
  .shell-player { width: min(620px, calc(100% - 44px)); min-height: 66px; grid-template-columns: 48px minmax(0,1fr) 32px; padding: 6px 7px; }
  .cover { width: 48px; height: 48px; }
  .player-title { font-size: 14px; }
  .player-artist { font-size: 10px; margin-bottom: 3px; }
  .play { width: 30px; height: 30px; }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-copy {
    max-width: 610px;
  }
  h1 {
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.28;
    letter-spacing: .24em;
  }
  .script {
    font-size: clamp(32px, 4vw, 58px);
  }
  .shell-player {
    width: min(var(--max), calc(100% - 44px));
    min-height: 62px;
    grid-template-columns: 48px minmax(0,1fr) 32px;
    padding: 5px 0;
  }
  .cover { width: 48px; height: 48px; }
}

@media (max-width: 980px) {
  .hero-copy { max-width: 520px; }
  h1 {
    font-size: clamp(25px, 7.2vw, 38px);
    line-height: 1.25;
    letter-spacing: .17em;
  }
  .script {
    font-size: clamp(38px, 11vw, 58px);
  }
  .shell-player {
    width: calc(100% - 20px);
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  h1 {
    font-size: clamp(19px, 1.9vw, 28px);
    line-height: 1.28;
    letter-spacing: .24em;
  }
  .script {
    font-size: clamp(28px, 3.35vw, 48px);
  }
}

@media (max-width: 980px) {
  .script {
    font-size: clamp(34px, 10vw, 54px);
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  h1 {
    font-size: clamp(18px, 1.8vw, 27px);
    line-height: 1.28;
    letter-spacing: .245em;
  }
  .script {
    font-size: clamp(27px, 3.1vw, 45px);
    transform: rotate(-1deg) scaleX(1.10);
  }
}
@media (max-width: 980px) {
  .script {
    font-size: clamp(34px, 9.5vw, 52px);
    transform: rotate(-1deg) scaleX(1.03);
  }
}

/* real Google script override */
@media (min-width: 981px) and (max-height: 820px) {
  h1 {
    font-family: "Times New Roman", Georgia, serif;
    font-size: clamp(19px, 1.85vw, 28px);
    line-height: 1.25;
    letter-spacing: .24em;
  }
  .script {
    font-family: "Edwardian Script ITC", "Alex Brush", "Brush Script MT", cursive;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: .82;
    transform: rotate(-1deg);
  }
  .hero-copy { max-width: 650px; }
}
@media (max-width: 980px) {
  .script {
    font-family: "Edwardian Script ITC", "Alex Brush", "Brush Script MT", cursive;
    font-size: clamp(44px, 12vw, 70px);
    transform: rotate(-1deg);
  }
}

/* Edwardian Script preference */
@media (min-width: 981px) and (max-height: 820px) {
  .script {
    font-family: "Edwardian Script ITC", "Alex Brush", "Brush Script MT", cursive;
    font-size: clamp(40px, 4.7vw, 66px);
  }
}
@media (max-width: 980px) {
  .script {
    font-family: "Edwardian Script ITC", "Alex Brush", "Brush Script MT", cursive;
    font-size: clamp(48px, 12vw, 74px);
  }
}

.script-image {
  display: block;
  width: min(485px, 100%);
  height: auto;
  margin-top: 7px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.36));
}
@media (min-width: 981px) and (max-height: 820px) {
  .script-image {
    width: min(390px, 100%);
    margin-top: 8px;
  }
}
@media (max-width: 980px) {
  .script-image {
    width: min(420px, 100%);
  }
}

/* Cintarini rendered image sizing */
@media (min-width: 981px) and (max-height: 820px) {
  .script-image {
    width: min(430px, 100%);
    margin-top: 5px;
  }
}
@media (max-width: 980px) {
  .script-image {
    width: min(440px, 100%);
  }
}


/* Mobile polish v1 - desktop stays unchanged */
@media (max-width: 980px) {
  body.home,
  body.page.home,
  body.shell.home {
    background-position: 66% center;
  }

  .content-frame {
    top: 78px;
    height: calc(100vh - 78px - var(--player-h) - var(--footer-h));
    bottom: calc(var(--player-h) + var(--footer-h));
  }

  body.page.home {
    overflow: hidden;
  }

  body.page.home .page-wrap {
    width: calc(100% - 22px);
    height: 100vh;
    padding-top: 72px;
    padding-bottom: 0;
    overflow: hidden;
  }

  body.page.home .home-screen {
    min-height: calc(100vh - 72px);
    align-items: center;
  }

  .hero-copy {
    max-width: 92vw;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(21px, 6.1vw, 31px);
    line-height: 1.23;
    letter-spacing: .17em;
    max-width: 94vw;
  }

  .script-image {
    width: min(340px, 86vw);
    margin-top: 7px;
    margin-left: 0;
    filter: drop-shadow(0 5px 12px rgba(0,0,0,.36));
  }

  .gold-line {
    width: 38px;
    margin: 13px 0 14px;
  }

  .lead {
    max-width: 88vw;
    font-size: 13px;
    line-height: 1.52;
  }

  .btn-row {
    margin-top: 15px;
    gap: 10px;
  }

  .btn {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 9px;
  }

  .shell-player {
    width: calc(100% - 14px);
    min-height: 70px;
    grid-template-columns: 52px minmax(0,1fr) 38px;
    gap: 8px;
    padding: 7px 6px;
  }

  .cover {
    width: 52px;
    height: 52px;
  }

  .player-title {
    font-size: 14px;
    margin-bottom: 1px;
  }

  .player-artist {
    font-size: 10px;
    margin-bottom: 3px;
  }

  .timeline {
    gap: 6px;
  }

  .time {
    font-size: 10px;
    width: 28px;
  }

  .play {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .shell-footer {
    height: var(--footer-h);
    padding: 0 7px;
    font-size: 9px;
  }

  .shell-footer div:nth-child(2) {
    display: none;
  }

  .shell-footer div:nth-child(3) {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --player-h: 82px;
    --footer-h: 30px;
  }

  body.home,
  body.page.home,
  body.shell.home {
    background-position: 68% center;
  }

  .header-inner {
    min-height: 66px;
    padding: 0 8px;
  }

  .brand strong {
    font-size: 16px;
    letter-spacing: .24em;
  }

  .brand span {
    font-size: 8px;
    letter-spacing: .24em;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .nav {
    top: 66px;
  }

  .content-frame {
    top: 66px;
    height: calc(100vh - 66px - var(--player-h) - var(--footer-h));
    bottom: calc(var(--player-h) + var(--footer-h));
  }

  body.page.home .page-wrap {
    width: calc(100% - 12px);
    padding-top: 46px;
  }

  body.page.home .home-screen {
    min-height: calc(100vh - 46px);
  }

  h1 {
    font-size: clamp(20px, 6.7vw, 28px);
    line-height: 1.22;
    letter-spacing: .14em;
  }

  .script-image {
    width: min(330px, 84vw);
    margin-top: 6px;
  }

  .lead {
    max-width: 84vw;
    font-size: 12px;
    line-height: 1.45;
  }

  .btn-row {
    margin-top: 13px;
  }

  .btn {
    min-height: 36px;
    padding: 0 12px;
    font-size: 8px;
  }

  .shell-player {
    width: calc(100% - 10px);
    grid-template-columns: 48px minmax(0,1fr) 34px;
    min-height: 64px;
    padding: 5px;
  }

  .cover {
    width: 48px;
    height: 48px;
  }

  .player-title {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .player-artist {
    font-size: 9px;
  }

  .time {
    display: none;
  }

  .progress {
    height: 16px;
  }

  .play {
    width: 32px;
    height: 32px;
  }

  .shell-footer {
    height: 30px;
    font-size: 8px;
  }
}

@media (max-width: 390px) {
  body.page.home .page-wrap {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(18px, 6.3vw, 24px);
  }

  .script-image {
    width: min(300px, 82vw);
  }

  .lead {
    font-size: 11px;
  }

  .btn {
    min-height: 34px;
    padding: 0 10px;
  }
}


/* Headline style alignment v1 */
.sub-hero h1 {
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.24;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(248,242,232,.94);
  max-width: 900px;
}

.sub-hero .kicker {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: .34em;
  font-weight: 700;
}

.panel h2,
.panel h3,
.card h3 {
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: .18em;
  font-weight: 400;
}

@media (min-width: 981px) and (max-height: 820px) {
  .sub-hero h1 {
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.22;
    letter-spacing: .22em;
  }
}

@media (max-width: 980px) {
  .sub-hero h1 {
    font-size: clamp(27px, 7.2vw, 42px);
    line-height: 1.22;
    letter-spacing: .17em;
  }

  .sub-hero .kicker {
    font-size: 9px;
    letter-spacing: .28em;
  }
}

@media (max-width: 560px) {
  .sub-hero h1 {
    font-size: clamp(24px, 8vw, 36px);
    letter-spacing: .14em;
  }
}


/* Subpage headline size fix v1 */
.sub-hero {
  min-height: 260px;
  padding: 46px 0 30px;
}

.sub-hero h1 {
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(26px, 2.75vw, 40px);
  line-height: 1.28;
  letter-spacing: .21em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(248,242,232,.94);
  max-width: 760px;
}

.sub-hero .lead {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.65;
}

/* Long page titles need tighter control */
body.licensing .sub-hero h1,
body.data .sub-hero h1 {
  font-size: clamp(24px, 2.45vw, 34px);
  max-width: 720px;
  letter-spacing: .18em;
}

body.licensing .sub-hero {
  min-height: 235px;
}

/* Content cards slightly less giant */
.panel h2,
.panel h3,
.card h3 {
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.25;
}

.price {
  font-size: clamp(48px, 6.4vw, 76px);
}

@media (min-width: 981px) and (max-height: 820px) {
  .sub-hero {
    min-height: 220px;
    padding: 34px 0 24px;
  }

  .sub-hero h1 {
    font-size: clamp(23px, 2.35vw, 34px);
    line-height: 1.24;
    letter-spacing: .18em;
    max-width: 720px;
  }

  body.licensing .sub-hero h1,
  body.data .sub-hero h1 {
    font-size: clamp(21px, 2.1vw, 30px);
  }

  .sub-hero .lead {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 980px) {
  .sub-hero {
    min-height: 210px;
    padding: 34px 0 26px;
  }

  .sub-hero h1 {
    font-size: clamp(24px, 6.3vw, 36px);
    line-height: 1.22;
    letter-spacing: .14em;
    max-width: 92vw;
  }

  body.licensing .sub-hero h1,
  body.data .sub-hero h1 {
    font-size: clamp(22px, 5.8vw, 32px);
    letter-spacing: .11em;
  }
}


/* Subpage script title concept v1 */
.page-script-title {
  display: block;
  width: min(360px, 78vw);
  height: auto;
  margin: 0 0 4px 0;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.34));
}

body.licensing .page-script-title,
body.releases .page-script-title {
  width: min(410px, 82vw);
}

.sub-hero .page-script-title + .gold-line {
  margin-top: 8px;
}

@media (min-width: 981px) and (max-height: 820px) {
  .page-script-title {
    width: min(320px, 78vw);
  }

  body.licensing .page-script-title,
  body.releases .page-script-title {
    width: min(360px, 82vw);
  }
}

@media (max-width: 980px) {
  .page-script-title {
    width: min(330px, 80vw);
  }

  body.licensing .page-script-title,
  body.releases .page-script-title {
    width: min(360px, 84vw);
  }
}


/* Subpage script title smaller fix v2 */
.sub-hero {
  min-height: 210px !important;
  padding: 32px 0 24px !important;
}

.page-script-title {
  width: min(230px, 56vw) !important;
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 2px 0 !important;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.32));
}

body.licensing .page-script-title,
body.releases .page-script-title {
  width: min(270px, 60vw) !important;
}

body.music .page-script-title,
body.about .page-script-title {
  width: min(220px, 54vw) !important;
}

.sub-hero .page-script-title + .gold-line {
  margin-top: 4px !important;
  margin-bottom: 14px !important;
}

.sub-hero .lead {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 981px) and (max-height: 820px) {
  .sub-hero {
    min-height: 180px !important;
    padding: 24px 0 20px !important;
  }

  .page-script-title {
    width: min(205px, 54vw) !important;
    max-height: 100px;
  }

  body.licensing .page-script-title,
  body.releases .page-script-title {
    width: min(240px, 58vw) !important;
  }
}

@media (max-width: 980px) {
  .sub-hero {
    min-height: 170px !important;
    padding: 26px 0 20px !important;
  }

  .page-script-title {
    width: min(220px, 62vw) !important;
    max-height: 110px;
  }

  body.licensing .page-script-title,
  body.releases .page-script-title {
    width: min(250px, 66vw) !important;
  }
}

@media (max-width: 560px) {
  .page-script-title {
    width: min(190px, 62vw) !important;
  }

  body.licensing .page-script-title,
  body.releases .page-script-title {
    width: min(220px, 68vw) !important;
  }
}


/* Releases page overwork v1 */
.releases-page {
  padding-bottom: 70px;
}

.releases-hero {
  min-height: 170px !important;
  padding: 26px 0 18px !important;
}

.releases-content {
  gap: 24px;
}

.featured-release {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(18px, 2.4vw, 30px);
}

.featured-cover-wrap {
  max-width: 360px;
}

.featured-cover {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(214,180,105,.24);
  box-shadow: 0 18px 70px rgba(0,0,0,.34);
}

.featured-copy h2 {
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 400;
}

.featured-copy p {
  max-width: 590px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.release-card {
  overflow: hidden;
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.release-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(214,180,105,.16);
}

.release-card-body {
  padding: 20px 18px 22px;
  text-align: center;
}

.release-card h3 {
  font-family: "Times New Roman", Georgia, serif;
  color: var(--gold2);
  font-size: clamp(15px, 1.25vw, 19px);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}

.release-card p {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.4;
}

.mini-gold-line {
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,180,105,.52), transparent);
  margin: 18px auto 14px;
  position: relative;
}

.mini-gold-line::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  color: var(--gold);
  background: rgba(5,8,14,.68);
  padding: 0 7px;
  font-size: 13px;
}

.release-link {
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}

.release-link:hover {
  color: var(--gold2);
}

@media (min-width: 981px) and (max-height: 820px) {
  .releases-hero {
    min-height: 130px !important;
    padding: 18px 0 12px !important;
  }

  .featured-release {
    grid-template-columns: 260px minmax(0,1fr);
    padding: 18px;
  }

  .featured-cover-wrap {
    max-width: 260px;
  }

  .release-card-body {
    padding: 16px 14px 18px;
  }
}

@media (max-width: 1100px) {
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-release {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .featured-cover-wrap {
    max-width: 260px;
  }
}

@media (max-width: 720px) {
  .featured-release {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-cover-wrap {
    max-width: 240px;
    margin: 0 auto;
  }

  .featured-copy {
    text-align: center;
  }

  .featured-copy p {
    margin: 0 auto;
  }

  .featured-copy .btn-row {
    justify-content: center;
  }

  .release-grid {
    grid-template-columns: 1fr;
  }

  .release-card {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ==========================================================
   RELEASES PAGE — FINAL POSITION FIX
   Moves only the Releases title/line/description downward.
   Album cards, background, player and all other pages stay put.
   ========================================================== */
body.page.releases .releases-hero > div {
  transform: translateY(55px);
}

@media (max-width: 980px) {
  body.page.releases .releases-hero > div {
    transform: translateY(30px);
  }
}

@media (max-width: 560px) {
  body.page.releases .releases-hero > div {
    transform: translateY(18px);
  }
}
