:root {
  --cream: #fff4e6;
  --paper: #fff9f1;
  --sun: #ff9b3d;
  --apricot: #ffb04b;
  --amber: #f6c667;
  --ember: #dc6a1e;
  --burnt: #8c3d12;
  --ink: #2b1409;
  --ink-soft: rgba(43, 20, 9, 0.7);
  --line: rgba(89, 38, 11, 0.14);
  --card: rgba(255, 249, 241, 0.78);
  --card-strong: rgba(255, 245, 232, 0.92);
  --shadow: 0 30px 80px rgba(108, 44, 9, 0.18);
  --radius-lg: 34px;
  --radius-md: 26px;
  --radius-sm: 18px;
  font-family: 'Manrope', sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 196, 109, 0.5), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(255, 138, 43, 0.35), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(190, 79, 20, 0.2), transparent 30%),
    linear-gradient(180deg, #fff3db 0%, #ffd7a2 20%, #ffb15c 46%, #f58f34 68%, #c95b1c 100%);
}

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

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

.frame {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 244, 230, 0.66);
  border-bottom: 1px solid rgba(89, 38, 11, 0.1);
}

.header .frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(89, 38, 11, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.78);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.tag,
.overline,
.label,
.card-footer,
.links,
.chip,
.social-links a,
.nav,
.pill {
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.tag,
.overline,
.label,
.summary,
.hero-note p,
.visual-meta p,
.section-head.split .summary,
.contact-panel .summary {
  color: var(--ink-soft);
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.67rem;
}

.nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--sun), var(--burnt));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 700;
  background: rgba(255, 248, 238, 0.7);
}

.pill.primary {
  color: #fff7ef;
  border-color: transparent;
  background: linear-gradient(120deg, #ffb347, #e0681d 78%);
  box-shadow: 0 24px 60px rgba(182, 83, 21, 0.3);
}

.pill.ghost {
  background: rgba(255, 244, 228, 0.35);
}

.hero-block {
  position: relative;
  overflow: clip;
  padding: 6.5rem 0 4.5rem;
}

.sun-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.sun-orb-left {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 40px;
  background: radial-gradient(circle, rgba(255, 219, 144, 0.52), rgba(255, 165, 52, 0));
}

.sun-orb-right {
  width: 440px;
  height: 440px;
  right: -100px;
  top: -40px;
  background: radial-gradient(circle, rgba(255, 176, 73, 0.4), rgba(255, 137, 42, 0));
}

.hero-grid,
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hero-copy,
.hero-rail {
  position: relative;
}

.hero-copy {
  z-index: 2;
}

.hero-rail {
  z-index: 1;
}

.hero-copy h1,
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-copy h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(4.3rem, 9vw, 7.8rem);
  margin: 0.5rem 0 1.3rem;
  max-width: 8ch;
  text-shadow: 0 12px 28px rgba(255, 245, 229, 0.38);
}

.summary {
  font-size: 1rem;
  line-height: 1.75;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.label,
.overline {
  font-size: 0.7rem;
  margin: 0 0 0.45rem;
}

.hero-meta p,
.hero-note p,
.release-body p,
.visual-meta p {
  margin-top: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-rail {
  display: grid;
  gap: 1.4rem;
}

.hero-card,
.hero-note,
.social-links a {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  transform: rotate(-1.6deg);
}

.hero-note {
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
}

.cover-wrap,
.release-art,
.ratio {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  border: 1px solid rgba(89, 38, 11, 0.08);
}

.cover-wrap img,
.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  font-size: 0.72rem;
  color: rgba(43, 20, 9, 0.58);
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 100px;
  background: radial-gradient(circle at 50% -20%, rgba(255, 232, 166, 0.38), transparent 72%);
  pointer-events: none;
}

.section-head h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 1.5rem;
  align-items: end;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(89, 38, 11, 0.12);
}

.section-head h2 {
  margin-top: 0.45rem;
}

.releases {
  background: linear-gradient(180deg, rgba(255, 239, 214, 0.36), rgba(255, 243, 225, 0.18));
}

.releases .section-head {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
}

.release-showcase,
.visual-showcase {
  display: grid;
  gap: 1.9rem;
  padding: 2rem;
  border-radius: 36px;
  border: 1px solid rgba(89, 38, 11, 0.12);
  box-shadow: 0 36px 90px rgba(120, 51, 10, 0.14);
}

.release-showcase {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 210, 132, 0.34), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 237, 0.82), rgba(255, 236, 205, 0.82));
}

