@font-face {
  font-family: "GraphikRM";
  src: url("./assets/fonts/GraphikLC-Regular-Web.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "DrukM6";
  src: url("./assets/fonts/DrukXCondCy-Super-Web.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("./assets/fonts/HelveticaNeueCyr-Roman.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("./assets/fonts/HelveticaNeueCyr-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("./assets/fonts/HelveticaNeueCyr-Bold.otf") format("opentype");
  font-weight: 700 900;
  font-display: swap;
}

.m6-standalone {
  margin: 0;
  background: #111111;
}

.m6-site,
.m6-site * {
  box-sizing: border-box;
}

.m6-site {
  --m6-black: #111111;
  --m6-red: #d83b1e;
  --m6-white: #d8d0ca;
  --m6-muted: rgba(216, 208, 202, 0.62);
  --m6-font: "HelveticaNeueCyr", "GraphikRM", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --m6-display: "DrukM6", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--m6-black);
  color: var(--m6-red);
  font-family: var(--m6-font);
  isolation: isolate;
}

.m6-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.m6-site a,
.m6-site button {
  color: inherit;
  font: inherit;
}

.m6-site a {
  text-decoration: none;
}

.m6-site button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.m6-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  height: 54px;
  background: var(--m6-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.m6-header__nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  height: 100%;
  text-align: center;
}

.m6-header__logo {
  justify-self: center;
  display: inline-grid;
  place-items: center;
  width: clamp(118px, 13vw, 190px);
  height: 26px;
}

.m6-header__mark {
  font-size: 18px;
  font-weight: 700;
}

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

.m6-grid {
  background-image:
    linear-gradient(rgba(216, 208, 202, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 208, 202, 0.22) 1px, transparent 1px);
  background-size: 100% 33.333%, 33.333% 100%;
}

.m6-site main > section {
  min-height: 0;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.m6-hero {
  --m6-hero-x: max(clamp(26px, 3.3vw, 48px), calc((100vw - 1920px) / 2 + 48px));
  --m6-hero-top: clamp(68px, 7.6vh, 112px);
  --m6-hero-bottom: clamp(48px, 6.4vh, 78px);
  position: relative;
  padding: clamp(54px, min(5.2vw, 7vh), 92px) clamp(38px, 3.7vw, 54px) clamp(52px, 7vh, 80px);
  background-color: var(--m6-red);
  color: var(--m6-white);
  overflow: hidden;
}

.m6-site main > .m6-hero {
  min-height: 100vh;
  height: 100vh;
}

.m6-hero::after {
  content: none;
}

.m6-hero__frame {
  position: absolute;
  inset: var(--m6-hero-top) var(--m6-hero-x) var(--m6-hero-bottom);
  z-index: 1;
  border: 1px solid rgba(216, 208, 202, 0.72);
  pointer-events: none;
}

.m6-hero__rulers {
  position: absolute;
  inset: var(--m6-hero-top) var(--m6-hero-x) var(--m6-hero-bottom);
  z-index: 5;
  pointer-events: none;
}

.m6-hero__ruler,
.m6-hero__pointer {
  position: absolute;
  display: block;
  height: auto;
  user-select: none;
}

.m6-hero__pointer {
  animation-duration: 5600ms;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.m6-hero__ruler--left {
  left: 14.8%;
  bottom: 18.4%;
  width: clamp(58px, 5.55vw, 79px);
  transform: none;
}

.m6-hero__ruler--right {
  right: 7.3%;
  top: 18.2%;
  width: clamp(104px, 10.1vw, 144px);
  transform: translateY(-50%);
}

.m6-hero__pointer--date {
  left: 10.6%;
  bottom: 25.2%;
  width: clamp(68px, 6.35vw, 90px);
  animation-name: m6-pointer-date-arrive;
}

.m6-hero__pointer--place {
  right: 6.9%;
  top: 18.8%;
  width: clamp(92px, 8.6vw, 122px);
  animation-name: m6-pointer-place-arrive;
}

@keyframes m6-pointer-date-arrive {
  0% {
    transform: translateY(calc(-1 * clamp(58px, 6vw, 82px)));
  }

  25%,
  78% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-1 * clamp(58px, 6vw, 82px)));
  }
}

@keyframes m6-pointer-place-arrive {
  0% {
    transform: translateY(clamp(16px, 1.7vw, 24px));
  }

  25%,
  78% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(clamp(16px, 1.7vw, 24px));
  }
}

