
@font-face {
  font-family: "Cinzel";
  src: url("fonts/cinzel-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --midnight: #081320;
  --ocean: #1d2b3a;
  --gold: #d4af37;
  --gold-soft: #efd887;
  --sand: #e7dcc3;
  --stone: #8c7f6b;
  --ivory: #f4f1e8;
  --ink: #050b12;
  --line: rgba(231, 220, 195, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Cinzel", Georgia, serif;
  --body: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--midnight);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(212, 175, 55, 0.075), transparent 30rem),
    var(--midnight);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

::selection {
  background: var(--gold);
  color: var(--midnight);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 100px;
  background: var(--ivory);
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1380px, calc(100vw - 48px));
  height: 100px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(244, 241, 232, 0.19);
}

.nav-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand img {
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.24));
}

.nav-brand img {
  width: auto;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.24));
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(244, 241, 232, 0.25);
  border-radius: 100px;
  background: rgba(5, 11, 18, 0.38);
  backdrop-filter: blur(10px);
}

.language-option {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0.62;
  transition: 180ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  opacity: 1;
  background: rgba(244, 241, 232, 0.08);
}

.language-option.is-active {
  border-color: rgba(239, 216, 135, 0.7);
  background: rgba(212, 175, 55, 0.16);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.16);
  opacity: 1;
}

.nav-cta {
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid rgba(244, 241, 232, 0.42);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-soft);
}

.hero {
  position: relative;
  display: grid;
  min-height: 920px;
  isolation: isolate;
  background-image: var(--hero-image);
  background-position: center 42%;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(270deg, rgba(5, 11, 18, 0.9) 0%, rgba(5, 11, 18, 0.42) 42%, rgba(5, 11, 18, 0.04) 74%),
    linear-gradient(0deg, var(--midnight) 0%, transparent 34%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 72% 48%, transparent 0 16%, rgba(5, 11, 18, 0.18) 56%, rgba(5, 11, 18, 0.45) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 180px;
  padding-bottom: 130px;
}

.hero-message {
  width: min(680px, 56%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(4.7rem, 9vw, 8.8rem);
  text-shadow: 0 5px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  color: var(--gold-soft);
  font-style: normal;
}

.hero-copy {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(244, 241, 232, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-soft);
}

.button-quiet {
  border-color: rgba(244, 241, 232, 0.35);
  background: rgba(8, 19, 32, 0.36);
  backdrop-filter: blur(8px);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.09);
}

.release-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0;
  color: rgba(244, 241, 232, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.release-note .release-rule {
  width: 22px;
  height: 1px;
  flex: 0 0 22px;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  right: 54px;
  bottom: 42px;
  display: grid;
  width: 36px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(244, 241, 232, 0.3);
  border-radius: 100px;
}

.scroll-cue span {
  width: 4px;
  height: 10px;
  border-radius: 10px;
  background: var(--gold);
  animation: scroll 1.8s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(-6px); opacity: 0.35; }
  50% { transform: translateY(6px); opacity: 1; }
}

.section {
  position: relative;
  padding-block: clamp(90px, 11vw, 150px);
}

.album-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(58px, 9vw, 130px);
}

.album-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background:
    radial-gradient(circle at 50% 34%, rgba(212, 175, 55, 0.18), transparent 38%),
    linear-gradient(145deg, #142739, #07111c 68%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.album-art::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(231, 220, 195, 0.14);
  pointer-events: none;
}

.album-art .album-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover;
  filter: none;
}

.album-art img {
  position: absolute;
  top: 7%;
  left: 50%;
  width: 74%;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.5));
}

.album-art-copy {
  position: absolute;
  right: 12%;
  bottom: 9%;
  left: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

.album-art-copy span,
.album-art-copy small {
  font-size: clamp(0.46rem, 1vw, 0.64rem);
  font-weight: 700;
  letter-spacing: 0.25em;
}

.album-art-copy strong {
  margin: 8px 0 7px;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0.025em;
}

.album-art-copy small {
  color: rgba(244, 241, 232, 0.58);
}

.album-intro h2,
.project-copy h2,
.section-heading h2,
.contact-card h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.album-intro > p:not(.eyebrow),
.project-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(244, 241, 232, 0.68);
  font-size: 1.02rem;
}

.album-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
  padding-block: 24px;
  border-block: 1px solid var(--line);
}

.album-stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.album-stats strong {
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}

.album-stats span {
  color: rgba(244, 241, 232, 0.46);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.streaming-status {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 26px;
}

.streaming-status .pulse {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.1);
}

