:root {
  --color-bg: #f6f4f0;
  --color-surface: #ffffff;
  --color-ink: #0d0c0b;
  --color-muted: #47423e;
  --color-faint: #9c9691;
  --color-line: #e7e5e3;
  --color-dot: #cbc7c3;
  --color-accent: #be1e2d;
  --font-ui: "Manrope", sans-serif;
  --font-display: "Oswald", sans-serif;
  --radius-btn: 8px;
  --radius-media: 14px;
  --header-height: 80px;
  --layout-max: 1700px;
  --content-max: 1368px;
  --shadow-media: 0 16px 40px rgba(13, 12, 11, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-ui);
  color: var(--color-ink);
  background: var(--color-surface);
}

body.is-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header__sublink:focus-visible,
.btn:focus-visible,
.header__link:focus-visible,
.header__logo:focus-visible,
.header__burger:focus-visible,
.hero__dot:focus-visible,
.branches__control:focus-visible,
.events__control:focus-visible,
.coaches__control:focus-visible,
.branches__card:focus-visible,
.branches__more:focus-visible,
.coaches__more:focus-visible,
.advantages__summary:focus-visible,
.formats__card:focus-visible,
.faq__summary:focus-visible,
.gallery__card:focus-visible,
.locations__card:focus-visible,
.access__route:focus-visible,
.timetable__tab:focus-visible,
.timetable__nearby-card:focus-visible,
.footer a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn--accent:hover {
  background: #a41926;
  border-color: #a41926;
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-line);
  color: var(--color-ink);
}

.btn--ghost:hover {
  border-color: #cbc7c3;
  background: rgba(13, 12, 11, 0.03);
}

.btn--header {
  box-sizing: border-box;
  height: 34px;
  min-height: 34px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 16px;
  border-radius: 8px;
}

.btn--hero {
  min-height: 53px;
  padding: 17px 29px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(3px);
  border-bottom: 1px solid var(--color-line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 max(30px, calc((100% - 1700px) / 2));
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 80px;
}

.header__logo img {
  width: 64px;
  height: 70px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__item {
  position: relative;
}

.header__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.375px;
  line-height: 17px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
  color: var(--color-ink);
  transition: color 0.35s ease;
}

.header__item--has-sub > .header__link {
  cursor: pointer;
}

.header__link:hover,
.header__item:hover > .header__link,
.header__item.is-open > .header__link {
  color: var(--color-accent);
}

.header__chevron {
  display: block;
  width: 7px;
  height: 8px;
  flex-shrink: 0;
  opacity: 0.6;
  background: currentColor;
  clip-path: polygon(50% 78%, 8% 28%, 92% 28%);
  transform-origin: 50% 50%;
  transition: transform 0.3s ease;
}

.header__item:hover > .header__link .header__chevron,
.header__item.is-open > .header__link .header__chevron {
  transform: scaleY(-1);
}

.header__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 120;
  min-width: 248px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(13, 12, 11, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.header__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.header__item:hover > .header__submenu,
.header__item.is-open > .header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header__subitem {
  position: relative;
}

.header__submenu--nested {
  top: 0;
  left: calc(100% + 6px);
  z-index: 121;
  transform: translateX(6px);
}

.header__submenu--nested::before {
  left: auto;
  right: 100%;
  bottom: 0;
  top: 0;
  width: 12px;
  height: auto;
}

.header__subitem:hover > .header__submenu,
.header__subitem.is-open > .header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.header__sublink {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  color: var(--color-ink);
  cursor: default;
  transition: color 0.25s ease, background-color 0.25s ease;
}

a.header__sublink {
  cursor: pointer;
}

.header__sublink--dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  cursor: pointer;
}

.header__chevron--side {
  width: 6px;
  height: 8px;
  clip-path: polygon(78% 50%, 22% 8%, 22% 92%);
}

.header__sublink:hover,
.header__subitem:hover > .header__sublink,
.header__subitem.is-open > .header__sublink {
  color: var(--color-accent);
  background: #fbeaeb;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__actions .btn--ghost {
  width: 98px;
}

.header__actions .btn--accent {
  width: 116px;
}

.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header__burger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  background: var(--color-bg);
}

.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.7fr);
  column-gap: 48px;
  align-items: start;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
  margin-top: 11px;
}

.hero__copy {
  display: grid;
  width: 100%;
  min-height: 438px;
}

.hero__intro {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 716px;
}

.hero__intro:not(.is-active) {
  visibility: hidden;
  pointer-events: none;
}

.hero__eyebrow {
  margin: 0;
  padding-bottom: 25px;
  min-height: 42px;
  max-width: 460px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 78.4px;
  text-transform: uppercase;
}

.hero__lead {
  margin: 0;
  padding: 8px 0 10px;
  min-height: 58px;
  max-width: 460px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  height: 69px;
  padding-top: 16px;
  box-sizing: border-box;
}

.hero__pager {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 43px;
  padding-top: 28px;
  box-sizing: border-box;
}

.hero__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero__dot {
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 5px;
  border-radius: 2px;
  background: var(--color-dot);
}

.hero__dot--active {
  width: 26px;
}

.hero__dot-fill {
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.hero__counter {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.36;
  color: var(--color-faint);
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 477px;
  justify-self: end;
}

.hero__media-accent {
  position: absolute;
  top: -16px;
  left: 33.36%;
  width: 70%;
  aspect-ratio: 1;
  background: var(--color-accent);
  border-radius: var(--radius-media);
}

.hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--color-line);
  box-shadow: var(--shadow-media);
  aspect-ratio: 477 / 596;
}

.hero__slider,
.hero__slides {
  height: 100%;
}

.hero__slides {
  position: relative;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
  }

  .header__actions {
    margin-left: auto;
  }

  .header__nav {
    position: fixed;
    z-index: 101;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 100%);
    background: var(--color-surface);
    border-left: 1px solid var(--color-line);
    padding: 24px 20px 32px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, visibility 0s linear 0.25s;
    overflow: auto;
  }

  .header.is-open .header__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.25s ease, visibility 0s;
  }

  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }

  .header__item {
    width: 100%;
  }

  .header__item:hover > .header__submenu,
  .header__subitem:hover > .header__submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }

  .header__submenu {
    position: static;
    left: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transform: none;
  }

  .header__submenu::before {
    display: none;
  }

  .header__item.is-open > .header__submenu,
  .header__subitem.is-open > .header__submenu {
    max-height: 480px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px 0 0 12px;
  }

  .header__sublink {
    white-space: normal;
    padding: 8px 10px;
  }

  .header__chevron--side {
    width: 7px;
    height: 8px;
    clip-path: polygon(50% 78%, 8% 28%, 92% 28%);
  }

  .header__subitem.is-open > .header__sublink .header__chevron--side {
    transform: scaleY(-1);
  }

  .header__link {
    font-size: 14px;
  }

  .header__burger {
    display: flex;
  }

  .header.is-open .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.is-open .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header.is-open .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__container {
    padding: 48px 32px;
    column-gap: 32px;
  }

  .hero__title {
    font-size: 56px;
    line-height: 1;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__media {
    align-self: start;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 69px;
    --shadow-media: 0 6px 20px rgba(13, 12, 11, 0.1);
  }

  .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
  }

  .header__inner {
    padding: 0 16px;
  }

  .header__logo {
    height: 60px;
  }

  .header__logo img {
    width: 46px;
    height: 50px;
  }

  .header__actions {
    display: none;
  }

  .header__nav {
    inset: var(--header-height) 0 0 0;
    width: 100%;
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .hero__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 32px;
    gap: 0;
  }

  .hero__content {
    display: contents;
  }

  .hero__copy {
    min-height: 0;
  }

  .hero__intro {
    max-width: none;
    gap: 0;
  }

  .hero__eyebrow {
    margin: 0;
    padding-bottom: 24px;
    min-height: 0;
    max-width: none;
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.36;
  }

  .hero__title {
    font-size: 28px;
    line-height: 30.24px;
  }

  .hero__lead {
    margin-top: 7px;
    padding: 3px 0 23px;
    min-height: 0;
    max-width: none;
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__media {
    order: 1;
    max-width: none;
    align-self: stretch;
    transform: none;
    margin-top: 7px;
    padding-top: 9px;
  }

  .hero__media-accent {
    top: -1px;
    left: 42.77%;
    width: 60%;
  }

  .hero__frame {
    margin-top: 0;
    aspect-ratio: 362 / 452.5;
  }

  .hero__pager {
    order: 2;
    height: auto;
    margin-top: 7px;
    padding-top: 7px;
    gap: 12px;
  }

  .hero__actions {
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    height: auto;
    margin-top: 7px;
    padding-top: 9px;
    width: 100%;
  }

  .hero__actions .btn--accent {
    width: 100%;
  }
}

