:root {
  --pink: #e46f80;
  --soft-pink: #e9cad2;
  --white: #ffffff;
  --gray: #d2d2d0;
  --black: #000000;
  --page-padding: clamp(1.25rem, 4vw, 4.75rem);
  --display-font: "Sora", sans-serif;
  --body-font: "Raleway", sans-serif;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: var(--body-font);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body.player-open {
  padding-bottom: 98px;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.022;
  pointer-events: none;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--page-padding);
  transition:
    min-height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  font-family: var(--display-font);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.4rem);
}

.main-nav a {
  position: relative;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) var(--page-padding) 4rem;
  background:
    linear-gradient(
      130deg,
      var(--white) 0%,
      var(--white) 56%,
      #fbf3f5 56%,
      var(--soft-pink) 100%
    );
}

.hero-content {
  width: min(100%, 1180px);
  text-align: center;
}

.hero-kicker {
  min-height: 1.2em;
  margin-bottom: 1.15rem;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.hero-kicker:empty {
  display: none;
}

.hero-title {
  font-family: var(--display-font);
  font-size: clamp(4.2rem, 15vw, 13.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-wrap: balance;
}

.hero-tagline {
  max-width: 620px;
  margin: 2rem auto 0;
  color: #353535;
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.035em;
}

.hero-tagline:empty {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  min-width: 170px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--black);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--black);
  background: var(--black);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.hero-footer {
  position: absolute;
  right: var(--page-padding);
  bottom: 2rem;
  left: var(--page-padding);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-footer-line {
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, 0.18);
}

.section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9.5rem) var(--page-padding);
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.compact-heading {
  margin-bottom: 2.4rem;
}

.section-label {
  margin-bottom: 0.8rem;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.section-header h2,
.contact-callout h2 {
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 6.7vw, 6.3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.92;
}

.section-index {
  color: var(--pink);
  font-family: var(--display-font);
  font-size: 0.82rem;
}

.featured {
  background: var(--black);
  color: var(--white);
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.featured-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--soft-pink);
}

.featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-cover:hover img {
  transform: scale(1.035);
}

.featured-play {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  display: grid;
  width: 72px;
  height: 72px;
  cursor: pointer;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(228, 111, 128, 0.34);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.featured-play:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.08);
}

.featured-description {
  max-width: 700px;
  color: var(--gray);
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.42;
}

.featured-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.featured-meta div {
  padding: 1.2rem 1rem 1.2rem 0;
}

.featured-meta dt {
  margin-bottom: 0.3rem;
  color: var(--pink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-meta dd {
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--pink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--pink);
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(4px, -3px);
}

.music {
  background: #f8f7f5;
}

.music-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.music-toolbar > p {
  max-width: 520px;
  color: #545454;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.filter-button {
  cursor: pointer;
  padding: 0.68rem 0.92rem;
  border: 1px solid var(--gray);
  background: transparent;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.4vw, 2.4rem);
}

.release-card {
  overflow: hidden;
  background: var(--white);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.release-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.release-artwork {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--soft-pink);
}

.release-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.release-card:hover .release-artwork img {
  transform: scale(1.045);
}

