/*
  Echte Momente Landingpage
  Version: 2.0.28
*/

:root {
  --color-black: #0b0b0b;
  --color-charcoal: #171717;
  --color-gold: #d4af37;
  --color-warm-white: #f6f1e8;
  --color-muted: #cfc7b8;
  --content-width: 920px;
  --hero-logo-width: 420px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

html.has-loading-screen,
html.has-loading-screen body {
  overflow: hidden;
}

.site-loading-screen {
  --loading-duration: 5500ms;
  --loading-fade-duration: 900ms;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.11), transparent 38%),
    linear-gradient(145deg, #1a1814 0%, #100f0d 58%, #18150f 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity var(--loading-fade-duration) ease,
    visibility 0s linear var(--loading-fade-duration);
}

.site-loading-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.025) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: loading-screen-shimmer 3200ms ease-in-out infinite;
}

.site-loading-screen.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loading-screen__content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(calc(100vw - 48px), var(--hero-logo-width));
  translate: 0 -75px;
  animation: loading-screen-content-in 1100ms ease-out both;
}

.site-loading-screen__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.28));
}

.site-loading-screen__progress {
  width: min(58%, 150px);
  height: 2px;
  margin-top: 1.4rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.13);
}

.site-loading-screen__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.45), #e2c760);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loading-screen-progress var(--loading-duration) cubic-bezier(0.22, 0.7, 0.25, 1) forwards;
}

@keyframes loading-screen-content-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loading-screen-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes loading-screen-shimmer {
  0%, 45% { transform: translateX(-100%); }
  80%, 100% { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
  .site-loading-screen::before {
    animation: none;
  }

  .site-loading-screen__content {
    animation-duration: 1ms;
  }
}

html:fullscreen {
  overflow: hidden;
  scrollbar-gutter: auto;
}

html:fullscreen body {
  overflow: hidden;
}

html:fullscreen .hero {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  padding: clamp(16px, 2.5vh, 28px) 24px;
}

html:fullscreen .hero__content {
  height: 100%;
}

html:fullscreen .hero__visual {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  margin-bottom: clamp(10px, 1.8vh, 18px);
}

html:fullscreen .story-stage {
  top: clamp(38px, 5vh, 54px);
}

html:fullscreen .hero-song-label {
  top: 0;
}

html:fullscreen .storyboard-scene {
  max-width: min(62vw, 1120px);
  max-height: 68dvh;
}

html:fullscreen .story-frame:has(.storyboard-scene) {
  transform: translateX(clamp(-90px, -4.5vw, -48px));
}

html:fullscreen .hero__controls {
  flex: 0 0 auto;
}

html:fullscreen .song-button--fullscreen {
  display: none;
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-warm-white);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

button {
  font: inherit;
}

.side-menu__toggle {
  position: fixed;
  top: clamp(24px, 5vh, 56px);
  right: clamp(16px, 1.8vw, 28px);
  z-index: 54;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--color-warm-white);
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
  transition: opacity 700ms ease, visibility 700ms ease, transform 700ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.side-menu__hamburger {
  width: 22px;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  color: var(--color-gold);
}

.side-menu__hamburger span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.side-menu__toggle-text {
  color: rgba(246, 241, 232, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

body.is-controls-hidden .side-menu,
body.is-controls-hidden .side-menu__overlay,
body.is-controls-hidden .side-menu__toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-controls-hidden .side-menu__toggle {
  transform: translateX(10px);
}

.side-menu__toggle:hover,
.side-menu__toggle:focus-visible {
  border-color: rgba(230, 198, 90, 0.94);
  background: rgba(20, 18, 14, 0.9);
  color: #fffaf0;
}

.side-menu__toggle:focus-visible,
.side-menu__close:focus-visible,
.side-menu a:focus-visible {
  outline: 2px solid rgba(230, 198, 90, 0.95);
  outline-offset: 4px;
}

.side-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.side-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 52;
  width: min(340px, 90vw);
  height: 100vh;
  height: 100dvh;
  color: var(--color-warm-white);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.055), rgba(212, 175, 55, 0) 28%),
    rgba(5, 5, 5, 0.98);
  border-left: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: -28px 0 72px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease;
}