.hero--branch .hero__container {
  align-items: center;
}

.hero--branch .hero__content {
  margin-top: 0;
}

.hero--branch .hero__copy {
  min-height: 438px;
}

.hero--branch .hero__intro,
.hero--branch .hero__eyebrow,
.hero--branch .hero__lead {
  max-width: none;
}

@media (max-width: 768px) {
  .hero--branch .hero__container {
    align-items: stretch;
  }

  .hero--branch .hero__copy {
    min-height: 0;
  }

  .hero--branch .hero__intro:not(.is-active) {
    display: none;
  }

  .hero--branch .hero__title-break {
    display: none;
  }

  .hero--branch .hero__lead {
    margin-top: 7px;
    padding: 3px 0 23px;
    line-height: 19px;
  }

  .hero--branch .hero__media {
    margin-top: 7px;
  }

  .hero--branch .hero__pager {
    justify-content: flex-start;
    width: 100%;
    margin-top: 7px;
  }

  .hero--branch .hero__actions {
    margin-top: 7px;
  }
}

.branches {
  background: var(--color-surface);
}

.branches__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 71px 64px 78px;
}

.branches__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.branches__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.branches__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.branches__title {
  margin: 0;
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.branches__lead {
  margin: 0;
  max-width: 560px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-muted);
}

.branches__nav {
  display: flex;
  align-self: flex-end;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 2px;
}

.branches__control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 2px 7px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: var(--color-surface);
}

.branches__control:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.branches__control-icon {
  display: block;
  width: 14px;
  height: 14px;
}

.branches__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: -32px;
  padding: 22px 0 36px 32px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 36px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 36px), transparent 100%);
}

.branches__viewport::-webkit-scrollbar {
  display: none;
}

.branches__list {
  display: flex;
  gap: 20px;
}

.branches__card {
  flex: 0 0 274px;
  width: 274px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  background: var(--color-surface);
  box-shadow: 0 6px 20px rgba(13, 12, 11, 0.1);
  scroll-snap-align: start;
}

.branches__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 272 / 340;
  background: var(--color-dot);
  font-size: 12px;
  line-height: 1;
  color: var(--color-muted);
}

.branches__photo-icon {
  display: block;
  width: 14px;
  height: 11px;
  opacity: 0.6;
  border: 1.4px solid var(--color-muted);
  border-radius: 2px;
  position: relative;
}

.branches__photo-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 3px;
  height: 3px;
  border: 1.2px solid var(--color-muted);
  border-radius: 50%;
}

.branches__photo-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 1px;
  border-style: solid;
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent var(--color-muted) transparent;
}

.branches__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 18px;
}

.branches__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-transform: uppercase;
}

.branches__address {
  margin: 0;
  min-height: 38px;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--color-muted);
}

.branches__footer {
  display: flex;
  justify-content: flex-end;
  padding: 2px 0 1px;
  margin: 0;
}

.branches__more {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--color-accent);
}

.branches__more:hover {
  color: #a41926;
}

@media (max-width: 1024px) {
  .branches__inner {
    padding: 48px 32px;
    gap: 12px;
  }

  .branches__title {
    font-size: 32px;
    line-height: 47px;
  }

  .branches__viewport {
    padding-top: 16px;
  }
}

@media (max-width: 768px) {
  .branches__inner {
    padding: 40px 0;
    gap: 6px;
  }

  .branches__head {
    padding: 0 20px;
  }

  .branches__nav {
    display: none;
  }

  .branches__intro {
    gap: 7px;
    width: 100%;
  }

  .branches__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .branches__title {
    margin: 0;
    padding-top: 0;
    font-size: 22px;
    line-height: 25.3px;
  }

  .branches__title-extra {
    display: none;
  }

  .branches__lead {
    max-width: none;
    padding-top: 1px;
    font-size: 14px;
    line-height: 1.4;
  }

  .branches__viewport {
    margin-left: 0;
    padding: 12px 0;
    scroll-snap-type: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .branches__list {
    gap: 14px;
    padding: 0 20px;
  }

  .branches__card {
    scroll-snap-align: none;
  }

  .branches__footer {
    padding: 3px 20px 1px;
  }

  .branches__more {
    font-size: 13px;
    letter-spacing: 0;
  }
}

.advantages {
  background: #f5f4f3;
}

.advantages__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 64px;
}

.advantages__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.advantages__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
  align-items: stretch;
}

.advantages__card {
  height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
}

.advantages__summary {
  display: block;
  height: 100%;
  padding: 25px;
  cursor: pointer;
  list-style: none;
}

.advantages__summary::-webkit-details-marker {
  display: none;
}

.advantages__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: #fbeaeb;
  flex-shrink: 0;
}

.advantages__icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.advantages__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  min-height: 0;
}

.advantages__name {
  margin: 16px 0 7px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
}

.advantages__text {
  margin: 0;
  overflow: hidden;
  max-height: 44px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-muted);
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.advantages__card--tall .advantages__text {
  max-height: 66px;
}

.advantages__card[open] .advantages__text,
.advantages__card--tall[open] .advantages__text {
  max-height: 8.8em;
}

.advantages__preview {
  display: inline;
}

.advantages__preview--short {
  display: none;
}

.advantages__full {
  display: none;
}

.advantages__card[open] .advantages__preview {
  display: none;
}

.advantages__card[open] .advantages__full {
  display: inline;
}

.advantages__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  padding-top: 7px;
  perspective: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.advantages__more-icon {
  display: grid;
  place-items: center;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.advantages__more-icon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.advantages__card[open] .advantages__more-icon {
  transform: rotateX(180deg);
}

@media (max-width: 1024px) {
  .advantages__inner {
    padding: 56px 32px;
  }

  .advantages__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 20px;
  }

  .advantages__preview br {
    display: none;
  }

  .advantages__text,
  .advantages__card--tall .advantages__text {
    max-height: none;
  }
}

@media (max-width: 768px) {
  .advantages__inner {
    padding: 40px 20px;
  }

  .advantages__eyebrow {
    margin-bottom: 7px;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.06em;
  }

  .advantages__title {
    margin-bottom: 7px;
    font-size: 22px;
    line-height: 25.3px;
  }

  .advantages__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 9px;
  }

  .advantages__summary {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
  }

  .advantages__icon {
    width: 38px;
    height: 38px;
  }

  .advantages__icon img {
    width: 16px;
    height: 16px;
  }

  .advantages__content {
    gap: 2.9px;
    min-width: 0;
  }

  .advantages__name {
    margin: 0;
    font-size: 15.5px;
    line-height: 23px;
  }

  .advantages__text,
  .advantages__card--tall .advantages__text {
    max-height: 38px;
    font-size: 12.5px;
    line-height: 18.75px;
  }

  .advantages__card[open] .advantages__text,
  .advantages__card--tall[open] .advantages__text {
    max-height: none;
  }

  .advantages__preview:not(.advantages__preview--short) {
    display: none;
  }

  .advantages__preview--short {
    display: inline;
  }

  .advantages__more {
    margin-top: 0;
    padding-top: 7px;
    gap: 6px;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.03em;
  }
}

.formats {
  background: var(--color-surface);
}

.formats__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 74px 64px 72px;
}

.formats__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.formats__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.formats__lead {
  margin: 12px 0 0;
  padding-top: 4px;
  max-width: 640px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-muted);
}

.formats__viewport {
  padding-top: 28px;
}

.formats__list {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.formats__list > li {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}

.formats__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  background: var(--color-surface);
}

.formats__photo {
  display: block;
  aspect-ratio: 193 / 241.25;
  overflow: hidden;
  background: var(--color-line);
}