.release-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.48rem 0.72rem;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.release-play {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 58px;
  height: 58px;
  cursor: pointer;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(228, 111, 128, 0.36);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.release-play:hover {
  background: var(--black);
  transform: scale(1.08);
}

.release-content {
  padding: 1.35rem;
}

.release-content h3 {
  font-family: var(--display-font);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.release-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.45rem;
  color: #666;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.release-description {
  margin-top: 1rem;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.75;
}

.release-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid var(--pink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement {
  display: grid;
  min-height: 68vh;
  place-items: center;
  overflow: hidden;
  padding: 7rem var(--page-padding);
  background: var(--pink);
  text-align: center;
}

.statement-copy {
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 7.8vw, 8.3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.statement-copy span {
  color: var(--white);
  -webkit-text-stroke: 1px var(--black);
}

.social {
  background: var(--white);
}

.social-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.social-item {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 145px;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  gap: 0.8rem 0.85rem;
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid var(--gray);
  background: #f8f7f5;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.social-item::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 64px;
  height: 64px;
  content: "";
  background: var(--soft-pink);
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

.social-item:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-5px);
}

.social-item:hover::after {
  transform: rotate(45deg) scale(1.25);
}

.social-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
  padding: 7px;
  border: 1px solid var(--gray);
  border-radius: 12px;
  background: var(--white);
}

.social-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-details {
  min-width: 0;
}

.social-name {
  display: block;
  overflow: hidden;
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-handle {
  display: block;
  overflow: hidden;
  color: #666;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-item:hover .social-handle {
  color: var(--gray);
}

.social-arrow {
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: end;
  color: var(--pink);
  font-size: 1.35rem;
  transition: transform 0.25s ease;
}

.social-item:hover .social-arrow {
  transform: translate(5px, -3px);
}

.contact-callout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  background: var(--soft-pink);
}

.contact-callout-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--black);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
}

.contact-callout-link span {
  color: var(--pink);
  font-size: 1.6rem;
  transition: transform 0.25s ease;
}