body.is-side-menu-open {
  overscroll-behavior: none;
}

body.is-side-menu-open .side-menu__toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px);
}

body.is-side-menu-open .side-menu__overlay,
body.is-side-menu-open .side-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.side-menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vh, 30px);
  overflow-y: auto;
  padding: clamp(18px, 3vh, 28px) 26px 28px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.55) rgba(255, 255, 255, 0.04);
}

.side-menu__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
}

.side-menu__close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-gold);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.side-menu__close:hover,
.side-menu__close:focus-visible {
  border-color: rgba(230, 198, 90, 0.86);
  background: rgba(212, 175, 55, 0.08);
  color: #e6c65a;
}

.side-menu__main-nav,
.side-menu__legal,
.side-menu__streams {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.side-menu__main-nav {
  gap: 8px;
}

.side-menu a {
  position: relative;
  color: rgba(246, 241, 232, 0.84);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.side-menu__main-nav a {
  padding: 10px 0 10px 18px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.side-menu__main-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: var(--color-gold);
  transform: translateY(-50%);
  transition: height 180ms ease;
}

.side-menu__main-nav a:hover,
.side-menu__main-nav a:focus-visible,
.side-menu__main-nav a.is-active {
  color: var(--color-gold);
  transform: translateX(3px);
}

.side-menu__main-nav a:hover::before,
.side-menu__main-nav a:focus-visible::before,
.side-menu__main-nav a.is-active::before {
  height: 70%;
}

.side-menu__legal {
  gap: 10px;
  margin-top: auto;
  padding-top: clamp(14px, 3vh, 26px);
}

.side-menu__legal a {
  width: fit-content;
  color: rgba(246, 241, 232, 0.66);
  font-size: 0.92rem;
  line-height: 1.35;
}

.side-menu__legal a:hover,
.side-menu__legal a:focus-visible,
.side-menu__legal a.is-active {
  color: var(--color-gold);
}

.side-menu__streams {
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.side-menu__streams h2 {
  margin: 0 0 4px;
  color: rgba(212, 175, 55, 0.88);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.side-menu__streams a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 4px;
  color: var(--color-gold);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.side-menu__streams a:hover,
.side-menu__streams a:focus-visible {
  border-color: rgba(230, 198, 90, 0.9);
  background: rgba(212, 175, 55, 0.08);
  color: #e6c65a;
  transform: translateX(3px);
}

.side-menu__streams .music__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.side-menu__streams a > span:last-child {
  color: rgba(246, 241, 232, 0.86);
  font-size: 0.96rem;
  line-height: 1.25;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 48px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.09) 0%, rgba(74, 52, 24, 0.08) 34%, rgba(11, 11, 11, 0.96) 72%, #050505 100%),
    linear-gradient(180deg, #050505 0%, #070706 52%, #050505 100%);
}

.hero__left-rail {
  position: absolute;
  left: clamp(28px, 4vw, 72px);
  top: 50%;
  z-index: 4;
  width: clamp(250px, 20vw, 310px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
  transform: translateY(-50%);
  transition: opacity 600ms ease, visibility 600ms ease, transform 600ms ease;
}

.app-promo {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 17px 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 6px;
  background:
    radial-gradient(circle at 14% 24%, rgba(212, 175, 55, 0.13), transparent 35%),
    linear-gradient(135deg, rgba(20, 18, 12, 0.96), rgba(7, 7, 7, 0.94));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.025);
}

.app-promo::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -44px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.app-promo__icon {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.16));
}

.app-promo__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.app-promo__eyebrow {
  margin: 1px 0 5px;
  color: rgba(212, 175, 55, 0.82);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.app-promo__title {
  margin: 0 0 5px;
  color: var(--color-warm-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

.app-promo__text {
  margin: 0 0 12px;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}

.app-promo__button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(212, 175, 55, 0.68);
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-warm-white);
  font-size: 0.78rem;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.app-promo__button-icon {
  color: var(--color-gold);
  font-size: 1.05rem;
  line-height: 1;
}

.app-promo__button:hover,
.app-promo__button:focus-visible {
  border-color: #e6c65a;
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.12);
  transform: translateY(-1px);
}

.app-promo__button:focus-visible {
  outline: 2px solid rgba(230, 198, 90, 0.95);
  outline-offset: 3px;
}

.news-panel {
  padding: 22px 0 18px 18px;
  border-left: 1px solid rgba(212, 175, 55, 0.52);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.045), transparent 92%);
  text-align: left;
}

.news-panel[hidden] {
  display: none;
}

body.is-brand-song-playing .hero__left-rail {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-12px, -50%);
}