.formats__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.formats__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 13px 14px 14px;
}

.formats__name {
  margin: 0;
  min-height: 34px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 17px;
  text-transform: uppercase;
}

.formats__more {
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-accent);
}

.formats__card:hover .formats__more {
  color: #a41926;
}

@media (max-width: 1024px) {
  .formats__inner {
    padding: 56px 32px;
  }

  .formats__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .formats__lead {
    margin-top: 10px;
    padding-top: 0;
    line-height: 1.4;
  }

  .formats__viewport {
    padding-top: 20px;
  }

  .formats__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .formats__list > li {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .formats__inner {
    padding: 40px 0;
  }

  .formats__eyebrow {
    margin: 0 20px 7px;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.06em;
  }

  .formats__title {
    margin: 0 20px;
    min-height: 26px;
    font-size: 22px;
    font-weight: 700;
    line-height: 25.3px;
    letter-spacing: 0;
  }

  .formats__lead {
    display: none;
  }

  .formats__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 8px;
    padding: 10px 0 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
  }

  .formats__viewport::-webkit-scrollbar {
    display: none;
  }

  .formats__list {
    display: flex;
    gap: 14px;
    padding: 0 20px;
  }

  .formats__list > li {
    flex: 0 0 152px;
    width: 152px;
    scroll-snap-align: start;
  }

  .formats__photo {
    flex-shrink: 0;
    height: 187.5px;
    aspect-ratio: 150 / 187.5;
  }

  .formats__photo img {
    object-position: center;
  }

  .formats__body {
    gap: 8px;
    padding: 12.76px 14px 14px;
  }

  .formats__name {
    min-height: 32px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 15.53px;
    letter-spacing: 0;
  }

  .formats__more {
    margin-top: 0;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0;
  }
}

.events {
  background: var(--color-surface);
}

.events__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 74px 64px 72px;
}

.events__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.events__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 8px;
}

.events__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.events__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.events__title-br {
  display: none;
}

.events__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.events__control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 2px 7px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: var(--color-surface);
}

.events__control:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.events__control-icon {
  display: block;
  width: 14px;
  height: 14px;
}

.events__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 2px 14px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.events__viewport::-webkit-scrollbar {
  display: none;
}

.events__list {
  display: flex;
  gap: 20px;
}

.events__card {
  flex: 0 0 302px;
  width: 302px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  background: var(--color-surface);
  box-shadow: 0 1px 2px rgba(13, 12, 11, 0.08);
  scroll-snap-align: start;
}

.events__card--soon {
  background: #f5f4f3;
  border-style: dashed;
  box-shadow: none;
}

.events__card--soon .events__body {
  gap: 8px;
}

.events__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 300 / 375;
  background: var(--color-line);
}

.events__photo--soon {
  background: transparent;
}

.events__photo-icon {
  display: block;
  width: 16px;
  height: 13px;
  opacity: 0.7;
  border: 1.4px solid #6c655f;
  border-radius: 2px;
  position: relative;
}

.events__photo-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 3px;
  height: 3px;
  border: 1.2px solid #6c655f;
  border-radius: 50%;
}

.events__photo-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 1px;
  border-style: solid;
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent #6c655f transparent;
}

.events__soon-plus {
  display: block;
  width: 14px;
  height: 14px;
  opacity: 0.4;
  background: #6c655f;
  clip-path: polygon(40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%, 0 40%, 40% 40%);
}

.events__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px;
}

.events__kind {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.events__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
}

.events__name--muted {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-faint);
}

.events__meta {
  margin: 0;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--color-muted);
}

.events__soon-text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--color-faint);
}

.events__soon-short,
.events__cta-short {
  display: none;
}

.btn--event {
  min-height: 0;
  padding: 9px 15px;
  font-size: 12px;
  letter-spacing: 0.48px;
  line-height: 1.2;
}

.events__subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 29px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  background: var(--color-surface);
}

.events__subscribe-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.events__bell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fbeaeb;
  color: var(--color-accent);
}

.events__subscribe-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.events__subscribe-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-transform: uppercase;
}

.events__bell-icon {
  display: block;
}

.events__subscribe-lead {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  color: var(--color-muted);
}

.events__subscribe-fields {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex: 1 1 280px;
  max-width: 380px;
}

.events__field {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
}

.events__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.events__subscribe-short {
  display: none;
}

.events__email {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 13px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: #f5f4f3;
  font: inherit;
  font-size: 13px;
  color: var(--color-ink);
}

.events__email::placeholder {
  color: #757575;
}

.events__email:focus,
.events__email:focus-visible {
  outline: 0;
  border-color: var(--color-accent);
}

@media (max-width: 1024px) {
  .events__inner {
    padding: 56px 32px;
    gap: 16px;
  }

  .events__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .events__intro {
    padding-bottom: 0;
    gap: 10px;
  }

  .events__viewport {
    padding-top: 8px;
  }

  .events__subscribe {
    padding: 22px;
  }

  .events__subscribe-title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .events__inner {
    padding: 40px 0;
    gap: 0;
  }

  .events__head {
    padding: 0 20px;
  }

  .events__nav {
    display: none;
  }

  .events__intro {
    gap: 7px;
    width: 100%;
    padding-bottom: 0;
  }

  .events__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .events__title {
    font-size: 22px;
    line-height: 25.3px;
  }

  .events__title-br {
    display: inline;
  }

  .events__viewport {
    margin-top: 8px;
    padding: 10px 0 12px;
    scroll-padding-inline: 20px;
  }

  .events__list {
    gap: 14px;
    padding: 0 20px;
  }

  .events__card {
    flex-basis: 222px;
    width: 222px;
  }

  .events__photo {
    aspect-ratio: 220 / 275;
  }

  .events__body {
    gap: 4px;
    padding: 14px;
  }

  .events__kind {
    font-size: 10.5px;
    letter-spacing: 0;
  }

  .events__name {
    font-size: 15px;
    line-height: 22px;
  }

  .events__name--muted {
    font-size: 13px;
    line-height: 19px;
  }

  .events__meta {
    padding-bottom: 6px;
    font-size: 11.5px;
  }

  .events__soon-text {
    font-size: 11px;
  }

  .events__cta-full,
  .events__soon-full {
    display: none;
  }

  .events__cta-short,
  .events__soon-short {
    display: inline;
  }

  .events__subscribe {
    flex-direction: column;
    align-items: stretch;
    margin: 8px 20px 0;
    padding: 29px 21px 21px;
    gap: 12px;
  }

  .events__subscribe-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .events__bell {
    width: 38px;
    height: 38px;
  }

  .events__bell svg {
    width: 16px;
    height: 16px;
  }

  .events__subscribe-text {
    gap: 12px;
    width: 100%;
  }

  .events__subscribe-arrow,
  .events__subscribe-full {
    display: none;
  }

  .events__subscribe-short {
    display: inline;
  }

  .events__subscribe-fields {
    flex-direction: column;
    max-width: none;
    flex: none;
    width: 100%;
    gap: 12px;
  }

  .events__field {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .events__label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.48px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .events__email {
    width: 100%;
    padding: 13px 15px;
    background: var(--color-surface);
    font-size: 16px;
  }

  .events__subscribe .btn--event {
    width: 100%;
    background: transparent;
    border-color: var(--color-line);
    color: var(--color-ink);
  }

  .events__subscribe .btn--event:hover {
    background: rgba(13, 12, 11, 0.03);
    border-color: var(--color-dot);
    color: var(--color-ink);
  }

  .events__subscribe-title {
    font-size: 16px;
  }

  .events__subscribe-lead {
    font-size: 12.5px;
  }
}

.faq {
  background: #f5f4f3;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 948px;
  margin: 0 auto;
  padding: 72px 64px;
}

.faq__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.faq__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
}

.faq__item {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-btn);
  background: #f5f4f3;
}

.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 14px 18px;
  background: var(--color-surface);
  cursor: pointer;
  list-style: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary::marker {
  content: "";
}

.faq__question {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #fbeaeb;
  color: var(--color-accent);
}

.faq__chevron {
  display: block;
  width: 10px;
  height: 6px;
  transition: transform 0.25s ease;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--color-muted);
}