.visual-showcase {
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(255, 188, 99, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(111, 42, 9, 0.9), rgba(63, 24, 6, 0.94));
  padding: 1.4rem;
  border-radius: 36px;
  min-height: 0;
}

.release-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  min-height: 0;
  padding: 1.5rem;
  border-radius: 30px;
  background: rgba(255, 247, 233, 0.72);
  border: 1px solid rgba(89, 38, 11, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 223, 161, 0.12), rgba(214, 88, 24, 0.26)),
    var(--card-strong);
}

.release-list {
  display: grid;
  gap: 1.05rem;
}

.release-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.72);
  border: 1px solid rgba(89, 38, 11, 0.1);
  box-shadow: 0 12px 26px rgba(122, 56, 16, 0.08);
}

.visual-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.visual-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.5fr);
  gap: 1rem;
  padding: 0.95rem;
  border-radius: 22px;
  background: rgba(255, 248, 237, 0.08);
  border: 1px solid rgba(255, 202, 135, 0.14);
  min-height: 0;
}

.visual-tile {
  display: grid;
  gap: 0.65rem;
  padding: 0.7rem;
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.06);
  border: 1px solid rgba(255, 202, 135, 0.1);
}

.release-art,
.release-row-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.release-row-art {
  overflow: hidden;
  border-radius: 18px;
}

.release-hero-art,
.release-hero-art img {
  width: 100%;
  height: 100%;
}

.release-hero-art {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(89, 38, 11, 0.08);
  box-shadow: 0 28px 70px rgba(144, 63, 11, 0.22);
}

.release-hero-body,
.visual-hero-body,
.release-row-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.release-row-body {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.25rem;
}

.release-hero-body {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.release-hero h3,
.release-row h3,
.visual-hero h3,
.visual-meta h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.6rem;
}

.release-hero h3 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  max-width: 8ch;
  text-wrap: balance;
}

.release-row h3 {
  font-size: 1.3rem;
  line-height: 1.05;
  text-wrap: balance;
}

.release-hero .links {
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.64rem;
  color: var(--burnt);
  margin-top: auto;
}

.links a {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.stream-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #fff7ef;
  background: linear-gradient(120deg, #e57e2e, #bc4f18 78%);
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(182, 83, 21, 0.18);
}

.stream-link:hover,
.stream-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(182, 83, 21, 0.24);
}

.links a:not(.stream-link) {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(89, 38, 11, 0.14);
  background: rgba(255, 247, 235, 0.76);
}

.links a:not(.stream-link):hover,
.links a:not(.stream-link):focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 241, 221, 0.96);
}