.streaming-status div {
  display: flex;
  flex-direction: column;
}

.streaming-status strong {
  font-size: 0.83rem;
}

.streaming-status small {
  color: rgba(244, 241, 232, 0.46);
}

.manifesto {
  overflow: hidden;
  padding-block: clamp(110px, 14vw, 190px);
  background:
    radial-gradient(circle at 50% 120%, rgba(212, 175, 55, 0.15), transparent 48%),
    #050d16;
  text-align: center;
}

.manifesto::before,
.manifesto::after {
  position: absolute;
  top: 50%;
  width: 24vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35));
}

.manifesto::before { left: 0; }
.manifesto::after { right: 0; transform: rotate(180deg); }

.manifesto-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manifesto-rule {
  width: 1px;
  height: 52px;
  margin-bottom: 30px;
  background: linear-gradient(var(--gold), transparent);
}

.manifesto h2 {
  color: var(--sand);
  font-size: clamp(2.6rem, 6vw, 6.1rem);
}

.manifesto p:last-child {
  max-width: 700px;
  margin: 34px auto 0;
  color: rgba(244, 241, 232, 0.6);
}

.tracks-section {
  background: linear-gradient(180deg, #0a1724 0%, var(--midnight) 30%, var(--midnight) 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 66px;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 5px;
  color: rgba(244, 241, 232, 0.55);
}

.journey {
  position: relative;
}

.journey::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 36px;
  z-index: 0;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, var(--gold) 9%, rgba(212, 175, 55, 0.25) 91%, transparent);
}

.track-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: clamp(22px, 4vw, 52px);
  padding: 0 0 24px;
}

.track-number {
  display: grid;
  align-self: start;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  background: var(--midnight);
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
}

.track-content {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(29, 43, 58, 0.72), rgba(8, 19, 32, 0.62));
  transition: border-color 180ms ease, transform 180ms ease;
}

.track-card:hover .track-content {
  transform: translateX(4px);
  border-color: rgba(212, 175, 55, 0.32);
}

.track-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.track-meta {
  margin: 0 0 8px;
  color: rgba(244, 241, 232, 0.46);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.track-meta span {
  color: var(--gold);
}

.track-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
}

.track-suffix {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold-soft);
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.track-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.08);
}

.track-theme {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(244, 241, 232, 0.6);
}

.lyrics {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.lyrics summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0 0;
  list-style: none;
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lyrics summary::-webkit-details-marker {
  display: none;
}

.details-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.lyrics[open] .details-mark {
  transform: rotate(45deg);
}

.lyrics-body {
  columns: 2;
  column-gap: 64px;
  max-width: 850px;
  padding: 36px 0 12px;
  color: rgba(244, 241, 232, 0.78);
}

.lyrics-body h4 {
  break-after: avoid;
  margin: 22px 0 8px;
  color: var(--gold-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lyrics-body h4:first-child {
  margin-top: 0;
}

.lyrics-body p {
  break-inside: avoid;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.65;
}

.lyric-space {
  display: block;
  height: 8px;
}

.project-section {
  overflow: hidden;
  background: var(--ivory);
  color: var(--midnight);
}

.project-section::after {
  position: absolute;
  top: -28%;
  right: -15%;
  width: 48vw;
  height: 48vw;
  content: "";
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
}

.project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(55px, 10vw, 140px);
}

.project-mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(8, 19, 32, 0.12);
  background: linear-gradient(145deg, #122536, #07111c);
  box-shadow: 0 28px 70px rgba(8, 19, 32, 0.18);
}

.project-mark img {
  width: 73%;
  filter: drop-shadow(0 15px 24px rgba(0, 0, 0, 0.28));
}

.project-copy .eyebrow {
  color: #997a19;
}

.project-copy > p:not(.eyebrow) {
  color: rgba(8, 19, 32, 0.68);
}

.motto {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 38px;
  color: #8d7018;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credits-section {
  background:
    radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.1), transparent 30rem),
    #07111b;
}