.m6-corner {
  position: absolute;
  color: var(--m6-white);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.m6-corner--tl {
  left: -18px;
  top: -18px;
}

.m6-corner--tr {
  right: -18px;
  top: -18px;
}

.m6-corner--bl {
  left: -18px;
  bottom: -18px;
}

.m6-corner--br {
  right: -18px;
  bottom: -18px;
}

.m6-hero__axis {
  position: absolute;
  z-index: 3;
  top: calc(var(--m6-hero-top) + clamp(24px, 3vh, 38px));
  left: calc(var(--m6-hero-x) + clamp(12px, 1vw, 18px));
  color: rgba(216, 208, 202, 0.7);
  font-size: 11px;
  font-weight: 700;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.m6-spec {
  display: grid;
  gap: 4px;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.05;
}

.m6-hero__spec {
  position: absolute;
  z-index: 3;
  top: calc(var(--m6-hero-top) + clamp(30px, 4.2vh, 58px));
  left: calc(var(--m6-hero-x) + clamp(44px, 3.6vw, 64px));
  width: clamp(122px, 13vw, 185px);
}

.m6-hero__dial {
  position: absolute;
  z-index: 1;
  top: calc((var(--m6-hero-top) + (100vh - var(--m6-hero-bottom))) / 2);
  left: 50%;
  width: clamp(470px, 40vw, 720px);
  aspect-ratio: 1;
  height: auto;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(216, 208, 202, 0.62);
  border-radius: 50%;
}

.m6-hero__dial span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(216, 208, 202, 0.34);
  border-radius: 50%;
}

.m6-hero__dial span:nth-child(2) {
  inset: 28%;
}

.m6-hero__dial span:nth-child(3) {
  inset: 43%;
}

.m6-hero__dial::before,
.m6-hero__dial::after,
.m6-hero__dial i {
  content: "";
  position: absolute;
  background: rgba(216, 208, 202, 0.36);
  pointer-events: none;
}

.m6-hero__dial::before {
  left: 50%;
  top: -6%;
  bottom: -6%;
  width: 1px;
}

.m6-hero__dial::after {
  top: 50%;
  left: -7%;
  right: -7%;
  height: 1px;
}

.m6-hero__dial i:first-of-type {
  left: 50%;
  bottom: 3%;
  width: 1px;
  height: 34px;
  transform-origin: top;
  transform: rotate(18deg);
}

.m6-hero__dial i:last-of-type {
  left: 50%;
  bottom: 3%;
  width: 1px;
  height: 34px;
  transform-origin: top;
  transform: rotate(-18deg);
}

.m6-hero__heat {
  position: absolute;
  z-index: 3;
  top: clamp(106px, 8.4vw, 122px);
  left: 50%;
  display: block;
  width: clamp(58px, 4.8vw, 78px);
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.m6-hero__center-logo {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  display: block;
  width: clamp(128px, 11vw, 190px);
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.m6-hero__title {
  position: absolute;
  inset: var(--m6-hero-top) var(--m6-hero-x) var(--m6-hero-bottom);
  z-index: 4;
  display: grid;
  align-content: center;
  justify-items: center;
  margin: 0;
  padding: clamp(68px, 8vh, 104px) clamp(8px, 1.2vw, 22px) clamp(56px, 6.8vh, 90px);
  max-width: none;
  color: var(--m6-black);
  font-family: "HelveticaNeueCyr", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(72px, min(8.7vw, 12.7vh), 158px);
  line-height: 0.72;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.08em;
  text-transform: none;
}

.m6-hero__title--mobile {
  display: none;
}

.m6-hero__place,
.m6-hero__date,
.m6-hero__age {
  position: absolute;
  z-index: 3;
  font-weight: 900;
}

.m6-hero__place {
  right: calc(var(--m6-hero-x) + clamp(58px, 6vw, 110px));
  top: calc(var(--m6-hero-top) + clamp(210px, 38vh, 360px));
  display: none;
  gap: 2px;
  width: clamp(120px, 12vw, 180px);
  font-size: clamp(10px, 1vw, 14px);
}

.m6-hero__date {
  left: calc(var(--m6-hero-x) + clamp(72px, 7vw, 126px));
  bottom: calc(var(--m6-hero-bottom) + clamp(42px, 6vh, 86px));
  font-size: clamp(15px, 1.55vw, 22px);
}

.m6-hero__age {
  right: calc(var(--m6-hero-x) + clamp(26px, 2.4vw, 40px));
  bottom: calc(var(--m6-hero-bottom) + clamp(30px, 3.4vh, 44px));
  width: clamp(52px, 7vw, 92px);
  height: auto;
  user-select: none;
}

.m6-hero__scale {
  position: absolute;
  z-index: 3;
  left: calc(var(--m6-hero-x) + clamp(138px, 10vw, 184px));
  bottom: calc(var(--m6-hero-bottom) + clamp(24px, 3.6vh, 48px));
  display: flex;
  gap: 10px;
  align-items: end;
}

.m6-hero__scale span {
  width: 1px;
  height: 9px;
  background: rgba(216, 208, 202, 0.65);
}

.m6-hero__scale span:nth-child(3) {
  height: 18px;
}

.m6-hero__take {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(78px, 7vw, 102px);
  transform: translateX(-50%);
  color: rgba(216, 208, 202, 0.65);
  font-size: 10px;
  font-weight: 800;
}

.m6-about {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3.2vh, 34px) 48px clamp(22px, 3.6vh, 42px);
  background:
    linear-gradient(
      180deg,
      var(--m6-red) 0%,
      #8b2b20 30%,
      #311a17 66%,
      var(--m6-black) 100%
    );
}

.m6-about__art,
.m6-place__art,
.m6-action__finder {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.m6-about__art {
  max-width: 1358px;
  max-height: clamp(420px, 62vh, 620px);
  object-fit: contain;
}

.m6-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 202, 0.65);
  border-radius: 8px;
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.3);
}