.news-panel__heading {
  margin: 0 0 18px;
  color: rgba(212, 175, 55, 0.88);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.news-panel__viewport {
  min-height: 190px;
}

.news-panel__item {
  transition: opacity 320ms ease, transform 320ms ease;
}

.news-panel__item.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.news-panel__category {
  margin-bottom: 7px;
  color: rgba(212, 175, 55, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.news-panel__title {
  margin: 0 0 10px;
  color: var(--color-warm-white);
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  font-weight: 400;
  line-height: 1.25;
}

.news-panel__text {
  margin-bottom: 12px;
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.news-panel__link {
  color: var(--color-gold);
  font-size: 0.88rem;
  text-underline-offset: 4px;
}

.news-panel__navigation {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
}

.news-panel__navigation[hidden] {
  display: none;
}

.news-panel__arrow,
.news-panel__dot {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: rgba(246, 241, 232, 0.68);
  cursor: pointer;
}

.news-panel__arrow {
  padding: 0;
  font-size: 1.5rem;
}

.news-panel__status {
  min-width: 34px;
  color: rgba(246, 241, 232, 0.55);
  font-size: 0.76rem;
  white-space: nowrap;
}

.news-panel__dots {
  display: flex;
  align-items: center;
  gap: 0;
}

.news-panel__dot {
  position: relative;
  padding: 0;
}

.news-panel__dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(212, 175, 55, 0.66);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.news-panel__dot.is-active::before {
  background: var(--color-gold);
}

.news-panel__arrow:hover,
.news-panel__arrow:focus-visible,
.news-panel__dot:hover,
.news-panel__dot:focus-visible,
.news-panel__link:hover,
.news-panel__link:focus-visible {
  color: #e6c65a;
}

.news-panel__arrow:focus-visible,
.news-panel__dot:focus-visible,
.news-panel__link:focus-visible {
  outline: 2px solid rgba(230, 198, 90, 0.95);
  outline-offset: 2px;
}

@media (min-width: 1280px) and (min-height: 700px) and (pointer: fine) {
  body.page-home.is-side-menu-open {
    overflow: auto;
  }

  body.page-home.is-side-menu-open .side-menu__overlay {
    display: none;
  }

  body.page-home.is-side-menu-open .side-menu {
    width: min(300px, 24vw);
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 1279px) {
  .hero__left-rail {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    width: min(100%, 560px);
    margin: 34px auto 0;
    transform: none;
  }

  body.is-brand-song-playing .hero__left-rail {
    transform: translateY(8px);
  }

  .app-promo {
    grid-template-columns: 64px 1fr;
  }

  .app-promo__icon {
    width: 64px;
    height: 64px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero__content {
    order: 1;
  }

  .news-panel__viewport {
    min-height: 148px;
  }
}

.hero__content {
  width: min(100%, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__visual {
  position: relative;
  width: 100%;
  height: min(58vh, 520px);
  display: grid;
  place-items: center;
  margin-bottom: 36px;
}

.hero-song-label {
  position: absolute;
  top: clamp(-34px, -3.5vh, -24px);
  left: 50%;
  z-index: 3;
  width: min(calc(100vw - 48px), 720px);
  margin: 0;
  color: rgba(212, 175, 55, 0.88);
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero__logo-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 2000ms ease-in-out;
}

.hero__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -24% -48%;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(94, 64, 28, 0.06) 48%, transparent 88%);
  filter: blur(96px);
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: var(--hero-logo-width);
  max-width: calc(100vw - 48px);
  height: auto;
  display: block;
}

.story-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: visible;
  pointer-events: none;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--story-fade-ms, 1500ms) ease-in-out;
}

.story-stage.is-active {
  opacity: 1;
  visibility: visible;
}

.story-stage.is-ending {
  opacity: 0;
  visibility: visible;
}

.story-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: opacity var(--story-fade-ms, 1500ms) ease-in-out;
}

.story-frame.is-visible {
  z-index: 2;
  opacity: 1;
}

.story-frame img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.storyboard-logo,
.storyboard-heart {
  width: var(--hero-logo-width) !important;
  max-width: 82vw !important;
  height: auto !important;
  max-height: none !important;
  animation: none !important;
}

.storyboard-scene {
  width: auto;
  height: auto;
  max-width: 78vw;
  max-height: 62vh;
  animation: storyKenBurns var(--story-zoom-ms, 9000ms) ease-in-out forwards;
}

.hero__controls {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero__content.is-controls-hidden .hero__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.hero__content.is-controls-hidden .hero-song-label {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
}

.song-button {
  position: relative;
  z-index: 3;
}

.hero__content.is-story-active .hero__logo-wrap {
  opacity: 0;
  pointer-events: none;
}

.hero__content.is-paused .story-frame img {
  animation-play-state: paused;
}

@keyframes storyKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--color-warm-white);
  font-size: clamp(2.25rem, 7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.hero__text {
  margin-bottom: 40px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.song-button,
.music__links a {
  min-height: 54px;
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 4px;
  background: rgba(7, 7, 7, 0.44);
  color: var(--color-warm-white);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.song-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(310px, 100%);
  max-width: 310px;
  padding: 16px 30px;
  font-size: 1.04rem;
}

.song-button--fullscreen {
  max-width: 260px;
  background: rgba(255, 255, 255, 0.025);
}

.song-button:hover,
.song-button:focus-visible {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.14);
  color: #fffaf0;
  transform: translateY(-1px);
}

.music__links a:hover,
.music__links a:focus-visible {
  border-color: #e6c65a;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.16);
  color: #fffaf0;
}

.section-inner {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.philosophy,
.music {
  padding: clamp(92px, 14vw, 160px) 0;
  text-align: center;
}

.philosophy {
  background: var(--color-charcoal);
}

.philosophy h2 {
  margin-bottom: 44px;
  color: var(--color-warm-white);
  font-size: clamp(2rem, 5vw, 4.1rem);
  font-weight: 400;
  line-height: 1.2;
}

.philosophy__text {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.philosophy__text p {
  margin-bottom: 18px;
}

.philosophy__text p:last-child,
.footer p {
  margin-bottom: 0;
}

.philosophy__more {
  max-width: 660px;
  margin: clamp(34px, 5vw, 54px) auto 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.7;
}

.philosophy__more p {
  margin-bottom: 10px;
}

.philosophy__more p:last-of-type {
  margin-bottom: 22px;
}

.philosophy__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 22px;
  border: 1px solid rgba(212, 175, 55, 0.74);
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-warm-white);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.philosophy__button:hover,
.philosophy__button:focus-visible {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.16);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.16);
  transform: translateY(-1px);
}

.music {
  background: linear-gradient(180deg, var(--color-black), #101010);
}

.music h2 {
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
}

.music__intro {
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

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

.music__links a {
  width: 100%;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  text-decoration: none;
}

.music__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: color 260ms ease, transform 260ms ease;
}

.music__links a:hover .music__icon,
.music__links a:focus-visible .music__icon {
  color: #e6c65a;
  transform: scale(1.05);
}

.music__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.music__icon circle,
.music__icon rect {
  fill: rgba(212, 175, 55, 0.08);
}

.music__icon--filled svg,
.music__icon--filled rect {
  fill: currentColor;
  stroke: none;
}

.footer {
  padding: 34px 24px;
  background: #080808;
  color: rgba(246, 241, 232, 0.64);
  text-align: center;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.footer__links a {
  color: rgba(246, 241, 232, 0.76);
  text-decoration: none;
  transition: color 220ms ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--color-gold);
}

.footer--legal-noscript {
  display: none;
}

body.legal-page .footer--full {
  display: none;
}

body.legal-page .footer--legal-noscript {
  display: block;
}

html.js-ready body.legal-page .footer--full {
  display: block;
}

html.js-ready body.legal-page .footer--legal-noscript {
  display: none;
}

html:has(body.legal-page) {
  background: #050505;
}

body.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.08) 0%, rgba(80, 55, 20, 0.06) 24%, rgba(5, 5, 5, 0) 58%),
    linear-gradient(180deg, #080808 0%, #0b0b0b 48%, #050505 100%) !important;
  color: var(--color-warm-white);
}

.legal-header {
  width: min(calc(100% - 48px), 880px);
  margin: 0 auto;
  padding: 32px 0 0;
  text-align: left;
}

.legal-header a {
  color: var(--color-gold);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.orientation-notice {
  display: none;
}

.orientation-notice__inner {
  width: min(calc(100% - 40px), 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.orientation-notice__logo {
  width: min(120px, 24vh);
  height: auto;
  display: block;
}

.orientation-notice__phone {
  width: 34px;
  height: 52px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.76);
  border-radius: 9px;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.12);
  transform: rotate(-90deg);
}

.orientation-notice__phone::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.78);
  transform: translateX(-50%);
}

.orientation-notice__phone::after {
  content: "↻";
  position: absolute;
  right: -24px;
  top: 50%;
  color: var(--color-gold);
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%) rotate(90deg);
}