.faq__answer-short {
  display: none;
}

.faq__break {
  display: none;
}

@media (max-width: 1024px) {
  .faq__inner {
    padding: 56px 32px;
  }

  .faq__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .faq__list {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .faq__inner {
    gap: 0;
    padding: 40px 20px;
  }

  .faq__eyebrow {
    margin: 0 0 7px;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.06em;
  }

  .faq__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 25.3px;
    letter-spacing: 0;
  }

  .faq__list {
    gap: 8px;
    padding-top: 16px;
  }

  .faq__item {
    background: #f5f4f3;
  }

  .faq__summary {
    align-items: center;
    min-height: 54px;
    padding: 14px 18px 15px;
    background: #fff;
  }

  .faq__panel {
    background: #f5f4f3;
  }

  .faq__question {
    line-height: 18px;
  }

  .faq__break {
    display: block;
  }

  .faq__answer {
    padding: 0 18px 17px;
  }

  .faq__answer-full {
    display: none;
  }

  .faq__answer-short {
    display: inline;
  }
}

.gallery {
  overflow: hidden;
  background: var(--color-surface);
}

.gallery__head {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 64px 0;
}

.gallery__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.gallery__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.gallery__viewport {
  overflow-x: auto;
  padding: 22px 0 72px;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}

.gallery__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery__viewport::-webkit-scrollbar {
  display: none;
}

.gallery__list {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: max-content;
}

.gallery__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 172px;
  height: 214.5px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-btn);
  background: #f5f4f3;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-faint);
}

@media (max-width: 1024px) {
  .gallery__head {
    padding: 56px 32px 0;
  }

  .gallery__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .gallery__viewport {
    padding: 28px 0 56px;
  }

  .gallery__list {
    gap: 14px;
    margin-left: 0;
    padding: 0 32px;
  }

  .gallery__card {
    width: 148px;
    height: 184px;
  }
}

@media (max-width: 768px) {
  .gallery__head {
    padding: 36px 20px 0;
  }

  .gallery__eyebrow {
    margin-bottom: 7px;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.06em;
  }

  .gallery__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 25.3px;
    letter-spacing: 0;
  }

  .gallery__title-extra {
    display: none;
  }

  .gallery__viewport {
    padding: 14px 0 36px;
  }

  .gallery__list {
    gap: 12px;
    margin-left: 0;
    padding: 0;
  }

  .gallery__card {
    width: 122px;
    height: 152px;
    font-size: 11px;
  }
}

.gallery--hall {
  height: 483px;
  overflow: hidden;
  background: #f5f4f3;
}

.gallery--hall .gallery__list {
  margin-left: calc(max(0px, (100% - 1760px) / 2) - 95.75px);
  padding: 0;
}

.gallery--hall .gallery__list > li {
  flex-shrink: 0;
}

.gallery--hall .gallery__card {
  position: relative;
  width: 184px;
  height: 230px;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: var(--color-surface);
  font-size: 0;
}

.gallery--hall .gallery__photo {
  position: absolute;
  top: -3.33%;
  left: 0;
  width: 100%;
  height: 106.67%;
  max-width: none;
  object-fit: fill;
  -webkit-user-drag: none;
}

@media (max-width: 1024px) {
  .gallery--hall {
    height: auto;
  }

  .gallery--hall .gallery__list {
    margin-left: 0;
    padding: 0 32px;
  }

  .gallery--hall .gallery__card,
  .gallery--hall .gallery__photo {
    width: 160px;
    height: 200px;
  }

  .gallery--hall .gallery__photo {
    position: static;
    top: auto;
    height: 200px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .gallery--hall .gallery__head {
    padding: 36px 20px 0;
  }

  .gallery--hall .gallery__viewport {
    padding: 14px 0 36px;
  }

  .gallery--hall .gallery__list {
    gap: 12px;
    padding: 0;
  }

  .gallery--hall .gallery__card,
  .gallery--hall .gallery__photo {
    width: 132px;
    height: 165px;
  }

  .gallery--hall .gallery__photo {
    height: 165px;
  }
}

.signup {
  background: #f5f4f3;
}

.signup__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  justify-content: start;
  align-items: center;
  column-gap: 56px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 64px;
}

.signup__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.signup__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.signup__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.signup__lead {
  margin: 0;
  padding-top: 3px;
  max-width: 420px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: var(--color-muted);
}

.signup__lead-short {
  display: none;
}

.signup__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 12px 0 0;
  list-style: none;
}

.signup__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--color-muted);
}

.signup__points li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
}

.signup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding: 29px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  box-shadow: 0 16px 20px rgba(13, 12, 11, 0.18);
}

.signup__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.signup__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.signup__input,
.signup__select {
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: var(--color-surface);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-ink);
}

.signup__input::placeholder {
  color: #757575;
}

.signup__select {
  min-width: 0;
  max-width: 100%;
  height: 50px;
  padding: 13px 31px 13px 19px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1.15 5 4.85 9 1.15' stroke='%2347423e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
}

.signup__input:focus,
.signup__select:focus,
.signup__input:focus-visible,
.signup__select:focus-visible {
  outline: 0;
  border-color: var(--color-accent);
}

.btn--signup {
  width: 100%;
  min-height: 53px;
  padding: 17px 29px;
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 1.35;
}

@media (max-width: 1310px) {
  .signup__inner {
    column-gap: 40px;
    padding: 64px 48px;
  }

  .signup__title {
    font-size: 36px;
    line-height: 1.22;
  }

  .signup__form {
    padding: 26px;
  }
}

@media (max-width: 1024px) {
  .signup__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 32px;
    padding: 56px 32px;
  }

  .signup__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .signup__lead {
    margin-top: 0;
  }

  .signup__points {
    padding-top: 8px;
  }

  .signup__form {
    padding: 24px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .signup__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    row-gap: 7px;
    padding: 40px 20px;
  }

  .signup__copy {
    gap: 7px;
  }

  .signup__eyebrow {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.06em;
  }

  .signup__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 25.3px;
    letter-spacing: 0;
  }

  .signup:not(.signup--branch):not(.signup--contact) .signup__title {
    white-space: nowrap;
  }

  .signup__title-br {
    display: none;
  }

  .signup__lead {
    margin-top: 0;
    padding-top: 1px;
    max-width: none;
    font-size: 14px;
    line-height: 19px;
  }

  .signup__lead-full {
    display: none;
  }

  .signup__lead-short {
    display: inline;
  }

  .signup__points {
    display: none;
  }

  .signup__form {
    padding: 30px 21px 21px;
    gap: 14px;
    box-shadow: 0 6px 10px rgba(13, 12, 11, 0.1);
  }

  .signup__input,
  .signup__select {
    line-height: 22px;
  }

  .btn--signup {
    height: 53px;
    min-height: 53px;
    line-height: 19px;
  }
}

.faq__chevron {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 18px;
  opacity: 0;
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.faq__item[open] .faq__answer {
  max-height: 16em;
  padding-bottom: 16px;
  opacity: 1;
}

.faq__item:not([open]) > .faq__panel {
  display: grid;
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__item[open] > .faq__panel {
  grid-template-rows: 1fr;
}

.faq__answer {
  overflow: hidden;
  min-height: 0;
  max-height: none;
  opacity: 1;
  padding: 0 18px 16px;
  transition: none;
}

.faq__item[open] .faq__answer {
  max-height: none;
  opacity: 1;
  padding-bottom: 16px;
}

.access {
  background: var(--color-surface);
}

.access__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 64px;
}

.access__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 29px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  box-shadow: 0 1px 2px rgba(13, 12, 11, 0.08);
}

.access__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.access__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 39px;
  text-transform: uppercase;
}

.access__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.access__facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 6px 0 10px;
  list-style: none;
}

.access__fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.access__icon {
  display: block;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent);
}

.access__fact-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.access__place {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.access__address,
.access__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--color-muted);
}

.btn--access {
  align-self: flex-start;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 19px;
}

