@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@300;400;500;600;700;800&display=swap");

@font-face {
  font-family: "Cuyabra";
  src: url("fonts/cuyabra-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   RESET
   ========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: #f2f2f2;
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

::selection {
  background: #ff1515;
  color: #ffffff;
}

/* =========================================
   NAV
   ========================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.74),
    rgba(0, 0, 0, 0)
  );
  backdrop-filter: blur(8px);
}

.nav-logo-link {
  position: relative;
  z-index: 2;
  display: block;
}

.nav-logo {
  width: 92px;
  height: auto;
  opacity: 0.96;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #e1e1e1;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #737373;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav-lang-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: #737373;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-lang-btn:hover {
  color: #ffffff;
}

.nav-lang-btn.is-active {
  color: #ff1515;
}

/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  padding: 110px 24px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.04) 18%,
      rgba(0, 0, 0, 0.14) 28%,
      rgba(0, 0, 0, 0.72) 43%,
      rgba(0, 0, 0, 0.96) 60%,
      rgba(0, 0, 0, 1) 100%
    ),
    url("images/photo/backgr2.png") left center / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      0deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.16) 17%,
      rgba(5, 5, 5, 0) 34%
    ),
    radial-gradient(
      ellipse at 20% 45%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 16%,
      rgba(0, 0, 0, 0) 36%
    );
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 1720px);
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
}

.hero-copy {
  grid-column: 2;
  padding-left: 10px;
  padding-right: 40px;
}

.hero-genre {
  margin: 0 0 18px;
  color: #f0f0f0;
  font-family: "Cuyabra", "Unbounded", system-ui, sans-serif;
  font-size: clamp(34px, 2.8vw, 58px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-logo {
  width: 100%;
  max-width: 1080px;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.55));
}

.hero-line {
  max-width: 960px;
  margin: 20px 0 0;
  color: #ff1515;
  font-family: "Cuyabra", "Unbounded", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 44px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background: #ff1515;
  border-color: #ff1515;
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
}

/* =========================================
   COMMON SECTIONS
   ========================================= */

.section {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 86px 24px;
}

.section-header {
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d8d8d8;
  font-family: "Cuyabra", "Unbounded", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section h2,
.footer h2 {
  margin: 0;
  color: #f2f2f2;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(48px, 6.5vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  font-weight: 500;
  font-kerning: normal;
}

.footer h2 {
  letter-spacing: 0;
  word-spacing: 0.06em;
}

.section p,
.footer p {
  color: #c9c9c9;
  line-height: 1.75;
}

/* =========================================
   MUSIC
   ========================================= */

.music-card {
  display: grid;
  grid-template-columns: minmax(290px, 380px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.015)
    ),
    #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.music-info {
  padding-top: 10px;
}

.music-info h3 {
  margin: 0 0 22px;
  color: #f2f2f2;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(30px, 3.2vw, 54px);
  line-height: 1.07;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 500;
}

.music-description {
  margin: 0 0 22px;
  color: #c9c9c9;
  font-size: 17px;
  line-height: 1.7;
}

.teaser-note {
  min-height: 30px;
  margin: 0 0 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 21, 21, 0.42);
  border-radius: 999px;
  color: #ff1515 !important;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platforms-title {
  margin: 0 0 16px;
  color: #7f7f7f !important;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.platform-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.platform-links a {
  color: #d9d9d9;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.platform-links a:hover {
  color: #ff1515;
}

/* =========================================
   CUSTOM AUDIO PLAYER
   ========================================= */

.audio-player {
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.player-current {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 26px 18px;
}

.player-cover {
  width: 112px;
  height: 112px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.04);
}

.player-current-info {
  min-width: 0;
}

.player-label {
  margin: 0 0 10px;
  color: #777777 !important;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.player-current-info h4 {
  margin: 0 0 8px;
  overflow: hidden;
  color: #f3f3f3;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-artist {
  margin: 0;
  color: #888888 !important;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 26px 22px;
}

.control-btn,
.volume-btn {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a3a3a3;
  cursor: pointer;
  transition: color 0.2s ease;
}

.control-btn:hover,
.volume-btn:hover {
  color: #ffffff;
}

.control-btn svg,
.volume-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.play-btn {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f4f4f4;
  color: #050505;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.play-btn:hover {
  background: #ff1515;
  color: #ffffff;
  transform: scale(1.04);
}

.play-btn svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.is-hidden {
  display: none !important;
}

.player-timeline {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: 10px;
}

.player-time {
  flex-shrink: 0;
  color: #8f8f8f;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.progress-bar {
  width: 100%;
  height: 3px;
  appearance: none;
  border-radius: 999px;
  background: #3d3d3d;
  cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  appearance: none;
  border-radius: 50%;
  background: #ff1515;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.progress-bar:hover::-webkit-slider-thumb {
  opacity: 1;
}

.progress-bar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #ff1515;
}