.orientation-notice h2 {
  margin: 4px 0 2px;
  color: var(--color-gold);
  font-size: clamp(1.35rem, 6vh, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.orientation-notice p {
  max-width: 520px;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.9rem, 3.2vh, 1.04rem);
  line-height: 1.45;
}

.orientation-notice strong {
  color: var(--color-warm-white);
  font-weight: 600;
}

.back-home {
  display: inline-flex;
  align-items: center;
  color: var(--color-gold);
  opacity: 0.86;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.back-home:hover,
.back-home:focus-visible {
  color: #e6c65a;
  opacity: 1;
  transform: translateX(-2px);
}

.scroll-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.68);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.82);
  color: var(--color-gold);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32), 0 0 22px rgba(212, 175, 55, 0.1);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: rgba(230, 198, 90, 0.95);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38), 0 0 28px rgba(212, 175, 55, 0.18);
}

.legal-main {
  width: min(calc(100% - 48px), 880px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0 clamp(86px, 12vw, 140px);
}

.legal-main > h1 {
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.legal-intro {
  max-width: 680px;
  margin: 0 auto 58px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  text-align: center;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.legal-section h2 {
  margin-bottom: 16px;
  color: var(--color-warm-white);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 400;
}

.legal-section h3 {
  margin: 24px 0 10px;
  color: var(--color-gold);
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-section p,
.legal-section li {
  color: var(--color-muted);
}

.legal-section ul {
  margin: 14px 0 0 20px;
}

.legal-section a {
  color: var(--color-gold);
}

.about-main {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0 clamp(82px, 11vw, 132px);
}

.about-hero {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.about-hero__logo {
  width: clamp(120px, 9vw, 140px);
  height: auto;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 0 38px rgba(212, 175, 55, 0.16));
}

.about-hero__eyebrow {
  margin-bottom: 2px;
  color: rgba(212, 175, 55, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin-bottom: 10px;
  color: var(--color-warm-white);
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.04;
}

.about-hero__tagline {
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.36;
}

.about-hero__intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.58;
}

.about-intro {
  max-width: 780px;
  margin-bottom: clamp(54px, 7vw, 78px);
}

.about-intro__text {
  max-width: 660px;
  margin: 0 auto;
}

.about-intro__text p {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.62;
}

.about-intro__text p:last-child {
  margin-bottom: 0;
}

.about-intro__text .about-hero__tagline {
  max-width: none;
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.36;
}

.about-section {
  padding: clamp(30px, 5vw, 46px) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.about-intro + .about-section {
  padding-top: clamp(42px, 6vw, 62px);
}

.about-section h2 {
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
}

.about-section p {
  max-width: 760px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.about-section strong {
  color: var(--color-warm-white);
  font-weight: 600;
}

.about-section a,
.about-section a:visited {
  color: var(--color-gold);
}

.about-section a:hover,
.about-section a:focus-visible {
  color: #e6c65a;
}

.about-artist {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(240px, 2fr);
  align-items: center;
  gap: clamp(30px, 6vw, 62px);
}

.about-artist__text p {
  max-width: none;
  line-height: 1.78;
}

.about-artist__text p + p {
  margin-top: 18px;
}

.about-artist__closing {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 2px solid rgba(212, 175, 55, 0.65);
  color: var(--color-warm-white);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  font-style: italic;
}

.about-artist__image-wrap {
  display: flex;
  justify-content: center;
}

.about-artist__image {
  width: min(100%, 240px);
  height: auto;
  display: block;
  border-radius: 6px;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.3));
}

.official-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.official-link {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.026);
  color: var(--color-warm-white);
  text-decoration: none;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.official-link span {
  color: rgba(212, 175, 55, 0.9);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.official-link strong {
  color: var(--color-warm-white);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

a.official-link:hover,
a.official-link:focus-visible {
  border-color: rgba(212, 175, 55, 0.72);
  background: rgba(212, 175, 55, 0.075);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.1);
}

.official-link--placeholder {
  border-style: dashed;
  color: rgba(246, 241, 232, 0.72);
}

.official-link--placeholder strong {
  color: rgba(246, 241, 232, 0.68);
}

.legal-note {
  margin-top: 42px;
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.95rem;
  text-align: center;
}

.contact-main {
  width: min(calc(100% - 48px), 980px);
  padding: clamp(34px, 6vw, 72px) 0 clamp(82px, 11vw, 132px);
}

.contact-hero {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.contact-section p {
  max-width: 760px;
}

.contact-direct {
  max-width: 760px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.026);
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.contact-direct:hover,
.contact-direct:focus-within {
  border-color: rgba(212, 175, 55, 0.56);
  background: rgba(212, 175, 55, 0.055);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.08);
}

.contact-success {
  max-width: 760px;
  margin: clamp(22px, 4vw, 38px) auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.08);
  text-align: center;
}

.contact-success h2 {
  margin: 0 0 12px;
  color: var(--color-warm-white);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
}

.contact-success__text {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.7;
  text-align: center;
}

.contact-card__email {
  margin-bottom: 16px !important;
  color: var(--color-warm-white) !important;
  font-size: clamp(1.02rem, 1.8vw, 1.14rem) !important;
  line-height: 1.4;
  word-break: break-word;
}

.contact-card__feedback {
  min-height: 1.7em;
  margin: 14px 0 0 !important;
  color: var(--color-gold) !important;
  font-size: 0.94rem !important;
}

.contact-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid rgba(212, 175, 55, 0.74);
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-warm-white);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-card__button:hover,
.contact-card__button:focus-visible {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.16);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.16);
  transform: translateY(-1px);
}

.contact-form {
  max-width: 760px;
  margin-top: 26px;
  text-align: left;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 241, 232, 0.88);
  font-size: 0.98rem;
  line-height: 1.4;
}