.access__route-icon {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.access__map {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  background: #f5f4f3;
}

@media (max-width: 1024px) {
  .access__inner {
    padding: 56px 32px;
    gap: 20px;
  }

  .access__title {
    font-size: 24px;
    line-height: 1.15;
  }

  .access__card {
    padding: 24px;
  }

  .access__map {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .access__inner {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 21px 20px 40px;
  }

  .access__card {
    display: contents;
  }

  .access__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .access__title {
    font-size: 22px;
    line-height: 25.3px;
  }

  .access__body {
    gap: 14px;
    padding: 26px 19px 19px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-media);
    box-shadow: 0 1px 2px rgba(13, 12, 11, 0.08);
  }

  .access__facts {
    padding: 0;
    gap: 14px;
  }

  .access__fact {
    gap: 10px;
  }

  .access__place {
    font-size: 14px;
    line-height: 20px;
  }

  .access__address,
  .access__text {
    font-size: 13px;
    line-height: 18px;
  }

  .btn--access {
    align-self: stretch;
  }

  .access__map {
    min-height: 209px;
    height: 209px;
  }
}

.timetable {
  position: relative;
  background: #f5f4f3;
}

.timetable__sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.timetable__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 64px;
}

.timetable__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.timetable__title {
  margin: 0;
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
  color: var(--color-ink);
}

.timetable__lead {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-muted);
}

.timetable__lead-short {
  display: none;
}

.timetable__board {
  overflow: hidden;
  padding: 13px 1px 1px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  box-shadow: 0 1px 2px rgba(13, 12, 11, 0.08);
}

.timetable__scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.timetable__table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  table-layout: fixed;
}

.timetable__table th,
.timetable__table td {
  width: 14.285%;
  padding: 12px 14px 12px 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.timetable__table th:first-child,
.timetable__table td:first-child {
  border-left: 0;
}

.timetable__table th {
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.78px;
  line-height: 19px;
  text-transform: uppercase;
}

.timetable__table td {
  height: 102px;
  border-left-color: var(--color-line);
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
}

.timetable__table tbody tr:nth-child(even) td {
  background: #f5f4f3;
}

.timetable__class {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.timetable__class:has(.timetable__note) {
  gap: 0;
}

.timetable__class:has(.timetable__note) .timetable__name {
  padding-top: 7px;
}

.timetable__class:has(.timetable__note) .timetable__coach {
  padding-top: 6px;
}

.timetable__time {
  margin: 0;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--color-ink);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.timetable__name {
  margin: 0;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 16.25px;
  color: var(--color-muted);
}

.timetable__note {
  margin: 0;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 15px;
  color: var(--color-faint);
}

.timetable__coach {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-accent);
}

.timetable__coach-icon {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  fill: currentColor;
}

.timetable__mobile {
  display: none;
}

.timetable__nearby {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
}

.timetable__nearby-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
}

.timetable__nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.timetable__nearby-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 15px 21px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-btn);
  box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
}

.timetable__nearby-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
}

.timetable__nearby-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.timetable__nearby-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
}

.timetable__nearby-address {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-muted);
}

.timetable__nearby-more {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .timetable__inner {
    padding: 56px 32px;
  }

  .timetable__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .timetable__nearby-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .timetable__inner {
    gap: 7px;
    padding: 40px 20px;
  }

  .timetable__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .timetable__title {
    padding-top: 0;
    font-size: 22px;
    line-height: 25.3px;
  }

  .timetable__lead {
    max-width: none;
    font-size: 13.5px;
    line-height: 1.4;
  }

  .timetable__lead-full {
    display: none;
  }

  .timetable__lead-short {
    display: inline;
  }

  .timetable__board {
    overflow: visible;
    margin-top: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .timetable__scroller {
    display: none;
  }

  .timetable__mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .timetable__days {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 2px 0 4px;
    -webkit-overflow-scrolling: touch;
  }

  .timetable__tab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    min-width: 46px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-btn);
    background: var(--color-surface);
    color: var(--color-muted);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.52px;
    text-transform: uppercase;
    cursor: pointer;
  }

  .timetable__radio {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .timetable__tab:has(:checked) {
    background: var(--color-ink);
    border-color: var(--color-ink);
    color: #fff;
  }

  .timetable__panels {
    display: grid;
  }

  .timetable__panel {
    display: none;
    grid-area: 1 / 1;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .timetable__mobile:has([value="mon"]:checked) .timetable__panel--mon,
  .timetable__mobile:has([value="tue"]:checked) .timetable__panel--tue,
  .timetable__mobile:has([value="wed"]:checked) .timetable__panel--wed,
  .timetable__mobile:has([value="thu"]:checked) .timetable__panel--thu,
  .timetable__mobile:has([value="fri"]:checked) .timetable__panel--fri,
  .timetable__mobile:has([value="sat"]:checked) .timetable__panel--sat,
  .timetable__mobile:has([value="sun"]:checked) .timetable__panel--sun {
    display: flex;
  }

  .timetable__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 15px 17px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-media);
    box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
  }

  .timetable__card .timetable__time {
    padding: 6px 9px;
  }

  .timetable__card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }

  .timetable__card-body:has(.timetable__note) {
    gap: 2px;
  }

  .timetable__card-name {
    margin: 0;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
  }

  .timetable__card .timetable__note {
    font-size: 12px;
    line-height: 1.3;
    color: var(--color-muted);
  }

  .timetable__card .timetable__coach {
    padding-top: 0;
    font-size: 11.5px;
  }

  .timetable__card-body:has(.timetable__note) .timetable__coach {
    padding-top: 4px;
  }

  .timetable__card .timetable__coach-icon {
    width: 14px;
    height: 14px;
  }

  .timetable__nearby {
    gap: 12px;
    padding-top: 18px;
  }

  .timetable__nearby-title {
    font-size: 18px;
    line-height: 21.6px;
  }

  .timetable__nearby-list {
    flex-direction: column;
    gap: 10px;
  }

  .timetable__nearby-card {
    min-height: 0;
    gap: 10px;
    padding: 15px 17px;
    align-items: center;
  }

  .timetable__nearby-dot {
    width: 7px;
    height: 7px;
  }

  .timetable__nearby-copy {
    flex: 1 1 auto;
  }

  .timetable__nearby-name {
    font-size: 14px;
    line-height: 21px;
  }

  .timetable__nearby-address {
    font-size: 11.5px;
    line-height: 16px;
  }

  .timetable__nearby-more {
    font-size: 11px;
    line-height: 15px;
  }
}

.prices {
  height: 535px;
  background: var(--color-surface);
}

.prices__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 74px 64px 86px;
}

.prices__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.prices__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
  color: var(--color-ink);
}

.prices__title-short {
  display: none;
}

.prices__list {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
}

.prices__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
  height: 228px;
  padding: 27px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  box-shadow: 0 1px 2px rgba(13, 12, 11, 0.08);
}

.prices__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prices__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-transform: uppercase;
}

.prices__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--color-muted);
}

.prices__cost {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  min-height: 47px;
}

.prices__amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 47px;
}

.prices__currency {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-muted);
}

.prices__cta {
  width: 100%;
  height: 45px;
  min-height: 45px;
  padding: 13px 20px;
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 19px;
}

.prices__note {
  margin: 0;
  padding-top: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-faint);
}

@media (max-width: 1024px) {
  .prices {
    height: auto;
  }

  .prices__inner {
    height: auto;
    padding: 56px 32px;
  }

  .prices__card {
    height: auto;
  }

  .prices__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .prices__name {
    font-size: 16px;
  }

  .prices__amount {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .prices {
    height: auto;
  }

  .prices__inner {
    gap: 7px;
    height: auto;
    padding: 40px 20px 51px;
  }

  .prices__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .prices__title {
    font-size: 22px;
    line-height: 25.3px;
  }

  .prices__title-full {
    display: none;
  }

  .prices__title-short {
    display: inline;
  }

  .prices__list {
    flex-direction: column;
    gap: 12px;
    padding-top: 9px;
  }

  .prices__card {
    gap: 12px;
    padding: 19px;
  }

  .prices__copy {
    gap: 3px;
  }

  .prices__name {
    font-size: 16px;
    line-height: 24px;
  }

  .prices__desc {
    font-size: 12.5px;
    line-height: 17px;
  }

  .prices__cost {
    min-height: 39px;
    height: 39px;
  }

  .prices__amount {
    font-size: 26px;
    line-height: 39px;
  }

  .prices__currency {
    font-size: 14px;
    line-height: 21px;
  }

  .prices__note {
    padding-top: 5px;
    font-size: 11px;
    line-height: 15px;
  }
}

.coaches {
  background: var(--color-surface);
}

.coaches--soft {
  background: #f5f4f3;
}

.coaches--branch {
  height: 552px;
}

.coaches--branch .coaches__inner {
  gap: 20px;
  height: 100%;
  padding: 75px 64px 74px;
}

.coaches--branch .coaches__intro {
  gap: 12px;
  padding-bottom: 8px;
}

.coaches--branch .coaches__title {
  padding-top: 0;
}

.coaches--branch .coaches__viewport {
  height: 288px;
  padding: 10px 2px 14px;
}

.coaches--branch .coaches__photo {
  top: -11.36%;
  right: auto;
  bottom: auto;
  left: 0;
  height: 122.73%;
  object-fit: fill;
}

.coaches__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 64px;
}

