@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/onest-latin.woff2') format('woff2');
}
@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/onest-cyrillic.woff2') format('woff2');
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}
:root {
  color-scheme: light;
  --orange: #fc5e26;
  --text: #171717;
  --muted: #676767;
  --surface: #f7f7f7;
  --line: #e8e8e8;
  font-family:
    Onest,
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
button,
select {
  font: inherit;
}
figure {
  margin: 0;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
a {
  color: inherit;
}

.header {
  height: 64px;
  background: #fff;
}
.header__inner {
  width: min(1120px, calc(100% - 32px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  flex-shrink: 0;
}
.header__logo img {
  display: block;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 100px;
  text-decoration: none;
}
.header__favorite {
  width: 40px;
  background: var(--surface);
  color: #606060;
}
.header__favorite svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.header__login {
  gap: 8px;
  padding: 0 16px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.header__login svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.header__login:hover {
  background: #e9501b;
}
.header__favorite:hover {
  background: var(--line);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 64px;
}
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--surface);
}
.hero__picture {
  position: absolute;
  inset: 0;
}
.hero__share {
  display: none;
}
.share-status {
  position: absolute;
  z-index: 2;
  top: 64px;
  right: 16px;
  left: 16px;
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  font-size: 13px;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: absolute;
  bottom: 25px;
  left: 37px;
  width: 460px;
  max-width: calc(100% - 74px);
  padding: 24px;
  border-radius: 32px;
  background: #fff;
}
.hero__eyebrow {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 500;
}
.section-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}
.hero__description {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.375;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero__button {
  display: block;
  margin-top: 24px;
  padding: 15px 22px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.hero__button:hover {
  background: #e9501b;
  transform: translateY(-1px);
}
.hero__button[aria-disabled='true'] {
  pointer-events: none;
  background: #e6e6e6;
  color: var(--muted);
  transform: none;
}

.event-about {
  margin-top: 50px;
  padding: 24px;
  border-radius: 32px;
  background: var(--surface);
}
.event-about h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
}
.event-about p {
  margin: 0;
  line-height: 1.4;
}
.event-description {
  margin-top: 10px;
}
.event-description--mobile {
  display: none;
}
.event-description summary {
  display: flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  cursor: pointer;
  color: var(--orange);
  list-style: none;
  font-weight: 500;
}
.event-description summary::-webkit-details-marker {
  display: none;
}
.event-description summary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s;
}
.event-description[open] summary svg {
  transform: rotate(-90deg);
}
.event-description--desktop[open] {
  display: flex;
  flex-direction: column;
}
.event-description--desktop[open] > div {
  order: 1;
}
.event-description--desktop[open] > summary {
  order: 2;
  margin-top: 8px;
}
.event-description div p {
  margin-top: 14px;
}
.event-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.event-fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.event-fact svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  stroke: var(--muted);
  stroke-width: 2;
  fill: none;
}
.event-fact h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
}
.event-fact p {
  font-size: 14px;
}
.event-section {
  margin-top: 50px;
}
.event-section h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.2;
}
.experiences {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}
.experience {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  text-align: left;
}
.experience img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 167/235;
  object-fit: cover;
  border-radius: 20px;
}
.experience figcaption {
  margin-top: 4px;
  padding: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}