.contact-form > .contact-form__field label span[aria-hidden="true"] {
  color: var(--color-gold);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.026);
  color: var(--color-warm-white);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  min-height: 48px;
  padding: 11px 14px;
}

.contact-form textarea {
  min-height: 154px;
  resize: vertical;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.68);
  background: rgba(212, 175, 55, 0.045);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.1);
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__privacy {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 12px !important;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--color-muted) !important;
  font-size: 0.94rem !important;
  line-height: 1.55;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-form__privacy--error {
  margin-top: 10px !important;
  padding: 14px 16px;
  border-color: rgba(214, 104, 82, 0.4);
  background: rgba(214, 104, 82, 0.07);
  box-shadow: 0 0 22px rgba(214, 104, 82, 0.06);
}

.contact-form__privacy input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--color-gold);
}

.contact-form__privacy a {
  color: var(--color-gold);
}

.contact-form__note {
  margin: 0 0 20px !important;
  color: rgba(246, 241, 232, 0.56) !important;
  font-size: 0.9rem !important;
  text-align: left;
}

.contact-form__submit {
  min-width: min(100%, 260px);
}

.contact-form__status {
  margin: 0 0 26px !important;
  padding: 16px 18px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-warm-white) !important;
  font-size: 1rem !important;
  line-height: 1.55;
  text-align: left;
}