.coaches__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.coaches__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.coaches__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.coaches__title {
  margin: 0;
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.coaches__lead {
  margin: 0;
  max-width: 680px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-muted);
}

.coaches__lead-short {
  display: none;
}

.coaches__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.coaches__control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: var(--color-surface);
}

.coaches__control:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.coaches__control-icon {
  display: block;
  width: 14px;
  height: 14px;
}

.coaches__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 18px 2px 14px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.coaches__viewport::-webkit-scrollbar {
  display: none;
}

.coaches__list {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coaches__list > li {
  flex: 0 0 216px;
  scroll-snap-align: start;
}

.coaches__card {
  position: relative;
  width: 216px;
  height: 264px;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--color-dot);
  box-shadow: 0 1px 2px rgba(13, 12, 11, 0.08);
}

.coaches__card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(to bottom, rgba(13, 12, 11, 0), rgba(13, 12, 11, 0.88));
  pointer-events: none;
}

.coaches__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.coaches__placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  color: #6c655f;
  fill: currentColor;
  transform: translate(-50%, -50%);
}

.coaches__rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  width: 40px;
  height: 7px;
  border-radius: 4px;
}

.coaches__rank--black { background: #171514; }
.coaches__rank--brown { background: #5a3a24; }
.coaches__rank--purple { background: #5b3a8e; }
.coaches__rank--blue { background: #1f5fa8; }

.coaches__copy {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.coaches__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 18.4px;
  text-transform: uppercase;
  color: #fff;
}

.coaches__role {
  margin: 0;
  padding-top: 1px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.coaches__meta {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.coaches__footer {
  display: flex;
  justify-content: flex-end;
  padding: 2px 0 1px;
  margin: 0;
}

.coaches__more {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--color-accent);
}

.coaches__more:hover {
  color: #a41926;
}

@media (max-width: 1024px) {
  .coaches--branch {
    height: auto;
  }

  .coaches--branch .coaches__inner {
    height: auto;
    padding: 56px 32px;
    gap: 0;
  }

  .coaches--branch .coaches__intro {
    gap: 10px;
    padding-bottom: 0;
  }

  .coaches--branch .coaches__viewport {
    height: auto;
    padding-top: 8px;
  }

  .coaches__inner {
    padding: 56px 32px;
    gap: 0;
  }

  .coaches__intro {
    gap: 10px;
  }

  .coaches__title {
    padding-top: 0;
    font-size: 32px;
    line-height: 1.15;
  }

  .coaches__lead {
    margin-top: 0;
    line-height: 1.4;
  }

  .coaches__viewport {
    padding-top: 8px;
  }
}

@media (max-width: 768px) {
  .coaches--branch .coaches__inner {
    padding: 40px 0;
    gap: 8px;
  }

  .coaches--branch .coaches__intro {
    gap: 7px;
  }

  .coaches--branch .coaches__viewport {
    height: auto;
    padding: 10px 0 12px;
  }

  .coaches__inner {
    padding: 40px 0;
    gap: 8px;
  }

  .coaches__head {
    padding: 0 20px;
  }

  .coaches__intro {
    gap: 7px;
  }

  .coaches__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .coaches__title {
    padding-top: 0;
    font-size: 22px;
    line-height: 25.3px;
  }

  .coaches__lead {
    font-size: 13.5px;
    line-height: normal;
    max-width: none;
  }

  .coaches__lead-full {
    display: none;
  }

  .coaches__lead-short {
    display: inline;
  }

  .coaches__nav,
  .coaches__footer {
    display: none;
  }

  .coaches__viewport {
    padding: 10px 0 12px;
    scroll-padding-inline: 20px;
  }

  .coaches__list {
    gap: 14px;
    padding: 0 20px;
  }
}

.reviews {
  height: 599px;
  background: var(--color-surface);
}

.reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 64px 74px;
}

.reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 95px;
}

.reviews__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 8px;
}

.reviews__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.reviews__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  width: 302px;
  height: 72px;
  padding: 15px 21px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-btn);
  background: var(--color-surface);
  box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
}

.reviews__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 34px;
  color: var(--color-accent);
}

.reviews__score-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews__stars {
  display: flex;
  gap: 2px;
  margin: 0;
  color: var(--color-accent);
}

.reviews__score-meta .reviews__stars {
  padding: 4.5px 0 1.5px;
}

.reviews__card .reviews__stars {
  padding: 5.2px 0 1.5px;
}

.reviews__stars svg {
  display: block;
  width: 14px;
  height: 12px;
  flex-shrink: 0;
}

.reviews__source {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-muted);
  white-space: nowrap;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 159px 159px;
  gap: 16px;
  height: 334px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviews__card {
  display: flex;
  flex-direction: column;
  gap: 9.3px;
  height: 159px;
  min-height: 159px;
  padding: 21px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  background: var(--color-surface);
  box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #fbeaeb;
  color: var(--color-accent);
}

.reviews__avatar-icon {
  display: block;
  width: 14px;
  height: 16px;
}

.reviews__person {
  min-width: 0;
}

.reviews__name {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 18px;
}

.reviews__date {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: var(--color-faint);
}

.reviews__text {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  color: var(--color-muted);
}

.reviews__text-br {
  display: none;
}

@media (max-width: 1024px) {
  .reviews {
    height: auto;
  }

  .reviews__inner {
    padding: 56px 32px;
    gap: 20px;
  }

  .reviews__head {
    min-height: 0;
  }

  .reviews__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .reviews__score {
    width: auto;
    height: auto;
  }

  .reviews__value {
    font-size: 30px;
    line-height: 30px;
  }

  .reviews__list {
    height: auto;
    grid-template-rows: none;
  }

  .reviews__card {
    height: auto;
  }
}

@media (max-width: 768px) {
  .reviews {
    height: auto;
  }

  .reviews__inner {
    padding: 40px 0;
    gap: 0;
  }

  .reviews__head {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding: 0 20px;
  }

  .reviews__intro {
    gap: 7px;
    padding-bottom: 0;
  }

  .reviews__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .reviews__title {
    font-size: 22px;
    line-height: 25.3px;
  }

  .reviews__score {
    width: 100%;
    gap: 12px;
    padding: 18px 17px 13px;
  }

  .reviews__value {
    font-size: 28px;
    line-height: 28px;
  }

  .reviews__score-meta {
    gap: 3px;
  }

  .reviews__score-meta .reviews__stars {
    padding: 7.5px 0 3.5px;
  }

  .reviews__stars svg {
    width: 13px;
    height: 11px;
  }

  .reviews__source {
    font-size: 11px;
    line-height: 15px;
    white-space: nowrap;
  }

  .reviews__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 20px 12px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--color-dot) var(--color-line);
  }

  .reviews__viewport::-webkit-scrollbar {
    height: 3px;
  }

  .reviews__viewport::-webkit-scrollbar-track {
    margin: 0 20px;
    background: var(--color-line);
    border-radius: 3px;
  }

  .reviews__viewport::-webkit-scrollbar-thumb {
    background: var(--color-dot);
    border-radius: 3px;
  }

  .reviews__list {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 14px;
    width: max-content;
    height: auto;
  }

  .reviews__list > li {
    flex-shrink: 0;
  }

  .reviews__card {
    width: 284px;
    height: auto;
    min-height: 0;
    padding: 17px;
    gap: 6.9px;
  }

  .reviews__card .reviews__stars {
    padding: 8.6px 0 3.5px;
  }

  .reviews__avatar {
    width: 32px;
    height: 32px;
    border-radius: 16px;
  }

  .reviews__avatar-icon {
    width: 12px;
    height: 13px;
  }

  .reviews__name {
    font-size: 13px;
    line-height: 18px;
  }

  .reviews__date {
    font-size: 10.5px;
    line-height: 14px;
  }

  .reviews__text {
    font-size: 12.5px;
    line-height: 18.75px;
  }

  .reviews__text-br {
    display: inline;
  }
}