.contact-callout-link:hover span {
  transform: translate(5px, -4px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem var(--page-padding);
  background: var(--black);
  color: var(--white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.footer-social-link,
.contact-social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  background: var(--white);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.footer-social-link:hover {
  border-color: var(--pink);
  background: var(--pink);
  transform: translateY(-3px);
}

.footer-social-link .social-logo-image,
.contact-social-link .social-logo-image {
  width: 22px;
  height: 22px;
}

.social-logo-image-small {
  object-fit: contain;
}

.footer-meta {
  color: var(--gray);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-align: right;
}

.audio-player {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 90;
  display: grid;
  grid-template-columns: 58px minmax(145px, 0.7fr) auto minmax(260px, 1.3fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(0, 0, 0, 0.95);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(135%);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  backdrop-filter: blur(18px);
}

.audio-player.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.audio-player > img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.player-track-info {
  display: grid;
}

.player-track-info strong {
  font-family: var(--display-font);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.player-track-info span {
  color: var(--gray);
  font-size: 0.68rem;
}

.player-button,
.player-close {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--white);
}

.player-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.player-close {
  font-size: 1.6rem;
}

.player-timeline {
  display: grid;
  grid-template-columns: 40px 1fr 88px;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.62rem;
}

.player-timeline input {
  width: 100%;
  accent-color: var(--pink);
}

/* CONTACT PAGE */

.contact-hero {
  min-height: 67svh;
  display: grid;
  align-content: end;
  padding:
    calc(var(--header-height) + 5rem)
    var(--page-padding)
    clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(135deg, var(--white) 0 58%, #fbf3f5 58% 100%);
}

.contact-hero h1 {
  max-width: 1050px;
  font-family: var(--display-font);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.contact-hero-copy {
  max-width: 650px;
  margin-top: 2rem;
  color: #4d4d4d;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.contact-page-section {
  background: #f8f7f5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-information h2 {
  max-width: 650px;
  font-family: var(--display-font);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.contact-information > p:not(.section-label) {
  max-width: 540px;
  margin-top: 1.6rem;
  color: #555;
}

.contact-email {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--pink);
  overflow-wrap: anywhere;
  font-weight: 600;
}

.contact-email span {
  color: var(--pink);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.2rem;
}

.contact-social-link {
  border-color: var(--black);
  background: var(--white);
}

.contact-social-link:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form {
  display: grid;
  gap: 1.3rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.07);
}

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

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field > span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--gray);
  outline: none;
  background: #fcfcfb;
  color: var(--black);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-field input {
  min-height: 52px;
  padding: 0 0.95rem;
}

.form-field textarea {
  min-height: 170px;
  padding: 0.9rem 0.95rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(228, 111, 128, 0.12);
}

.form-field input:user-invalid,
.form-field textarea:user-invalid {
  border-color: #9f2635;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.form-submit {
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  color: #555;
  font-size: 0.82rem;
}

.form-status.success {
  color: #28623a;
}

.form-status.error {
  color: #9f2635;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .social-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .featured-layout {
    gap: 3rem;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
  }

  .menu-toggle {
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    cursor: pointer;
    place-content: center;
    gap: 7px;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--black);
    transition: transform 0.25s ease;
  }

  .menu-toggle.open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2rem;
    background: var(--soft-pink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6%);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-family: var(--display-font);
    font-size: 1.45rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .hero-title {
    font-size: clamp(3.7rem, 20vw, 7rem);
    line-height: 0.9;
  }

  .hero-tagline {
    max-width: 430px;
  }

  .hero-footer {
    bottom: 1.4rem;
  }

  .featured-layout {
    grid-template-columns: 1fr;
  }

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

  .featured-meta div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .music-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-list {
    justify-content: flex-start;
  }

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

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

  .social-item {
    min-height: 135px;
    grid-template-columns: 38px 1fr;
    padding: 0.95rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-name {
    font-size: 1rem;
  }

  .contact-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .audio-player {
    grid-template-columns: 48px 1fr auto auto;
    gap: 0.7rem;
  }

  .audio-player > img {
    width: 48px;
    height: 48px;
  }

  .player-timeline {
    grid-column: 1 / -1;
  }

  .contact-hero {
    min-height: 58svh;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-header {
    align-items: flex-end;
  }

  .section-header h2,
  .contact-callout h2 {
    font-size: clamp(2.7rem, 16vw, 4.5rem);
  }

  .featured-play,
  .release-play {
    width: 54px;
    height: 54px;
  }

  .statement {
    min-height: 58vh;
  }

  .social-list {
    gap: 0.6rem;
  }

  .social-item {
    min-height: 126px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .social-details {
    width: 100%;
  }

  .social-arrow {
    grid-column: 1;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ORIGINAL SOCIAL LOGO ASSETS */
.social-item:hover .social-icon {
  border-color: rgba(255, 255, 255, 0.35);
  background: var(--white);
}

.footer-social-link:hover,
.contact-social-link:hover {
  background: var(--white);
}

.footer-social-link:hover .social-logo-image,
.contact-social-link:hover .social-logo-image,
.social-item:hover .social-logo-image {
  transform: scale(1.06);
}

.social-logo-image {
  transition: transform 0.25s ease;
}


/* =========================================================
   RESPONSIVE REPAIR + DARK MODE
   ========================================================= */

.site-header { gap: .75rem; }
.brand { flex: 0 0 auto; }
.main-nav { order: 2; margin-left: auto; }
.menu-toggle { order: 4; }

.theme-toggle {
  position: relative;
  z-index: 74;
  order: 3;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  cursor: pointer;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.66);
  color: var(--black);
  transition: .25s ease;
}
.theme-toggle:hover { border-color: var(--pink); background: var(--pink); color: #fff; transform: translateY(-2px); }
.theme-icon { position: absolute; font-size: 1.12rem; line-height: 1; transition: .25s ease; }
.theme-icon-sun { opacity: 0; transform: rotate(-35deg) scale(.6); }
html[data-theme="dark"] .theme-icon-moon { opacity: 0; transform: rotate(35deg) scale(.6); }
html[data-theme="dark"] .theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }

html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }
html[data-theme="dark"] body { background: #0d0f12; color: #f5f5f2; }
html[data-theme="dark"] .page-noise { opacity: .04; filter: invert(1); }
html[data-theme="dark"] .site-header.scrolled,
html[data-theme="dark"] body[data-page="contact"] .site-header { background: rgba(13,15,18,.92); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
html[data-theme="dark"] .brand,
html[data-theme="dark"] .main-nav a,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .theme-toggle { color: #f5f5f2; }
html[data-theme="dark"] .menu-toggle span { background: #f5f5f2; }
html[data-theme="dark"] .theme-toggle { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); }
html[data-theme="dark"] .hero { background: linear-gradient(130deg,#0d0f12 0 56%,#171117 56%,#2c1920 100%); }
html[data-theme="dark"] .hero-tagline,
html[data-theme="dark"] .music-toolbar>p,
html[data-theme="dark"] .release-description,
html[data-theme="dark"] .release-meta,
html[data-theme="dark"] .social-handle,
html[data-theme="dark"] .contact-information>p:not(.section-label),
html[data-theme="dark"] .contact-hero-copy,
html[data-theme="dark"] .form-status { color: #b8b9bc; }
html[data-theme="dark"] .hero-footer-line { background: rgba(255,255,255,.24); }
html[data-theme="dark"] .button-secondary { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.06); color: #f5f5f2; }
html[data-theme="dark"] .button-secondary:hover { border-color: var(--pink); background: var(--pink); }
html[data-theme="dark"] .music,
html[data-theme="dark"] .contact-page-section { background: #101216; }
html[data-theme="dark"] .release-card,
html[data-theme="dark"] .social-item,
html[data-theme="dark"] .contact-form { border-color: #30343a; background: #181b20; color: #f5f5f2; }
html[data-theme="dark"] .release-card:hover,
html[data-theme="dark"] .contact-form { box-shadow: 0 24px 64px rgba(0,0,0,.34); }
html[data-theme="dark"] .filter-button { border-color: #3b3f46; color: #e8e8e5; }
html[data-theme="dark"] .filter-button:hover,
html[data-theme="dark"] .filter-button.active { border-color: var(--pink); background: var(--pink); color: #fff; }
html[data-theme="dark"] .social { background: #0d0f12; }
html[data-theme="dark"] .social-item:hover { border-color: var(--pink); background: #22262c; }
html[data-theme="dark"] .social-item:hover .social-handle { color: #c4c5c8; }
html[data-theme="dark"] .social-icon,
html[data-theme="dark"] .footer-social-link,
html[data-theme="dark"] .contact-social-link { border-color: #3b3f46; background: #fff; }
html[data-theme="dark"] .contact-callout { background: #291821; }
html[data-theme="dark"] .contact-callout-link { border-color: #f5f5f2; }
html[data-theme="dark"] .contact-hero { background: linear-gradient(135deg,#0d0f12 0 58%,#191219 58% 100%); }
html[data-theme="dark"] .form-field input,
html[data-theme="dark"] .form-field textarea { border-color: #343840; background: #101216; color: #f5f5f2; }
html[data-theme="dark"] .form-field input::placeholder,
html[data-theme="dark"] .form-field textarea::placeholder { color: #74777d; }
html[data-theme="dark"] .form-field input:focus,
html[data-theme="dark"] .form-field textarea:focus { border-color: var(--pink); background: #14171b; }
html[data-theme="dark"] .site-footer { background: #060709; }
html[data-theme="dark"] .audio-player { border: 1px solid #33373d; background: rgba(7,8,10,.97); }

.hero-content,.featured-content,.contact-information,.contact-form,.release-card,.social-item { min-width: 0; }
.hero-title { max-width: 100%; }

@media (max-width: 760px) {
  :root { --page-padding: clamp(1rem,5vw,1.35rem); --header-height: 68px; }
  .site-header {
    width: 100%;
    min-height: var(--header-height);
    padding-inline: var(--page-padding);
    gap: .45rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: none;
  }
  .site-header.scrolled { min-height: var(--header-height); backdrop-filter: none; }
  html[data-theme="dark"] .site-header { background: rgba(13,15,18,.96); }
  .brand {
    max-width: calc(100vw - 120px);
    margin-right: auto;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: .12em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .theme-toggle,.menu-toggle { width: 40px; height: 40px; flex-basis: 40px; z-index: 75; }
  .main-nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 72;
    display: grid;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    margin: 0;
    padding: calc(var(--header-height) + 2rem) 1.5rem max(2rem,env(safe-area-inset-bottom));
    align-content: center;
    justify-items: center;
    gap: clamp(1.25rem,5vh,2.5rem);
    overflow-y: auto;
    background: var(--soft-pink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }
  html[data-theme="dark"] .main-nav { background: #20151b; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { max-width: 100%; font-size: clamp(1.45rem,7vw,2rem); line-height: 1.15; text-align: center; }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 2.25rem) var(--page-padding) calc(4.5rem + env(safe-area-inset-bottom));
  }
  .hero-content { width: 100%; }
  .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.9rem,15.2vw,5.15rem);
    letter-spacing: -.065em;
    line-height: .92;
    white-space: nowrap;
  }
  .hero-tagline { width: min(100%,31rem); margin-top: 1.35rem; font-size: .96rem; }
  .hero-actions { width: 100%; margin-top: 1.8rem; }
  .hero-actions .button { width: min(100%,28rem); min-width: 0; }
  .hero-footer { right: var(--page-padding); bottom: calc(1.1rem + env(safe-area-inset-bottom)); left: var(--page-padding); }

  .section { padding: clamp(4.2rem,14vw,6rem) var(--page-padding); }
  .section-header { gap: 1rem; margin-bottom: 2.4rem; }
  .section-header h2,.contact-callout h2 { max-width: calc(100vw - 4.5rem); font-size: clamp(2.45rem,13vw,4.1rem); overflow-wrap: anywhere; line-height: .98; }
  .featured-layout { gap: 2rem; }
  .featured-description { font-size: clamp(1.3rem,6vw,2rem); }
  .featured-meta { margin-top: 2rem; }
  .music-toolbar { gap: 1.2rem; }
  .filter-list { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .35rem; }
  .filter-button { flex: 0 0 auto; }
  .release-grid { gap: 1.15rem; }
  .statement { min-height: 50svh; padding: 5rem var(--page-padding); }
  .statement-copy { font-size: clamp(2.25rem,11vw,4.2rem); overflow-wrap: anywhere; }

  .social-list { grid-template-columns: repeat(2,minmax(0,1fr)); gap: .65rem; }
  .social-item {
    min-height: 102px;
    grid-template-columns: 38px minmax(0,1fr);
    grid-template-rows: auto auto;
    gap: .4rem .65rem;
    padding: .8rem;
  }
  .social-icon { width: 38px; height: 38px; padding: 4px; }
  .social-name { font-size: clamp(.82rem,3.6vw,1rem); }
  .social-handle { font-size: .6rem; }
  .social-arrow { position: absolute; right: .7rem; bottom: .45rem; grid-column: auto; font-size: 1rem; }

  .contact-callout { gap: 2rem; }
  .contact-page-section { padding-top: calc(var(--header-height) + 2.25rem); }
  .contact-layout { gap: 2.5rem; }
  .contact-information h2 { font-size: clamp(2.25rem,11vw,3.8rem); }
  .contact-form { width: 100%; padding: 1rem; }
  .form-field input,.form-field textarea { font-size: 16px; }

  .site-footer { gap: 1.25rem; padding: 2rem var(--page-padding) calc(2rem + env(safe-area-inset-bottom)); }
  .footer-socials { max-width: 100%; gap: .45rem; }
  .footer-social-link,.contact-social-link { width: 38px; height: 38px; padding: 7px; }

  .audio-player {
    right: .6rem;
    bottom: calc(.6rem + env(safe-area-inset-bottom));
    left: .6rem;
    grid-template-columns: 44px minmax(0,1fr) 40px 34px;
    gap: .55rem;
    padding: .65rem;
  }
  .audio-player>img { width: 44px; height: 44px; }
  .player-track-info { min-width: 0; }
  .player-track-info strong,.player-track-info span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .player-timeline { grid-column: 1/-1; grid-template-columns: 34px minmax(0,1fr) 92px; }
}

@media (max-width: 390px) {
  .hero-title { font-size: clamp(2.65rem,14.6vw,3.6rem); }
  .social-list { grid-template-columns: 1fr; }
  .social-item { min-height: 82px; grid-template-columns: 42px minmax(0,1fr); }
}