.volume-btn.is-muted {
  color: #ff1515;
}

.playlist {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.playlist-track {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background: transparent;
  color: #a5a5a5;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.playlist-track:last-child {
  border-bottom: 0;
}

.playlist-track:hover {
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
}

.playlist-track.is-active {
  background: rgba(255, 21, 21, 0.06);
  color: #ffffff;
}

.playlist-track.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #ff1515;
}

.track-number {
  color: #6f6f6f;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.playlist-track.is-active .track-number {
  color: #ff1515;
}

.track-name {
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-artist {
  color: #6d6d6d;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

/* =========================================
   VIDEO
   ========================================= */

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.local-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.video-caption {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.video-caption-label {
  margin: 0 0 7px;
  color: #777777 !important;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-caption h3 {
  margin: 0;
  color: #f2f2f2;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  flex-shrink: 0;
  color: #ffffff;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.text-link:hover {
  color: #ff1515;
  border-color: #ff1515;
}

/* =========================================
   BIO
   ========================================= */

.bio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.bio-image {
  overflow: hidden;
  border-radius: 28px;
  background: #111111;
}

.bio-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
}

.bio-text h2 {
  margin-bottom: 30px;
  font-size: clamp(34px, 3.7vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.bio-text p {
  max-width: 720px;
  font-size: 20px;
}

/* =========================================
   GALLERY
   ========================================= */

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

.gallery-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 22px;
  filter: grayscale(100%) contrast(1.06);
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  filter: grayscale(0%) contrast(1);
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  padding: 86px 24px 32px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 1), rgba(15, 15, 15, 1)),
    #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 64px;
}

.contact-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer a {
  color: #f2f2f2;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ff1515;
}

.footer-links ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #b8b8b8;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(100%, 1440px);
  margin: 72px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #777777;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
  color: #777777;
}

.footer-bottom a {
  color: #9d9d9d;
}

/* =========================================
   LANGUAGE MODAL
   ========================================= */

body.lang-modal-open {
  overflow: hidden;
}

body.lang-modal-open header,
body.lang-modal-open main,
body.lang-modal-open footer {
  filter: blur(14px);
  transform: scale(1.01);
  pointer-events: none;
  user-select: none;
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
}

.language-modal.is-hidden {
  display: none;
}

.language-modal-card {
  width: min(100%, 520px);
  padding: 44px 38px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(12, 12, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.65);
  text-align: center;
}

.language-modal-logo {
  width: 260px;
  margin: 0 auto 30px;
}