.footer {
  background: var(--color-ink);
  color: var(--color-dot);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 49px 64px 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 40px;
  overflow: hidden;
}

.footer__logo img {
  width: 37px;
  height: 40px;
  max-width: none;
  object-fit: contain;
}

.footer__about {
  margin: 0;
  max-width: 260px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  overflow: visible;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer__social-icon {
  width: 14px;
  height: 14px;
  display: block;
  overflow: visible;
  flex-shrink: 0;
}

.footer__social-icon--full {
  width: 100%;
  height: 100%;
}

.footer__social-link--label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.footer__cols {
  display: contents;
}

.footer__col {
  flex: 1 1 0;
  min-width: 0;
}

.footer__heading {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #fff;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 19px;
}

.footer__list a,
.footer__contacts a {
  color: var(--color-dot);
}

.footer__list a:hover,
.footer__contacts a:hover {
  color: #fff;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-style: normal;
  font-size: 14px;
  line-height: 19px;
}

.footer__contacts p {
  margin: 0;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.33px;
  text-transform: uppercase;
  color: #fff;
}

.footer__badge-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .footer__inner {
    gap: 28px;
    padding: 40px 32px 24px;
  }

  .footer__grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    gap: 22px;
    padding: 37px 20px 24px;
  }

  .footer__grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .footer__brand {
    flex: none;
    width: 100%;
    gap: 13px;
  }

  .footer__logo,
  .footer__logo img {
    width: 29px;
    height: 32px;
  }

  .footer__about {
    max-width: none;
    font-size: 13px;
    line-height: 1.4;
  }

  .footer__social {
    gap: 8px;
  }

  .footer__social-link {
    width: 32px;
    height: 32px;
    border-radius: 16px;
  }

  .footer__social-icon {
    width: 13px;
    height: 13px;
  }

  .footer__social-icon--full {
    width: 100%;
    height: 100%;
  }

  .footer__social-link--label {
    font-size: 9px;
  }

  .footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "nav contacts"
      "docs docs";
    gap: 22px 20px;
    flex: none;
    width: 100%;
  }

  .footer__col--nav {
    grid-area: nav;
  }

  .footer__col--docs {
    grid-area: docs;
  }

  .footer__col--contacts {
    grid-area: contacts;
  }

  .footer__heading {
    margin-bottom: 11px;
    letter-spacing: 0;
  }

  .footer__list,
  .footer__contacts {
    gap: 6px;
    font-size: 13px;
  }

  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 0;
    border: 0;
  }

  .footer__badge {
    order: -1;
    padding: 8px 12px;
    letter-spacing: 0;
  }

  .footer__copy {
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11.5px;
  }
}

.header__logo img {
  max-width: none;
}

.header__chevron {
  width: 8px;
  height: 6px;
  background: none;
  clip-path: none;
}

.header__item:hover > .header__link .header__chevron,
.header__item.is-open > .header__link .header__chevron {
  transform: rotate(180deg);
}

.header__chevron--side {
  width: 8px;
  height: 6px;
  clip-path: none;
  transform: rotate(-90deg);
}

.faq__item:not([open]) > .faq__panel,
.faq__panel,
.faq__item[open] > .faq__panel,
.faq__item.is-open .faq__panel {
  display: block;
  overflow: hidden;
  height: auto;
  max-height: 0;
  grid-template-rows: none;
  transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq__answer {
  min-height: 0;
  overflow: hidden;
  max-height: none;
  opacity: 1;
  padding: 0 18px 16px;
  transition: none;
}

.faq__item[open] .faq__answer,
.faq__item.is-open .faq__answer {
  max-height: none;
  opacity: 1;
  padding: 0 18px 16px;
}

@media (max-width: 1024px) {
  .header__chevron--side {
    transform: none;
  }

  .header__subitem.is-open > .header__sublink .header__chevron--side {
    transform: rotate(180deg);
  }
}

.faq__chevron {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.signup--branch .signup__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 622px);
}

.signup--branch .signup__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signup--branch .signup__eyebrow {
  margin: 0;
}

.signup--branch .signup__title {
  line-height: 44px;
}

.signup--branch .signup__lead {
  margin: 0;
  padding: 4px 0 12px;
  max-width: 440px;
  line-height: 22px;
}

.signup--branch .signup__lead-full,
.signup--branch .signup__lead-short {
  display: contents;
}

.signup--branch .signup__fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 482px;
  margin: 0;
  padding: 19px 21px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-btn);
  box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
}

.signup--branch .signup__fee-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--color-muted);
}

.signup--branch .signup__fee-sum {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  color: var(--color-accent);
  white-space: nowrap;
}

.signup--branch .signup__points {
  margin: 0;
  padding-top: 10px;
}

.signup--branch .signup__input {
  padding: 12px 15px;
  line-height: 22px;
}

.signup--branch .signup__consent {
  flex-wrap: nowrap;
  column-gap: 0;
}

.signup--branch .signup__check {
  margin: 2px 11px 0 4px;
}

.signup--branch .signup__consent-copy {
  flex: 0 0 262px;
  max-width: 262px;
}

.signup--branch .signup__policy {
  flex: 0 0 133px;
  width: 133px;
  margin-left: 49px;
}

.signup--branch .btn--signup {
  min-height: 53px;
  padding: 16px 28px;
  line-height: 19px;
}

.signup__consent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 8px;
  row-gap: 0;
  min-height: 35px;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 17.5px;
  color: var(--color-muted);
}

.signup__check {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin: 2px 0 0;
  accent-color: var(--color-accent);
}

.signup__consent-copy {
  flex: 1 1 180px;
  min-width: 0;
}

.signup__policy {
  flex: 0 1 200px;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.signup__consent-br,
.signup__policy-br {
  display: none;
}

.signup__policy:hover {
  color: #a41926;
}

.signup__check:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .signup--branch .signup__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .signup--branch .signup__title {
    line-height: 1.15;
  }

  .signup--branch .signup__fee {
    max-width: none;
  }

  .signup--branch .signup__consent-copy,
  .signup--branch .signup__policy {
    max-width: none;
    flex: 1 1 140px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .signup--branch .signup__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 7px;
  }

  .signup--branch .signup__copy {
    gap: 7px;
  }

  .signup--branch .signup__title {
    white-space: nowrap;
  }

  .signup--branch .signup__title-br::after {
    content: " ";
  }

  .signup--branch .signup__lead {
    padding: 1px 0 7px;
    max-width: none;
    font-size: 13.5px;
    line-height: 18px;
  }

  .signup--branch .signup__fee {
    padding: 15px 17px;
  }

  .signup--branch .signup__fee-label {
    font-size: 13px;
    line-height: 18px;
  }

  .signup--branch .signup__fee-sum {
    font-size: 19px;
    line-height: 28px;
  }

  .signup--branch .signup__input {
    padding: 13px 15px;
  }

  .signup--branch .signup__points {
    display: flex;
    gap: 8px;
    padding-top: 7px;
  }

  .signup--branch .signup__points li {
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    line-height: 17.5px;
  }

  .signup--branch .signup__points li::before {
    margin-top: 6px;
  }

  .signup--branch .signup__consent {
    flex-wrap: nowrap;
    column-gap: 0;
    min-height: 64px;
  }

  .signup--branch .signup__check {
    margin: 2px 11px 0 4px;
  }

  .signup--branch .signup__consent-copy {
    flex: 0 0 180px;
    max-width: 180px;
    margin-left: 0;
  }

  .signup--branch .signup__policy {
    flex: 0 0 111px;
    width: 111px;
    max-width: 111px;
    margin-left: 0;
  }

  .signup--branch .signup__consent-br,
  .signup--branch .signup__policy-br {
    display: inline;
  }

  .signup__consent {
    min-height: 0;
    font-size: 11.5px;
    line-height: 16.1px;
  }

  .signup__consent-copy {
    flex-basis: 160px;
  }

  .signup__policy {
    flex-basis: 110px;
  }
}