.m6-window__bar {
  display: grid;
  grid-template-columns: 18px 18px 18px 1fr;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 14px;
  background: #b9b6b2;
  color: var(--m6-black);
  font-size: 14px;
}

.m6-window__bar span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--m6-red);
}

.m6-window__bar span:nth-child(2) {
  background: #ff7b2d;
}

.m6-window__bar span:nth-child(3) {
  background: #d8d0ca;
}

.m6-window__bar em {
  justify-self: center;
  font-style: normal;
}

.m6-window--photo {
  width: 778px;
  height: 518px;
}

.m6-window--photo img {
  display: block;
  width: 100%;
  height: calc(100% - 44px);
  object-fit: cover;
  filter: sepia(0.7) saturate(1.9) hue-rotate(330deg);
}

.m6-window--text {
  position: absolute;
  top: 128px;
  left: 43%;
  width: 778px;
  min-height: 518px;
  background: var(--m6-red);
  color: var(--m6-black);
}

.m6-window--text p {
  margin: 28px 34px;
  max-width: 690px;
  font-size: 70px;
  line-height: 0.98;
  font-weight: 900;
}

.m6-social {
  position: absolute;
  left: 84px;
  bottom: -44px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--m6-white);
  font-size: 15px;
}

.m6-social img {
  width: 95px;
  height: auto;
}

.m6-artists {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vh, 34px) clamp(14px, 2.3vw, 34px) clamp(20px, 3.2vh, 38px);
  overflow: hidden;
  background-color: var(--m6-black);
  background-image: none;
}

.m6-artists__stage {
  position: relative;
  container-type: inline-size;
  width: min(calc(100% - clamp(28px, 4.6vw, 68px)), calc(clamp(600px, 82vh, 960px) * 0.947));
  aspect-ratio: 1402 / 1480;
  max-height: clamp(600px, 82vh, 960px);
}