.release-row .links {
  margin-top: 0;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.release-row-body > div:first-child {
  min-width: 0;
}

.storyboard {
  background: linear-gradient(180deg, rgba(255, 238, 212, 0.3), rgba(255, 249, 240, 0.4));
}

.storyboard .section-head {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.ratio {
  position: relative;
  width: 100%;
  padding-top: 52%;
  border-radius: 20px;
  margin-bottom: 0;
}

.ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.visual-hero-media {
  min-height: 100%;
  border: 1px solid rgba(255, 202, 135, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.visual-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  color: #fff0df;
}

.visual-meta .label {
  color: rgba(255, 220, 181, 0.72);
}

.visual-meta h3 {
  margin: 0;
}

.visual-hero-body {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.1rem 0.2rem 0.1rem 0;
  gap: 0.7rem;
  color: #fff0df;
}

.visual-hero-body .label {
  color: rgba(255, 220, 181, 0.72);
}

.visual-hero h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.visual-meta .pill.ghost,
.visual-hero-body .pill.ghost {
  border-color: rgba(255, 209, 155, 0.18);
  background: rgba(255, 244, 228, 0.08);
  color: #fff0df;
}

.visual-meta .pill.ghost:hover,
.visual-meta .pill.ghost:focus-visible,
.visual-hero-body .pill.ghost:hover,
.visual-hero-body .pill.ghost:focus-visible {
  background: rgba(255, 244, 228, 0.14);
}

.visual-tile .pill {
  padding-inline: 1.2rem;
}

.contact-panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 122, 0.34), transparent 28%),
    linear-gradient(180deg, #9f4a19 0%, #6d2b0e 100%);
  color: #fff8f0;
}

.contact-panel .overline,
.contact-panel h2,
.contact-panel .summary {
  color: #fff8f0;
}

.contact-panel .summary {
  max-width: 34rem;
  color: rgba(255, 244, 232, 0.9);
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.social-links a {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-size: 0.62rem;
  color: #fff8f0;
  background: rgba(255, 243, 229, 0.14);
  border: 1px solid rgba(255, 226, 190, 0.14);
  box-shadow: 0 12px 28px rgba(73, 25, 8, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 243, 229, 0.22);
  border-color: rgba(255, 226, 190, 0.24);
}

[data-animate] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid,
  .visual-hero,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .visual-wall {
    grid-template-columns: 1fr;
  }

  .release-showcase,
  .visual-showcase {
    padding: 1.2rem;
  }

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

  .hero-card {
    transform: none;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .release-row-body {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .release-row .links {
    min-width: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .frame {
    width: min(100% - 1.4rem, 1000px);
  }

  .header .frame {
    position: relative;
    gap: 0.85rem;
    padding: 0.9rem 0;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header .pill {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(89, 38, 11, 0.12);
    background: rgba(255, 247, 236, 0.96);
    box-shadow: 0 20px 36px rgba(93, 37, 9, 0.12);
    backdrop-filter: blur(16px);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: rgba(255, 243, 229, 0.72);
  }

  .nav a::after {
    display: none;
  }

  .hero-block,
  .section {
    padding: 3.8rem 0;
  }

  .header {
    position: sticky;
  }

  .brand-block {
    gap: 0.15rem;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }

  .hero-actions,
  .social-links {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
    margin-bottom: 1rem;
  }

  .hero-card {
    padding: 1rem;
    max-width: 320px;
  }

  .card-footer {
    font-size: 0.62rem;
  }

  .section-head {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .section-head h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    margin-bottom: 0.35rem;
  }

  .release-showcase,
  .visual-showcase {
    gap: 0.8rem;
    padding: 0.85rem;
    border-radius: 26px;
  }

  .release-hero,
  .visual-hero {
    padding: 0.8rem;
    border-radius: 18px;
  }

  .visual-wall {
    grid-template-columns: 1fr;
  }

  .release-hero h3 {
    font-size: 2.25rem;
    max-width: none;
  }

  .release-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.85rem;
    border-radius: 20px;
  }

  .release-hero {
    gap: 1rem;
  }

  .release-row-art {
    border-radius: 14px;
  }

  .release-row h3 {
    font-size: 1.05rem;
  }

  .links,
  .release-row .links {
    gap: 0.55rem;
  }

  .links a,
  .stream-link,
  .visual-tile .pill,
  .visual-hero-body .pill.ghost,
  .visual-meta .pill.ghost {
    padding: 0.62rem 0.82rem;
    font-size: 0.56rem;
  }

  .visual-hero h3 {
    font-size: 1.6rem;
  }

  .visual-tile {
    padding: 0.65rem;
    border-radius: 16px;
  }

  .visual-showcase {
    min-height: 0;
    padding: 0.85rem;
  }

  .visual-hero-media,
  .visual-tile .ratio {
    box-shadow: none;
  }

  .visual-meta {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .contact-grid {
    gap: 1.2rem;
  }

  .contact-panel .summary {
    max-width: none;
  }

  .social-links {
    gap: 0.65rem;
  }

  .social-links a {
    padding: 0.88rem 0.95rem;
    border-radius: 15px;
  }
}

@media (max-width: 540px) {
  .frame {
    width: min(100% - 1rem, 1000px);
  }

  .hero-block,
  .section {
    padding: 3.2rem 0;
  }

  .sun-orb-left {
    width: 220px;
    height: 220px;
    left: -90px;
    top: 20px;
  }

  .sun-orb-right {
    width: 260px;
    height: 260px;
    right: -110px;
    top: -50px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 18vw, 4.2rem);
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .pill,
  .links a,
  .stream-link {
    width: 100%;
  }

  .release-row {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
  }

  .release-row-body {
    gap: 0.8rem;
  }

  .release-row .links,
  .release-hero .links {
    width: 100%;
  }

  .release-row .links a,
  .release-hero .links a {
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: center;
  }

  .visual-hero,
  .visual-tile {
    padding: 0.7rem;
    border-radius: 16px;
  }

  .ratio {
    padding-top: 56%;
  }

  .visual-hero-media {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

  .visual-hero,
  .release-hero,
  .visual-tile {
    gap: 0.55rem;
  }

  .visual-hero-body,
  .visual-meta {
    gap: 0.55rem;
  }

  .visual-hero h3,
  .visual-meta h3 {
    font-size: 1rem;
    line-height: 1.02;
  }

  .visual-showcase {
    gap: 0.7rem;
    padding: 0.75rem;
  }

  .visual-hero-body .pill.ghost,
  .visual-meta .pill.ghost {
    width: auto;
    min-width: 0;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}