.signup--contact {
  background: #fff;
}

.signup--contact .signup__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 988px;
  padding: 74px 64px 73px;
  gap: 8px;
}

.signup--contact .signup__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.signup--contact .signup__eyebrow {
  margin: 0;
  line-height: 16px;
}

.signup--contact .signup__title {
  padding-top: 4px;
  font-size: 28px;
  line-height: 41px;
}

.signup--contact .signup__lead {
  margin: 0;
  padding-top: 0;
  max-width: none;
  font-size: 16px;
  line-height: 22px;
}

.signup--contact .signup__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 39px 27px 27px;
  box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
}

.signup--contact .signup__field {
  gap: 6px;
}

.signup--contact .signup__label {
  line-height: 16px;
}

.signup--contact .signup__input {
  height: 48px;
  padding: 13px 15px;
  line-height: 22px;
}

.signup--contact .signup__consent,
.signup--contact .btn--signup {
  grid-column: 1 / -1;
}

.signup--contact .signup__consent {
  flex-wrap: nowrap;
  align-items: flex-start;
  min-height: 18px;
  column-gap: 8px;
}

.signup--contact .signup__check {
  width: 13px;
  height: 13px;
  margin: 2px 3px 3px 4px;
}

.signup--contact .signup__consent-copy,
.signup--contact .signup__policy {
  flex: 0 0 auto;
  min-width: 0;
  line-height: 17.5px;
}

.signup--contact .btn--signup {
  width: auto;
  min-height: 55px;
  height: 55px;
  justify-self: start;
  padding: 18px 28px 16px;
  line-height: 19px;
}

.signup__input--area {
  height: auto;
  min-height: 48px;
  resize: vertical;
}

@media (max-width: 1024px) {
  .signup--contact .signup__inner {
    padding: 56px 32px;
  }
}

@media (max-width: 768px) {
  .signup--contact .signup__inner {
    padding: 53px 20px 45px;
    row-gap: 7px;
  }

  .signup--contact .signup__copy {
    gap: 7px;
  }

  .signup--contact .signup__title {
    padding-top: 0;
    font-size: 22px;
    line-height: 25.3px;
  }

  .signup--contact .signup__lead {
    padding-top: 1px;
    font-size: 13.5px;
    line-height: 18px;
  }

  .signup--contact .signup__form {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 28px 21px 21px;
  }

  .signup--contact .signup__consent {
    flex-wrap: nowrap;
    column-gap: 0;
    min-height: 64px;
  }

  .signup--contact .signup__check {
    margin: 2px 11px 0 4px;
  }

  .signup--contact .signup__consent-copy {
    flex: 0 0 180px;
    max-width: 180px;
  }

  .signup--contact .signup__policy {
    flex: 0 0 111px;
    width: 111px;
    max-width: 111px;
  }

  .signup--contact .signup__consent-br,
  .signup--contact .signup__policy-br {
    display: inline;
  }

  .signup--contact .btn--signup {
    width: 100%;
  }
}

.locations {
  background: var(--color-surface);
}

.locations--branch {
  background: #f5f4f3;
}

.locations--branch .locations__list {
  background: #e7e5e3;
}

.locations--branch .locations__card {
  background: #fff;
}

.locations--branch .locations__name {
  line-height: 22px;
}

.locations--branch .locations__address {
  line-height: 18px;
}

.locations--branch .locations__more {
  line-height: 16px;
}

.locations__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 64px;
}

.locations__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.locations__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
}

.locations__map {
  position: relative;
  height: 374px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-media);
  background: #f5f4f3;
}

.locations__map iframe,
.locations__map > div,
.access__map iframe,
.access__map > div {
  position: absolute;
  inset: 0;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  border: 0;
}

.lenis.lenis-smooth .locations__map iframe,
.lenis.lenis-smooth .locations__map > div,
.lenis.lenis-smooth .access__map iframe,
.lenis.lenis-smooth .access__map > div {
  pointer-events: none;
}

.lenis.lenis-smooth .locations__map.is-interactive iframe,
.lenis.lenis-smooth .locations__map.is-interactive > div,
.lenis.lenis-smooth .access__map.is-interactive iframe,
.lenis.lenis-smooth .access__map.is-interactive > div {
  pointer-events: auto;
}

.locations__badge {
  position: absolute;
  top: 26px;
  left: 14px;
  z-index: 1;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.33px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.locations__badge-short {
  display: none;
}

.locations__pins {
  margin: 0;
  padding: 0;
  list-style: none;
}

.locations__pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  transform: translateX(-50%);
}

.locations__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
}

.locations__mark::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 8px 8px 8px 0;
  box-shadow: 0 1px 2px rgba(13, 12, 11, 0.08);
  transform: rotate(-45deg);
}

.locations__label {
  padding: 2px 8px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(13, 12, 11, 0.08);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.locations__pin--krylatskoe {
  left: 15.3%;
  top: 21.8%;
}

.locations__pin--petrovka {
  left: 32.8%;
  top: 48.8%;
}

.locations__pin--rechnoy {
  left: 49.8%;
  top: 16.1%;
}

.locations__pin--mosfilmovskaya {
  left: 22.5%;
  top: 62.3%;
}

.locations__pin--fili {
  left: 53.8%;
  top: 58.4%;
}

.locations__pin--kitay-gorod {
  left: 67.4%;
  top: 39.2%;
}

.locations__pin--aeroport {
  left: 61.4%;
  top: 27.6%;
}

.locations__pin--solnechnogorsk {
  left: 82%;
  top: 12.2%;
}

.locations__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 12px 0 0;
  overflow: hidden;
  border-radius: var(--radius-btn);
  background: var(--color-line);
  list-style: none;
}

.locations__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 16px 20px;
  background: var(--color-surface);
}

.locations__card-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.locations__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
}

.locations__card-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.locations__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.locations__address {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-muted);
}

.locations__more {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.locations__card:hover .locations__more {
  opacity: 1;
}

.locations__break {
  display: none;
}

@media (max-width: 1024px) {
  .locations__inner {
    padding: 56px 32px;
  }

  .locations__title {
    font-size: 32px;
    line-height: 1.15;
  }

  .locations__map {
    height: 300px;
  }

  .locations__card {
    padding: 14px 16px;
  }
}

@media (max-width: 768px) {
  .locations__inner {
    gap: 7px;
    padding: 40px 20px;
  }

  .locations__eyebrow {
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.06em;
  }

  .locations__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 25.3px;
    letter-spacing: 0;
  }

  .locations__map {
    flex-shrink: 0;
    height: 231px;
  }

  .locations__badge {
    top: 20px;
    left: 11px;
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 0;
  }

  .locations__badge-full {
    display: none;
  }

  .locations__badge-short {
    display: inline;
  }

  .locations__pins {
    display: none;
  }

  .locations__list {
    grid-template-columns: 1fr;
    padding-top: 7px;
  }

  .locations__card {
    align-items: center;
    min-height: 0;
    gap: 8px;
    padding: 14px 16px;
  }

  .locations__card-main {
    gap: 12px;
  }

  .locations__dot {
    width: 7px;
    height: 7px;
  }

  .locations__name {
    font-size: 14px;
    line-height: 21px;
  }

  .locations__address {
    font-size: 12px;
    line-height: 16px;
  }

  .locations__more {
    font-size: 11px;
    line-height: 15px;
  }

  .locations__break {
    display: block;
  }

  .locations--branch .locations__name {
    line-height: 21px;
  }

  .locations--branch .locations__address {
    font-size: 12px;
    line-height: 16px;
  }

  .locations--branch .locations__more {
    font-size: 11px;
    line-height: 15px;
  }
}