.m6-artists__blueprint {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.m6-artists__blueprint img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.m6-artists__list {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 7.8cqw 0 5.8cqw;
  list-style: none;
  align-self: stretch;
  justify-content: center;
  gap: 0.4cqw;
}

.m6-artist {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.m6-artist button,
.m6-artist a {
  display: block;
  color: var(--m6-red);
  font-family: "HelveticaNeueCyr", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(54px, 15.7cqw, 222px);
  line-height: 0.67;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.11em;
  text-align: center;
  transform: none;
  transition: transform 180ms ease;
  transform-origin: center center;
  white-space: nowrap;
}

.m6-artist--stacked button span,
.m6-artist--stacked a span {
  display: block;
}

.m6-artist.is-active {
  z-index: 10;
}

.m6-artist.is-active button,
.m6-artist.is-active a {
  transform: scale(1.06);
}

.m6-artists__info {
  display: none !important;
}

.m6-artists__numbers {
  margin: 0;
  padding: 48px 0 0 16px;
  list-style: none;
  display: grid;
  gap: 46px;
  color: rgba(216, 59, 30, 0.52);
  font-size: 38px;
  font-weight: 900;
}

.m6-artists__numbers li.is-active {
  color: var(--m6-red);
}

.m6-artists__info p {
  position: absolute;
  left: 70px;
  right: 26px;
  bottom: 120px;
  margin: 0;
  color: var(--m6-red);
  font-size: 32px;
  line-height: 0.98;
  font-weight: 900;
}

.m6-artists__card {
  display: none !important;
  position: absolute;
  right: 48px;
  top: 50%;
  z-index: 12;
  display: grid;
  gap: 16px;
  color: rgba(216, 59, 30, 0.64);
  font-size: 44px;
  font-weight: 900;
}

.m6-artists__card span {
  display: grid;
  place-items: center;
  width: 136px;
  height: 174px;
  border: 1px solid rgba(216, 59, 30, 0.75);
  background: rgba(216, 59, 30, 0.18);
  color: var(--m6-red);
  font-size: 70px;
}

.m6-place {
  display: grid;
  place-items: center;
  padding: clamp(20px, 3.2vh, 40px) 48px clamp(18px, 3vh, 36px);
  background:
    linear-gradient(
      0deg,
      var(--m6-red) 0%,
      rgba(216, 59, 30, 0.82) 20%,
      rgba(216, 59, 30, 0) 50%
    ),
    var(--m6-black);
}

.m6-place__link {
  display: block;
  max-width: 1240px;
  max-height: clamp(400px, 56vh, 650px);
}

.m6-place__art {
  max-width: 100%;
  max-height: inherit;
  object-fit: contain;
  margin: 0 auto;
}

.m6-tickets {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(20px, 3.2vh, 38px) clamp(32px, 4vw, 62px) clamp(18px, 3vh, 36px);
  overflow: hidden;
  background: var(--m6-red);
  color: var(--m6-white);
}

.m6-tickets__container {
  position: relative;
  width: min(calc(100vw - clamp(64px, 7vw, 112px)), calc(clamp(520px, 72vh, 780px) * 1.315));
  max-height: clamp(520px, 72vh, 780px);
  aspect-ratio: 1320 / 1004;
  border: 2px solid rgba(216, 208, 202, 0.9);
  overflow: hidden;
}

.m6-tickets__frame {
  position: absolute;
  inset: 0;
}

.m6-tickets__lines,
.m6-tickets__hand,
.m6-tickets__age,
.m6-tickets__numbers,
.m6-tickets__letters {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
}

.m6-tickets__lines {
  z-index: 1;
  left: 0;
  right: 0;
  top: 17%;
  width: 100%;
  height: auto;
}

.m6-tickets__hand {
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(89%, 900px);
  max-height: 100%;
  height: auto;
  object-fit: contain;
  transform: translateX(-50%);
  transition: opacity 160ms ease;
}

.m6-tickets__hand--hover {
  opacity: 0;
}

.m6-tickets__container:hover .m6-tickets__hand:not(.m6-tickets__hand--hover),
.m6-tickets__container:focus-visible .m6-tickets__hand:not(.m6-tickets__hand--hover) {
  opacity: 0;
}

.m6-tickets__container:hover .m6-tickets__hand--hover,
.m6-tickets__container:focus-visible .m6-tickets__hand--hover {
  opacity: 1;
}

.m6-tickets__numbers {
  z-index: 3;
  left: 2%;
  top: 2.5%;
  width: min(14.2%, 166px);
  height: auto;
}

.m6-tickets__letters {
  z-index: 3;
  left: 2%;
  bottom: 5.3%;
  width: min(7.4%, 84px);
  height: auto;
}

.m6-tickets__age {
  z-index: 3;
  right: 2.2%;
  bottom: 3%;
  width: min(10%, 110px);
  height: auto;
}

.m6-merch {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 45vh !important;
  height: 45vh !important;
  padding: clamp(18px, 2.8vh, 34px) clamp(30px, 4vw, 72px);
  background: var(--m6-red);
  color: var(--m6-white);
}

.m6-section-title {
  margin: 0 0 clamp(10px, 1.4vh, 16px);
  text-align: center;
  color: var(--m6-white);
  font-size: clamp(8px, 0.62vw, 10px);
  font-weight: 700;
}

.m6-merch__frame {
  position: relative;
  width: min(calc(100vw - clamp(60px, 8vw, 144px)), 1420px);
  max-height: calc(45vh - clamp(28px, 5vh, 48px));
  aspect-ratio: 1214 / 798;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  margin: 0 auto;
  padding: clamp(4px, 0.55vw, 8px) clamp(22px, 3.2vw, 34px) clamp(8px, 0.9vw, 12px);
}

.m6-merch__cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(10px, 1vw, 14px);
  height: min(34vh, 360px);
  max-height: 34vh;
}

.m6-merch__cards article {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  width: min(29vw, 360px);
  min-height: 0;
  color: var(--m6-white);
  font-size: clamp(8px, 0.62vw, 10px);
}

.m6-merch__preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  border: 2px solid var(--m6-white);
  background: var(--m6-black);
}