.creative-group {
  display: flex;
  gap: 12px;
}
.artist {
  flex: 0 0 calc((100% - 100px) / 5);
}
.artist img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
}
.artist figcaption {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.375;
}
.artist span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.tour {
  padding-top: 58px;
  scroll-margin-top: 20px;
}
.tour__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}
.section-kicker {
  color: var(--orange);
}
.tour h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.035em;
}
.tour__count {
  margin: 0 0 5px;
  color: var(--muted);
}
.city-filter {
  margin-top: 28px;
  padding: 18px;
  display: grid;
  gap: 8px;
  border-radius: 20px;
  background: var(--surface);
}
.city-filter label {
  font-size: 13px;
  font-weight: 650;
}
.city-filter select {
  width: 100%;
  min-width: 0;
  padding: 14px 42px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--text);
  outline: none;
}
.city-filter select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(252, 94, 38, 0.14);
}
.city-chips {
  display: flex;
  gap: 8px;
  margin: 14px 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.city-chips::-webkit-scrollbar {
  display: none;
}
.chip {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.chip[aria-pressed='true'] {
  background: var(--text);
  color: #fff;
}
.performances {
  display: grid;
  gap: 14px;
}
.performance {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.performance__date {
  font-size: 20px;
  font-weight: 750;
}
.performance__time {
  margin-top: 5px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}
.performance__venue {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
.performance__city,
.performance__address {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.performance__price {
  margin: 14px 0 0;
  font-weight: 700;
}
.offers {
  display: grid;
  gap: 10px;
}
.sales-closed {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface);
  font-weight: 700;
  text-align: center;
}
.performance > *,
.offers,
.offer {
  min-width: 0;
}
.performance__venue,
.performance__address,
.offer details p {
  overflow-wrap: anywhere;
}
.offer {
  padding: 13px;
  border-radius: 16px;
  background: var(--surface);
}
.offer__button {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 11px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.offer__button[data-partner='kassir'] {
  background: #ffc734;
}
.offer__button[data-partner='ticketland'] {
  background: #ed1c24;
  color: #fff;
}
.offer__button[data-partner='tbank'] {
  background: #ffdd2d;
}
.offer__button:hover {
  filter: brightness(0.95);
}
.offer__ad {
  margin: 9px 2px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}
.offer__ad strong {
  color: var(--text);
  font-weight: 650;
}
.offer details {
  margin: 5px 2px 0;
  color: var(--muted);
  font-size: 10px;
}
.offer summary {
  width: max-content;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.offer details p {
  margin: 5px 0 0;
  line-height: 1.35;
}
.empty {
  padding: 34px;
  border-radius: 20px;
  background: var(--surface);
  text-align: center;
  color: var(--muted);
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 calc(30px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: grid;
  gap: 13px;
  color: var(--muted);
  font-size: 12px;
}
footer p {
  max-width: 620px;
  margin: 0;
}
.noscript {
  padding: 15px;
  text-align: center;
}

@media (max-width: 799px) {
  .header {
    display: none;
  }
  main {
    width: 100%;
    margin-top: 0;
  }
  .hero {
    height: auto;
    overflow: visible;
    border-radius: 0;
    background: none;
  }
  .hero__picture {
    position: static;
    display: block;
    aspect-ratio: 4/3;
  }
  .hero__image {
    display: block;
  }
  .hero__share {
    display: flex;
    position: absolute;
    top: calc(16px + env(safe-area-inset-top));
    right: 16px;
    z-index: 1;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #0008;
    color: #fff;
    cursor: pointer;
  }
  .hero__share svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .hero__content {
    position: static;
    width: auto;
    max-width: none;
    margin: 16px 16px 0;
    padding: 16px 16px 0;
    border-radius: 20px 20px 0 0;
    background: var(--surface);
  }
  .hero__eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: 18px;
  }
  .hero__description {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
  .hero__button {
    margin-top: 16px;
    font-size: 14px;
  }
  .event-about {
    margin: 0 16px;
    padding: 16px;
    border-radius: 0 0 20px 20px;
  }
  .event-about h2,
  #about-description,
  .event-description--desktop {
    display: none;
  }
  .event-description--mobile {
    display: block;
    margin-top: 8px;
    font-size: 14px;
  }
  .event-description--mobile[open] {
    display: flex;
    flex-direction: column;
  }
  .event-description--mobile[open] > div {
    order: 1;
  }
  .event-description--mobile[open] > summary {
    order: 2;
    margin-top: 8px;
  }
  .event-description--mobile > div p:first-child {
    margin-top: 0;
  }
  .event-facts {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .event-fact + .event-fact {
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }
  .event-fact h3 {
    font-size: 14px;
  }
  .event-fact p {
    font-size: 13px;
  }
  .event-section {
    margin: 16px 16px 0;
  }
  .event-section h2 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
  }
  .experiences {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }
  .experiences::-webkit-scrollbar {
    display: none;
  }
  .experience {
    flex: 0 0 167px;
    scroll-snap-align: start;
  }
  .experience img {
    aspect-ratio: 167/235;
    border-radius: 16px;
  }
  .experience figcaption {
    min-height: 72px;
    font-size: 13px;
    font-weight: 500;
    padding: 8px;
    margin-top: 4px;
  }
  .artist {
    flex-basis: 125px;
  }
  .artist img {
    border-radius: 16px;
  }
  .artist figcaption {
    font-size: 13px;
  }
  .artist span {
    font-size: 12px;
  }
  .tour {
    padding: 24px 16px 0;
  }
  .tour__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .tour__count {
    margin: 0;
  }
  .city-filter {
    margin-top: 22px;
  }
  .performance {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px 12px;
    padding: 17px;
    border-radius: 20px;
  }
  .performance__date {
    font-size: 17px;
  }
  .performance__time {
    font-size: 16px;
  }
  .performance__venue {
    font-size: 18px;
  }
  .offers {
    grid-column: 1 / -1;
  }
  footer {
    width: calc(100% - 32px);
    margin-top: 48px;
  }
}

@media (max-width: 370px) {
  .hero__content {
    padding-inline: 14px;
  }
  .tour {
    padding-inline: 12px;
  }
  .performance {
    padding: 14px;
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