.contact-form__status--error {
  border-color: rgba(214, 104, 82, 0.46);
  background: rgba(214, 104, 82, 0.09);
}


.contact-form__status--privacy {
  margin: 22px 0 0 !important;
}

.noscript-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.noscript-main {
  width: min(calc(100% - 40px), 620px);
  flex: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: clamp(20px, 5vh, 44px) 0 18px;
}

.noscript-card {
  width: 100%;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(8, 8, 8, 0.62);
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.08);
  text-align: center;
}

.noscript-card__logo {
  width: clamp(78px, 14vw, 108px);
  height: auto;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.12));
}

.noscript-card__eyebrow {
  margin-bottom: 8px;
  color: rgba(212, 175, 55, 0.86);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.noscript-card h1 {
  max-width: 520px;
  margin: 0 auto 12px;
  color: var(--color-warm-white);
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  line-height: 1.12;
}

.noscript-card p {
  max-width: 500px;
  margin: 0 auto 18px;
  color: var(--color-muted);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.55;
}

.noscript-card__reload {
  margin: 0;
}

.noscript-card__button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(212, 175, 55, 0.74);
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-warm-white);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.noscript-card__button:hover,
.noscript-card__button:focus-visible {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.16);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.16);
  transform: translateY(-1px);
}

.noscript-page .footer {
  padding: 16px 24px 18px;
  font-size: 0.86rem;
}