.m6-merch__preview img {
  width: clamp(34px, 4.8vw, 62px);
  height: auto;
  user-select: none;
}

.m6-merch__temperature,
.m6-merch__cards strong {
  margin: 0;
  color: var(--m6-white);
  line-height: 0.92;
  font-weight: 700;
}

.m6-merch__temperature {
  min-height: clamp(23px, 3.1vh, 32px);
  padding: clamp(3px, 0.45vw, 5px) clamp(4px, 0.5vw, 7px) 0;
  background: var(--m6-white);
  color: var(--m6-black);
  text-transform: uppercase;
}

.m6-merch__cards strong {
  display: block;
  padding: clamp(5px, 0.65vw, 8px) clamp(4px, 0.5vw, 7px) 0;
  color: var(--m6-white);
  font-size: clamp(8px, 0.72vw, 11px);
}

.m6-action {
  padding: clamp(54px, 8vh, 96px) 48px clamp(52px, 8vh, 92px);
  display: grid;
  justify-items: center;
  gap: 42px;
  background:
    linear-gradient(
      180deg,
      var(--m6-red) 0%,
      rgba(216, 59, 30, 0.64) 22%,
      rgba(216, 59, 30, 0) 50%
    ),
    var(--m6-black);
}

.m6-action__finder-link {
  display: block;
  width: min(86vw, 860px);
  max-height: 54vh;
}

.m6-action__finder {
  display: block;
  width: 100%;
  height: auto;
  max-height: inherit;
  object-fit: contain;
}

.m6-action__finder-link:focus-visible {
  outline: 2px solid var(--m6-white);
  outline-offset: 6px;
}

/* Legacy fallback if the image is used without a link wrapper. */
img.m6-action__finder {
  width: min(86vw, 860px);
  max-height: 54vh;
  object-fit: contain;
}