.language-modal-kicker {
  margin: 0 0 28px;
  color: #ff1515;
  font-family: "Cuyabra", "Unbounded", system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.language-btn {
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #ffffff;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.language-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* =========================================
   RESPONSIVE: TABLET
   ========================================= */

@media (max-width: 1400px) {
  .hero-stage {
    grid-template-columns: 34% 66%;
  }

  .hero-copy {
    padding-right: 20px;
  }

  .hero-logo {
    max-width: 980px;
  }

  .music-card {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 1100px) {
  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-column: 1;
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.16) 34%,
        rgba(0, 0, 0, 0.88) 70%,
        rgba(0, 0, 0, 1) 100%
      ),
      url("images/photo/backgr2.png") 24% center / cover no-repeat;
  }

  .music-card {
    grid-template-columns: 1fr;
  }

  .music-info {
    padding-top: 0;
  }

  .music-description {
    margin-bottom: 22px;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 16px 18px;
  }

  .nav-right {
    gap: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    width: 98px;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 110px 20px 80px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-genre {
    font-size: clamp(28px, 9vw, 44px);
  }

  .hero-line {
    font-size: clamp(18px, 4vw, 22px);
  }

  .section {
    padding: 68px 20px;
  }

  .section h2,
  .footer h2 {
    font-size: clamp(42px, 11vw, 78px);
  }

  .music-card {
    padding: 28px;
  }

  .music-info h3 {
    font-size: clamp(31px, 8vw, 54px);
  }

  .player-current {
    padding: 20px 20px 16px;
  }

  .player-controls {
    padding: 0 20px 20px;
  }

  .playlist-track {
    padding: 0 20px;
  }

  .video-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .bio-image img {
    height: 500px;
  }

  .gallery-grid img {
    height: 300px;
  }

  .footer {
    padding: 68px 20px 32px;
  }
}

/* =========================================
   RESPONSIVE: MOBILE
   ========================================= */

@media (max-width: 600px) {
  /* NAV */

  .nav {
    padding: 18px 20px;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.34) 58%,
      rgba(0, 0, 0, 0) 100%
    );
    backdrop-filter: blur(6px);
  }

  .nav-logo {
    width: 126px;
  }

  .nav-right {
    gap: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-language-switch {
    display: inline-flex;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  /* HERO */

  .hero {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0 20px 42px;
    background: #050505;
  }

  .hero-bg {
    inset: 0 0 auto;
    height: clamp(430px, 58svh, 505px);
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.02) 30%,
        rgba(0, 0, 0, 0.1) 46%,
        rgba(0, 0, 0, 0.6) 72%,
        rgba(5, 5, 5, 0.93) 91%,
        #050505 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.02) 46%,
        rgba(0, 0, 0, 0.26) 100%
      ),
      url("images/photo/backgr2.png") 25% top / auto 100% no-repeat;
  }

  .hero-bg::after {
    background:
      radial-gradient(
        ellipse at 48% 30%,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.02) 21%,
        rgba(0, 0, 0, 0) 48%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 48%,
        rgba(5, 5, 5, 0.42) 72%,
        #050505 100%
      );
  }

  .hero-stage {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding-top: clamp(330px, 44svh, 375px);
  }

  .hero-copy {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .hero-genre {
    margin: 0 0 13px;
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1;
    letter-spacing: 0.045em;
  }

  .hero-logo {
    width: 100%;
    max-width: none;
    margin: 0;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.68));
  }

  .hero-line {
    max-width: 100%;
    margin: 15px 0 0;
    font-size: clamp(16px, 4.35vw, 19px);
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  .hero-buttons {
    display: grid;
    gap: 13px;
    margin-top: 29px;
  }

  .btn {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  /* SECTION SPACING */

  .section {
    padding: 44px 20px;
  }

  .music {
    padding-top: 26px;
  }

  .video {
    padding-top: 40px;
  }

  .bio,
  .gallery {
    padding-top: 46px;
  }

  .section-header {
    margin-bottom: 25px;
  }

  .section h2,
  .footer h2 {
    font-size: clamp(43px, 12vw, 66px);
    line-height: 0.98;
  }

  /* MUSIC */

  .music-card {
    display: block;
    padding: 18px;
    border-radius: 22px;
  }

  .music-info {
    padding-top: 0;
    margin-bottom: 28px;
  }

  .music-info h3 {
    margin-bottom: 17px;
    font-size: clamp(29px, 8.8vw, 42px);
    line-height: 1.06;
  }

  .music-description {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .teaser-note {
    margin-bottom: 26px;
  }

  .platform-links {
    gap: 12px;
  }

  .audio-player {
    border-radius: 16px;
  }

  .player-current {
    gap: 16px;
    padding: 16px;
  }

  .player-cover {
    width: 78px;
    height: 78px;
  }

  .player-current-info h4 {
    font-size: 18px;
  }

  .player-controls {
    flex-wrap: wrap;
    gap: 9px;
    padding: 0 16px 16px;
  }

  .control-btn,
  .volume-btn {
    width: 32px;
    height: 32px;
  }

  .play-btn {
    width: 48px;
    height: 48px;
  }

  .player-timeline {
    order: 4;
    width: 100%;
    flex-basis: 100%;
    margin: 12px 0 0;
  }

  .playlist-track {
    min-height: 61px;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 0 20px;
  }

  .track-name {
    font-size: 15px;
  }

  .track-artist {
    display: none;
  }

  /* VIDEO */

  .video-wrapper {
    border-radius: 18px;
  }

  .video-caption {
    margin-top: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .video-caption h3 {
    font-size: 20px;
  }

  /* BIO */

  .bio {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .bio-image {
    border-radius: 18px;
  }

  .bio-image img {
    height: 420px;
  }

  .bio-text h2 {
    margin-bottom: 22px;
    font-size: clamp(32px, 9vw, 46px);
  }

  .bio-text p {
    font-size: 18px;
  }

  /* GALLERY */

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-grid img {
    height: 360px;
    border-radius: 18px;
  }

  /* FOOTER */

  .footer {
    padding: 54px 20px 28px;
  }

  .footer-inner {
    gap: 48px;
  }

  .contact-grid {
    margin-top: 32px;
    gap: 27px;
  }

  .footer-bottom {
    margin-top: 48px;
  }

  /* LANGUAGE MODAL */

  .language-modal {
    padding: 18px;
  }

  .language-modal-card {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .language-modal-logo {
    width: 220px;
  }

  .language-modal-kicker {
    font-size: 13px;
  }

  .language-buttons {
    grid-template-columns: 1fr;
  }
}