.noscript-page .footer__links {
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fade-in {
  opacity: 1;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1200ms ease,
    transform 1200ms ease;
}

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

  .song-button,
  .music__links a,
  .side-menu,
  .side-menu__overlay,
  .side-menu__toggle,
  .hero__left-rail,
  .app-promo__button,
  .news-panel,
  .news-panel__item,
  .hero-song-label,
  .fade-in.is-visible,
  .reveal.is-visible,
  .story-frame {
    transition: none;
  }

  .reveal {
    transform: none;
  }

  .story-frame img {
    animation: none;
  }
}

@media (max-width: 760px) {
  :root {
    --hero-logo-width: 380px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .back-home {
    font-size: 0.92rem;
  }

  .hero {
    padding: 40px 22px;
  }

  .hero__visual {
    height: min(58vh, 500px);
    margin-bottom: 32px;
  }

  .hero-song-label {
    top: 8px;
    width: min(calc(100vw - 44px), 520px);
    font-size: clamp(0.78rem, 2.4vw, 0.95rem);
    letter-spacing: 0.07em;
  }

  .storyboard-logo,
  .storyboard-heart {
    max-width: 82vw !important;
  }

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

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

  .about-main {
    width: min(calc(100% - 40px), 980px);
    padding-top: 34px;
  }

  .about-hero {
    margin-bottom: 40px;
  }

  .about-intro {
    margin-bottom: 48px;
  }

  .about-intro__text {
    max-width: 720px;
  }

  .about-hero__logo {
    width: clamp(118px, 20vw, 136px);
  }

  .about-hero h1 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .about-artist {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-artist__image {
    width: min(100%, 230px);
  }
}

@media (max-width: 760px) and (pointer: coarse) {
  .side-menu,
  .side-menu__overlay,
  .side-menu__toggle {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --hero-logo-width: 300px;
  }

  .site-loading-screen__content {
    translate: 0 calc(-50vh + 52px + min(27vh, 195px));
  }

  .side-menu,
  .side-menu__overlay,
  .side-menu__toggle {
    display: none;
  }

  .section-inner {
    width: min(calc(100% - 36px), var(--content-width));
  }

  .hero__visual {
    height: min(54vh, 390px);
    margin-bottom: 28px;
  }

  .hero-song-label {
    top: 8px;
    width: min(100%, 310px);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
  }

  .hero__logo {
    max-width: calc(100vw - 36px);
  }

  .storyboard-logo,
  .storyboard-heart {
    max-width: 82vw !important;
  }

  .storyboard-scene {
    max-width: 90vw;
    max-height: 55vh;
  }

  .hero__controls {
    width: 100%;
  }

  .song-button {
    width: 100%;
    max-width: 310px;
    padding-inline: 18px;
  }

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

  .about-main {
    width: min(calc(100% - 32px), 980px);
    padding-top: 28px;
  }

  .about-hero__logo {
    width: clamp(112px, 32vw, 128px);
    margin-bottom: 12px;
  }

  .about-hero__eyebrow {
    margin-bottom: 2px;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
  }

  .about-hero h1 {
    margin-bottom: 9px;
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .about-hero__tagline {
    margin-bottom: 12px;
    font-size: clamp(1.04rem, 5vw, 1.2rem);
  }

  .about-intro__text p {
    margin-bottom: 16px;
  }

  .about-intro + .about-section {
    padding-top: 36px;
  }

  .about-artist__image {
    width: min(100%, 220px);
  }
}


@media (orientation: landscape) and (max-height: 500px) {
  :root {
    --hero-logo-width: min(230px, 32vw);
  }

  .hero {
    min-height: 100vh;
    padding: 14px 18px;
  }

  .hero__content {
    width: min(100%, 760px);
  }

  .hero__visual {
    height: min(62vh, 300px);
    margin-bottom: 14px;
  }

  .hero-song-label {
    top: 2px;
    width: min(calc(100vw - 36px), 360px);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .hero__logo,
  .storyboard-logo,
  .storyboard-heart {
    width: var(--hero-logo-width) !important;
    max-width: 32vw !important;
  }

  .storyboard-scene {
    max-width: 72vw;
    max-height: 58vh;
  }

  .hero__controls {
    gap: 10px;
  }

  .song-button {
    min-height: 42px;
    width: min(300px, 62vw);
    max-width: 62vw;
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


@media (orientation: landscape) and (max-height: 600px) and (pointer: coarse) {
  html,
  body {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }

  body > :not(.orientation-notice) {
    display: none !important;
  }

  .orientation-notice {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(8px, 2.4dvh, 14px) clamp(14px, 3vw, 22px);
    background:
      radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(74, 52, 24, 0.08) 34%, rgba(5, 5, 5, 0.98) 74%, #050505 100%),
      #050505;
    color: var(--color-warm-white);
  }

  .orientation-notice__inner {
    width: min(calc(100% - 16px), 760px);
    max-height: calc(100dvh - 16px);
    justify-content: center;
    gap: clamp(5px, 1.6dvh, 10px);
  }

  .orientation-notice__logo {
    width: clamp(78px, 20dvh, 112px);
  }

  .orientation-notice__phone {
    width: clamp(26px, 7dvh, 34px);
    height: clamp(40px, 10.5dvh, 52px);
    border-radius: 7px;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.1);
  }

  .orientation-notice__phone::before {
    bottom: 3px;
    width: 3px;
    height: 3px;
  }

  .orientation-notice__phone::after {
    right: clamp(-22px, -4.8dvh, -17px);
    font-size: clamp(0.78rem, 3dvh, 0.95rem);
  }

  .orientation-notice h2 {
    margin: 0;
    font-size: clamp(1.28rem, 5.8dvh, 1.85rem);
    line-height: 1.06;
  }

  .orientation-notice p {
    max-width: min(82vw, 720px);
    font-size: clamp(0.92rem, 3.4dvh, 1.12rem);
    line-height: 1.2;
  }

  .orientation-notice p + p {
    margin-top: clamp(2px, 0.8dvh, 5px);
  }
}

@media (orientation: landscape) and (max-height: 430px) and (pointer: coarse) {
  .orientation-notice {
    padding: clamp(5px, 1.6dvh, 9px) 12px;
  }

  .orientation-notice__inner {
    width: min(calc(100% - 10px), 660px);
    max-height: calc(100dvh - 10px);
    gap: clamp(3px, 1dvh, 6px);
  }

  .orientation-notice__logo {
    width: clamp(60px, 17dvh, 82px);
  }

  .orientation-notice__phone {
    width: clamp(22px, 6dvh, 27px);
    height: clamp(32px, 9dvh, 41px);
    border-radius: 6px;
  }

  .orientation-notice__phone::after {
    right: -16px;
    font-size: clamp(0.68rem, 2.6dvh, 0.78rem);
  }

  .orientation-notice h2 {
    font-size: clamp(1rem, 4.7dvh, 1.28rem);
    line-height: 1.04;
  }

  .orientation-notice p {
    max-width: min(84vw, 620px);
    font-size: clamp(0.76rem, 3dvh, 0.9rem);
    line-height: 1.14;
  }

  .orientation-notice p + p {
    margin-top: 0;
  }
}