.m6-action p {
  margin: 0;
  color: var(--m6-white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.m6-action__logo {
  display: block;
  width: min(52vw, 190px);
  height: auto;
}

@media (max-width: 980px) {
  .m6-site main > section {
    height: auto;
    min-height: auto;
  }

  .m6-header {
    grid-template-columns: 32px 1fr 32px;
  }

  .m6-header__nav {
    grid-template-columns: 1fr;
  }

  .m6-header__logo {
    width: 132px;
  }

  .m6-header__nav a:not(.m6-header__logo) {
    display: none;
  }

  .m6-hero {
    display: block;
    height: 100vh !important;
    min-height: 100vh !important;
    padding: 0;
    overflow: hidden;
  }

  .m6-hero::before {
    content: "";
    position: absolute;
    z-index: 30;
    left: 18px;
    right: 18px;
    top: 48px;
    height: 2px;
    background: rgba(216, 208, 202, 0.95);
    pointer-events: none;
  }

  .m6-hero__frame {
    inset: 48px 18px 32px;
    z-index: 30;
    border-color: rgba(216, 208, 202, 0.9);
  }

  .m6-hero__title--desktop {
    display: none;
  }

  .m6-hero__title--mobile {
    display: grid;
    inset: 120px 10px 104px;
    margin: 0;
    padding: 0 12px;
    align-content: center;
    font-size: clamp(28px, min(13.2vw, 5.7vh), 54px);
    line-height: 0.68;
    letter-spacing: -0.075em;
    max-width: none;
  }

  .m6-hero__heat {
    top: 74px;
    width: clamp(70px, 24vw, 118px);
  }

  .m6-hero__center-logo {
    display: none;
  }

  .m6-hero__dial {
    top: 51%;
    width: min(86vw, 520px);
    height: auto;
  }

  .m6-hero__rulers {
    inset: 48px 18px 32px;
  }

  .m6-hero__ruler--left {
    display: none;
    left: 8.8%;
    top: auto;
    bottom: 46.4%;
    width: clamp(66px, 24vw, 106px);
  }

  .m6-hero__ruler--right {
    display: none;
    right: 4.2%;
    top: 43.2%;
    width: clamp(94px, 29vw, 142px);
  }

  .m6-hero__pointer {
    animation: none;
    transform: none !important;
  }

  .m6-hero__pointer--date {
    left: 7.4%;
    top: auto;
    bottom: 52.8%;
    width: clamp(76px, 26vw, 124px);
  }

  .m6-hero__pointer--place {
    right: 4.2%;
    top: 47.8%;
    width: clamp(106px, 32vw, 156px);
  }

  .m6-hero__place {
    right: 26px;
    top: auto;
    bottom: 52px;
    display: grid !important;
    width: 112px;
    color: var(--m6-white);
    font-size: 12px;
    line-height: 0.98;
    text-align: right;
  }

  .m6-hero__spec {
    top: 92px;
    left: 32px !important;
    bottom: auto;
    width: 104px;
    font-size: 10px;
    line-height: 1.02;
  }

  .m6-hero__date {
    left: 32px;
    bottom: 50px;
    font-size: 13px;
    line-height: 1.05;
    font-weight: 700;
  }

  .m6-hero__date::before {
    content: "date";
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
  }

  .m6-hero__scale {
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
    gap: 7px;
  }

  .m6-hero__take {
    bottom: 40px;
    font-size: 10px;
    color: var(--m6-white);
  }

  .m6-hero__age {
    right: 30px;
    top: 60px;
    bottom: auto;
    width: clamp(38px, 14vw, 60px);
    z-index: 9;
  }

  .m6-about {
    padding: 18px 10px;
  }

  .m6-window--photo,
  .m6-window--text {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .m6-window--text {
    margin-top: 18px;
  }

  .m6-window--text p {
    font-size: 39px;
    margin: 22px;
  }

  .m6-artists {
    height: 100vh;
    min-height: 100vh;
    height: 100svh;
    min-height: 100svh;
    padding: 18px 12px;
  }

  .m6-artists__stage {
    width: min(calc(100% - 24px), calc((100vh - 36px) * 0.947));
    aspect-ratio: 1402 / 1480;
    max-height: calc(100vh - 36px);
  }

  .m6-artists__info,
  .m6-artists__card {
    display: none;
  }

  .m6-artists__blueprint {
    inset: 0;
  }

  .m6-artists__list {
    align-items: center;
    padding: 7.8cqw 0 5.8cqw;
    justify-content: center;
    gap: 0.4cqw;
  }

  .m6-artist {
    justify-content: center;
  }

  .m6-artist button,
  .m6-artist a {
    font-size: clamp(38px, 15.7cqw, 222px);
    line-height: 0.67;
    letter-spacing: -0.11em;
    transform-origin: center center;
    transform: none;
  }

  .m6-artist.is-active button,
  .m6-artist.is-active a {
    transform: scale(1.06);
  }

  .m6-place,
  .m6-tickets,
  .m6-merch,
  .m6-action {
    padding-left: 14px;
    padding-right: 14px;
  }

  .m6-place {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .m6-tickets {
    height: 100vh;
    min-height: 100vh;
    height: 100svh;
    min-height: 100svh;
  }

  .m6-action {
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .m6-tickets__container {
    width: calc(100vw - 28px);
    overflow: hidden;
  }

  .m6-tickets__hand {
    width: min(86%, 420px);
    max-height: 92%;
    bottom: 0;
  }

  .m6-tickets__numbers {
    left: 2%;
    top: 2.4%;
    width: min(24%, 118px);
  }

  .m6-tickets__letters {
    left: 2%;
    bottom: 5%;
    width: min(12%, 74px);
  }

  .m6-tickets__age {
    right: 3%;
    bottom: 3.5%;
    width: min(15%, 76px);
  }

  .m6-merch__cards {
    gap: 5px;
    height: min(32vh, 300px);
    max-height: 32vh;
  }

  .m6-merch__cards article {
    width: calc((100vw - 54px) / 3);
  }

  .m6-merch__frame {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(45vh - 24px);
    padding-left: 12px;
    padding-right: 12px;
  }

  .m6-merch__preview {
    border-width: 1px;
  }

  .m6-merch__preview img {
    width: clamp(24px, 8vw, 42px);
  }

  .m6-merch__temperature,
  .m6-merch__cards strong {
    font-size: 7px;
  }

  .m6-action__finder-link {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .m6-hero__axis {
    display: none !important;
  }
}