.section-heading.compact {
  margin-bottom: 52px;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.credits-grid article {
  min-height: 230px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credits-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.credits-grid strong {
  display: block;
  min-height: 58px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
}

.credits-grid p {
  margin: 18px 0 0;
  color: rgba(244, 241, 232, 0.5);
  font-size: 0.84rem;
  line-height: 1.7;
}

.contact-section {
  padding-top: 0;
  background: #07111b;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 60px;
  padding: clamp(42px, 8vw, 90px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background:
    radial-gradient(circle at 86% 0%, rgba(212, 175, 55, 0.14), transparent 22rem),
    linear-gradient(135deg, rgba(29, 43, 58, 0.9), rgba(8, 19, 32, 0.9));
}

.contact-copy p {
  margin: 0 0 26px;
  color: rgba(244, 241, 232, 0.62);
}

.contact-copy .button {
  max-width: 100%;
  text-transform: none;
}

.contact-copy small {
  display: block;
  margin-top: 16px;
  color: rgba(244, 241, 232, 0.4);
  font-size: 0.67rem;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #050c14;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-inner > p {
  margin: 0;
  color: rgba(244, 241, 232, 0.4);
  font-size: 0.67rem;
  text-align: center;
}

.footer-inner > a:last-child {
  justify-self: end;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .album-grid,
  .project-grid,
  .section-heading,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .album-art {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .project-mark {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .section-heading,
  .contact-card {
    gap: 30px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    width: calc(100vw - 32px);
    height: 82px;
  }

  .nav-brand img {
    width: auto;
    height: 66px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 0.62rem;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switcher {
    gap: 2px;
    padding: 2px;
  }

  .language-option {
    width: 29px;
    height: 29px;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 820px;
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 11, 18, 0.88), rgba(5, 11, 18, 0.34)),
      linear-gradient(0deg, var(--midnight) 0%, rgba(5, 11, 18, 0.42) 55%, rgba(5, 11, 18, 0.2) 100%);
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 126px;
    padding-bottom: 100px;
  }

  .hero-message {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(4rem, 21vw, 6.4rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .release-note {
    align-items: flex-start;
    font-size: 0.62rem;
  }

  .release-note .release-rule {
    margin-top: 0.65em;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 82px;
  }

  .album-grid,
  .project-grid {
    gap: 55px;
  }

  .album-stats {
    gap: 18px;
  }

  .album-stats strong {
    font-size: 1.14rem;
  }

  .album-stats span {
    font-size: 0.52rem;
  }

  .manifesto::before,
  .manifesto::after {
    display: none;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .journey::before {
    left: 23px;
  }

  .track-card {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .track-number {
    width: 48px;
    height: 48px;
    font-size: 0.66rem;
  }

  .track-content {
    padding: 24px 20px;
  }

  .track-dot {
    display: none;
  }

  .track-theme {
    font-size: 0.88rem;
  }

  .lyrics-body {
    columns: 1;
  }

  .lyrics-body p {
    font-size: 0.94rem;
  }

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

  .credits-grid article {
    min-height: auto;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .contact-copy .button {
    width: 100%;
    padding-inline: 14px;
    font-size: 0.66rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner > a:last-child,
  .footer-inner > p {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .scroll-cue,
  .contact-section,
  .site-footer {
    display: none !important;
  }

  body,
  .project-section,
  .tracks-section,
  .credits-section {
    background: white !important;
    color: black !important;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
    background: #081320 !important;
  }

  .track-content,
  .credits-grid article {
    break-inside: avoid;
    border-color: #bbb;
    background: white;
  }

  .lyrics:not([open]) .lyrics-body {
    display: none;
  }
}


/* Release artwork additions — preserves the existing track-card layout */
.single-release {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 22px;
  max-width: 620px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(5, 11, 18, 0.28);
}

.single-release img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.single-release-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.single-release-copy > span {
  color: var(--gold-soft);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-release-copy strong {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 500;
}

.single-release-copy small {
  color: rgba(244, 241, 232, 0.48);
}

.translation-toggle {
  margin-top: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.translation-toggle:hover,
.translation-toggle:focus-visible {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.14);
}

.walk-translation {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.translation-label {
  margin: 0 0 18px !important;
  color: var(--gold-soft) !important;
  font-size: 0.68rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .single-release {
    grid-template-columns: 86px 1fr;
    gap: 15px;
  }

  .single-release img {
    width: 86px;
  }
}


/* 30-second track preview controls */
.track-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.preview-button:hover,
.preview-button:focus-visible {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  color: #fff4ca;
}

.preview-button:active {
  transform: translateY(1px);
}

.preview-button.is-playing {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--midnight);
}

.preview-icon {
  width: 0.72rem;
  font-size: 0.62rem;
  line-height: 1;
  text-align: center;
}

@media (max-width: 680px) {
  .track-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .track-actions {
    gap: 10px;
  }

  .preview-button {
    min-height: 32px;
    padding: 7px 11px;
  }
}
