/* ==========================================================================
   Design system + base components (BEM, flat selectors only)
   Page-specific blocks: add in css/pages/<page>.css when needed
   ========================================================================== */

:root {
  /* Colors — Titan brand */
  --color-primary: #ff6b35;
  --color-primary-hover: #e85f2f;
  --color-primary-focus: #d45428;
  --color-primary-disabled: #ffb399;

  --color-secondary: #0e9f6e;
  --color-secondary-hover: #0c865c;
  --color-secondary-focus: #0a6d4b;
  --color-secondary-disabled: #84d9b8;

  --color-text: #171a24;
  --color-text-muted: rgba(23, 26, 36, 0.8);
  --color-text-header: #171a24;
  --color-header-bar: #2b2f3c;
  --color-upperhead-bg: #fafafa;
  --color-upperhead-bg-mobile: #ffffff;
  --color-icon-phone: #ff6b35;
  --color-icon-time: #49de63;
  --color-icon-location: #36c5f0;
  --color-icon-search: #2b2f3c;
  --color-text-inverse: #ffffff;
  --color-text-disabled: #9ca3af;

  --color-bg: #ffffff;
  --color-surface: #f9fafb;
  --color-surface-elevated: #ffffff;
  --color-border: #e5e7eb;
  --color-border-strong: #d1d5db;

  --color-focus-ring: #2563eb;
  --color-error: #dc2626;
  --color-success: #059669;

  /* Icons — always white inline SVG (currentColor) */
  --color-icon: #ffffff;

  /* Typography */
  --font-family-base: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --letter-spacing-tight: -0.02em;
  --font-family-numeric: "Golos", "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --font-size-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --font-size-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --font-size-md: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem);
  --font-size-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --font-size-xxl: clamp(1.75rem, 1.4rem + 1.2vw, 2.25rem);
  --font-size-display: clamp(2rem, 1.5rem + 2vw, 3rem);

  --line-height-sm: 1.25;
  --line-height-md: 1.5;
  --line-height-lg: 1.65;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing scale (8px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --space-section-y: clamp(var(--space-12), 6vw, var(--space-16));
  --space-inline-fluid: clamp(var(--space-4), 4vw, var(--space-8));

  /* Geometry */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 4px 12px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 12px 32px rgba(17, 24, 39, 0.12);

  --transition-base: 0.2s ease;
  --transition-slow: 0.35s ease;

  /* Layout */
  --container-max: 1220px;
  --site-header-height-mobile: 100px;
  --site-header-height-desktop: 140px;
  --site-header-upper-mobile: 40px;
  --site-header-upper-desktop: 50px;
  --site-header-main-mobile: 60px;
  --site-header-main-desktop: 90px;

  /* Breakpoints (for reference in media queries) */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Base document (single exception: html/body for global typography) */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-md);
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}
body.main-page{
  padding-top: 40px;
}

/* Focus */
:focus {
  outline: none;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 1000;
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  transform: translateY(-200%);
  transition: transform var(--transition-base);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* Section */
.section {
  padding-block: var(--space-section-y);
}

.section--compact {
  padding-block: var(--space-8);
}

.section--no-top {
  padding-block-start: 0;
}

.section--no-bottom {
  padding-block-end: 0;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-block-end: var(--space-8);
}

.section__title {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-sm);
  color: var(--color-text);
}

.section__subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-lg);
  color: var(--color-text-muted);
  max-width: 42rem;
}

/* Visually hidden (a11y) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Link */
.link {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color var(--transition-base);
}

.link:hover {
  color: var(--color-primary-hover);
}

.link:focus-visible {
  border-radius: var(--radius-sm);
}

.link--muted {
  color: var(--color-text-muted);
  text-decoration: none;
}

.link--muted:hover {
  color: var(--color-text);
}

/* Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding-inline: var(--space-6);
  padding-block: var(--space-3);
  font-family: inherit;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-sm);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    opacity var(--transition-base);
}

.button:disabled,
.button--disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.button--primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.button--primary:hover {
  background-color: var(--color-primary-hover);
}

.button--primary:active {
  background-color: var(--color-primary-focus);
}

.button--secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-inverse);
}

.button--secondary:hover {
  background-color: var(--color-secondary-hover);
}

.button--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.button--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.button--ghost {
  background-color: transparent;
  color: var(--color-text);
}

.button--ghost:hover {
  background-color: var(--color-surface);
}

.button--full {
  width: 100%;
}

.button--icon-only {
  padding-inline: var(--space-3);
}

/* Input */
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field__label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.field__hint {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.field__error {
  font-size: var(--font-size-xs);
  color: var(--color-error);
}

.input {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding-inline: var(--space-4);
  padding-block: var(--space-3);
  font-family: inherit;
  font-size: var(--font-size-md);
  line-height: var(--line-height-md);
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.input::placeholder {
  color: var(--color-text-disabled);
}

.input:hover {
  border-color: var(--color-border-strong);
}

.input:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.2);
}

.input:disabled {
  background-color: var(--color-surface);
  color: var(--color-text-disabled);
  cursor: not-allowed;
}

.input--error {
  border-color: var(--color-error);
}

.textarea {
  min-height: 8rem;
  resize: vertical;
}

/* Card */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  background-color: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card__media {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-sm);
}

.card__text {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: var(--line-height-lg);
}

.card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block-start: auto;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.5rem;
  padding-inline: var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-sm);
  border-radius: var(--radius-full);
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.badge--primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: transparent;
}

.badge--secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-inverse);
  border-color: transparent;
}

/* Avatar */
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

.avatar--sm {
  width: 2rem;
  height: 2rem;
}

.avatar--lg {
  width: 3.5rem;
  height: 3.5rem;
}

.avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icon — inline SVG only, white via currentColor (no img/icons fonts) */
.icon {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-icon);
  fill: currentColor;
}

.icon--sm {
  width: 1.25rem;
  height: 1.25rem;
}

.icon--md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--lg {
  width: 2rem;
  height: 2rem;
}

.icon--xl {
  width: 2.5rem;
  height: 2.5rem;
}

/* Footer */
.footer {
  padding-block: var(--space-12);
  background-color: var(--color-surface);
  border-block-start: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-block-start: var(--space-8);
  border-block-start: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.5);
  border: none;
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  max-width: 32rem;
  max-height: calc(100vh - var(--space-8));
  padding: var(--space-8);
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.modal__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.accordion__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  min-height: 2.75rem;
  padding: var(--space-4) var(--space-6);
  font-family: inherit;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  text-align: start;
  color: var(--color-text);
  background-color: var(--color-surface-elevated);
  border: none;
  cursor: pointer;
}

.accordion__panel {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-muted);
  line-height: var(--line-height-lg);
}

.accordion__panel[hidden] {
  display: none;
}

/* Tabs */
.tabs {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
}

.tabs__tab {
  min-height: 2.75rem;
  padding-inline: var(--space-4);
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base);
}

.tabs__tab:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.tabs__tab--active {
  color: var(--color-text-inverse);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.tabs__panel[hidden] {
  display: none;
}

/* Page shell (placeholder hero until Figma blocks arrive) */
.page-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding-block: var(--space-section-y);
  padding-top: calc(var(--site-header-height-mobile) + 32px);
}

.page-hero__title {
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-sm);
}

.page-hero__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-lg);
  max-width: 36rem;
}

/* Media queries — mobile-first */
@media (min-width: 48rem) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 64rem) {
  .section__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
  }
}

/* ==========================================================================
   Site header — Titan TRC (BEM, mobile-first, px)
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  backdrop-filter: blur(4px);
background: linear-gradient(180.00deg, rgba(23, 26, 36, 0.6) 39.687%,rgba(23, 26, 36, 0) 99.483%);
}

.site-header__container {
  padding-left: 0;
  padding-right: 0;
}

.site-header__top {
  background-color: var(--color-upperhead-bg-mobile);
}

.site-header__top-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: var(--site-header-upper-mobile);
  padding-left: 8px;
  padding-right: 8px;
}

.site-header__bar {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 59.13%, rgba(0, 0, 0, 0) 100%);
}

.site-header__bar-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--site-header-main-mobile);
  padding-left: 8px;
  padding-right: 8px;
}

.site-header__logo {
  display: block;
  width: 124px;
  height: 46px;
  text-decoration: none;
}

.site-header__logo-graphic {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.site-header__panel {
  display: none;
  position: fixed;
  top: var(--site-header-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  padding: 24px;
  background-color: var(--color-header-bar);
  overflow-y: auto;
  height: fit-content;
}

.site-header__panel--open {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 0;
  list-style: none;
}

.header-info__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex: none;
}

.header-info__item--location {
  display: none;
}

.header-info__item--phone {
  position: static;
  width: auto;
  height: auto;
}

.header-info__item--time {
  position: static;
  width: auto;
  height: auto;
}

.header-info__icon {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.header-info__icon--stroke {
  fill: none;
  stroke: currentColor;
}

.header-info__icon--phone {
  color: var(--color-icon-phone);
}

.header-info__icon--time {
  color: var(--color-icon-time);
}

.header-info__icon--location {
  color: var(--color-icon-location);
}

.header-info__text {
  font-family: var(--font-family-base);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-header);
  opacity: 0.8;
  text-decoration: none;
  white-space: nowrap;
}

.header-info__text--full {
  display: none;
}

.header-info__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.header-info__link:focus-visible {
  border-radius: 4px;
}

.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 13px;
  margin-left: auto;
}

.header-search__icon {
  display: block;
  width: 26px;
  height: 26px;
  color: var(--color-icon-search);
  fill: none;
  stroke: currentColor;
}

.header-nav {
  display: none;
}

.header-nav__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.header-nav__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  line-height: 20px;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-inverse);
  text-decoration: none;
  border-radius: 8px;
  transition: opacity var(--transition-base);
}

.header-nav__link:hover {
  opacity: 0.85;
}

.header-nav__link:focus-visible {
  border-radius: 8px;
}

.header-nav--mobile {
  display: flex;
  flex-direction: column;
}

.header-nav--panel {
  display: flex;
}

.map-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 96px;
  height: 40px;
  padding: 13px 12px 16px 10px;
  font-family: var(--font-family-base);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  line-height: 14px;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-inverse);
  text-decoration: none;
  background-color: var(--color-primary);
  border-radius: 35px;
  transition: background-color var(--transition-base);
}

.map-btn:hover {
  background-color: var(--color-primary-hover);
}

.map-btn:active {
  background-color: var(--color-primary-focus);
}

.map-btn:focus-visible {
  border-radius: 35px;
}

.map-btn__icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-icon);
  fill: currentColor;
}

.map-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 48px;
}

.map-btn__line {
  display: block;
}

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.burger__line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-icon);
  border-radius: 5px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.burger--open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger--open .burger__line:nth-child(2) {
  opacity: 0;
}

.burger--open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  body.main-page{
    padding-top: 50px;
  }
  .site-header__top {
    background-color: var(--color-upperhead-bg);
  }

  .site-header__top-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: var(--site-header-upper-desktop);
    padding-left: 0;
    padding-right: 0;
  }

  .site-header__bar {
    background-image: none;
  }

  .site-header__bar-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: var(--site-header-main-desktop);
    gap: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .site-header__logo {
    position: static;
    display: flex;
    width: 178px;
    height: 66px;
  }

  .site-header__actions {
    position: static;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .site-header__panel {
    display: none;
  }

  .header-info {
    position: static;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    flex: none;
    gap: 20px;
    justify-content: flex-start;
  }

  .header-info__item {
    gap: 8px;
  }

  .header-info__text--short {
    display: none;
  }

  .header-info__text--full {
    display: inline;
  }

  .header-info__item--location {
    display: flex;
  }

  .header-info__icon {
    width: 18px;
    height: 18px;
  }

  .header-info__text {
    font-size: 15px;
    line-height: 20px;
  }

  .header-info__item--phone .header-info__text {
    font-size: 16px;
    line-height: 22px;
  }

  .header-info__item--phone {
    position: static;
    width: auto;
    height: auto;
  }

  .header-info__item--time {
    position: static;
    width: auto;
    height: auto;
  }

  .header-search {
    position: static;
    width: 28px;
    height: 28px;
    min-height: 44px;
    min-width: 44px;
  }

  .header-search__icon {
    width: 28px;
    height: 28px;
  }

  .header-nav--desktop {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .header-nav--desktop .header-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .header-nav--desktop .header-nav__link {
    min-height: 40px;
  }

  .burger {
    display: none;
  }

  .map-btn {
    position: static;
    width: 155px;
    min-height: 50px;
    padding: 14px 16px 16px;
    gap: 6px;
    font-size: 15px;
    line-height: 20px;
  }

  .map-btn__text {
    flex-direction: row;
    align-items: center;
    max-width: none;
    white-space: nowrap;
    gap: 4px;
  }

  .map-btn__line {
    display: block;
  }

  .burger {
    position: static;
  }
}

/* ==========================================================================
   Main banner slider (BEM, flat selectors, px)
   ========================================================================== */

.main-banner {
  position: relative;
  width: 100%;
  background-color: #3c5160;
}
.main-banner__slide:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180.00deg, rgba(23, 26, 36, 0.4) 5.828%,rgba(23, 26, 36, 0) 19.899%,rgba(23, 26, 36, 0) 79.831%,rgba(23, 26, 36, 0.4) 95.628%);
  z-index: 1;
}
.main-banner__viewport {
  position: relative;
  width: 100%;
  /*height: calc(420px + var(--site-header-upper-mobile));*/
  overflow: hidden;
}

.main-banner__track {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  transform: translateX(0%);
  transition: transform 250ms ease;
  will-change: transform;
}

.main-banner__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.main-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-banner__arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.main-banner__arrow--prev {
  left: 8px;
}

.main-banner__arrow--next {
  right: 8px;
}

.main-banner__arrow-icon {
  width: 42px;
  height: 42px;
  color: rgba(195, 195, 195, 0.2);
}

.main-banner__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.main-banner__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border-radius: 50%;
}

.main-banner__dot--active {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
}

@media (min-width: 768px) {
  /*.main-banner__viewport {
    height: calc(700px + var(--site-header-upper-desktop));
  }*/

  .main-banner__arrow {
    width: 42px;
    height: 42px;
  }

  .main-banner__arrow--prev {
    left: 280px;
  }

  .main-banner__arrow--next {
    right: 280px;
  }

  .main-banner__dots {
    bottom: 20px;
    gap: 14px;
  }

  .main-banner__arrow-icon {
    color: rgba(195, 195, 195, 0.4);
  }

  .page-hero {
    padding-top: calc(var(--site-header-height-desktop) + 32px);
  }
}

/* ==========================================================================
   Category
   ========================================================================== */

.category {
  position: relative;
  width: 100%;
  background-color: #0F0F1A;
  overflow: hidden;
}

.category__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
}

.category__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 35px;
}

.category__logo {
  width: 236px;
  height: auto;
  display: block;
}

.category__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.category-pill {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  min-height: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.category-pill__icon {
  width: 16px;
  height: 16px;
  flex: none;
}

.category-pill__icon--time {
  stroke: #49DE63;
}

.category-pill__icon--location {
  color: #36C5F0;
}

.category-pill__text {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}

.category__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 344px;
  margin-top: 8px;
}

.stat-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 168px;
  min-height: 75px;
  padding: 12px 32px 16px;
  background: #1A1A29;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.stat-card__value {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: var(--letter-spacing-tight);
  text-align: center;
  color: #FF6B35;
}

.stat-card__label {
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
  text-align: center;
  color: #FFFFFF;
}

.category__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 8px;
  width: 100%;
  max-width: 344px;
  margin-top: 18px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100px;
  text-decoration: none;
  color: #FFFFFF;
}

.category-card__icon-box {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card__icon {
  width: 28px;
  height: 28px;
  color: currentColor;
  display: block;
}

.category-card__label {
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: var(--letter-spacing-tight);
  text-align: center;
}

.category-card--pink .category-card__icon-box {
  background: #332239;
  border-color: #F0447C;
}

.category-card--orange .category-card__icon-box {
  background: #33282F;
  border-color: #F87B14;
}

.category-card--yellow .category-card__icon-box {
  background: #332A2E;
  border-color: #DEA40B;
}

.category-card--purple .category-card__icon-box {
  background: #282445;
  border-color: #865DF4;
}

.category-card--cyan .category-card__icon-box {
  background: #1E2A43;
  border-color: #0BB2D7;
}

.category-card--magenta .category-card__icon-box {
  background: #312241;
  border-color: #DB46E5;
}

.category-card--blue .category-card__icon-box {
  background: #1F2A44;
  border-color: #2A92EB;
}

.category-card--green .category-card__icon-box {
  background: #1D2D3B;
  border-color: #11B88A;
}

.category-card--violet .category-card__icon-box {
  background: #292445;
  border-color: #955AF6;
}

.category-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .category__content {
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .category__logo {
    width: 380px;
  }

  .category__info {
    flex-direction: row;
    gap: 16px;
  }

  .category-pill {
    gap: 10px;
    padding: 7px 20px;
    min-height: 36px;
    background: rgba(255, 255, 255, 0.06);
  }

  .category-pill__icon {
    width: 20px;
    height: 20px;
  }

  .category-pill__text {
    font-size: 16px;
    line-height: 22px;
  }

  .category__stats {
    max-width: 892px;
    gap: 16px;
    margin-top: 8px;
  }

  .stat-card {
    width: 211px;
    min-height: 113px;
    gap: 12px;
    padding: 12px 32px 16px;
    border-radius: 24px;
  }

  .stat-card__value {
    font-size: 48px;
    line-height: 100%;
  }

  .stat-card__label {
    font-size: 18px;
    line-height: 25px;
  }

  .category__list {
    max-width: 1208px;
    gap: 16px;
    margin-top: 24px;
  }

  .category-card {
    width: 120px;
    gap: 16px;
  }

  .category-card__icon-box {
    width: 60px;
    height: 60px;
  }

  .category-card__icon {
    width: 34px;
    height: 34px;
  }

  .category-card__label {
    font-size: 18px;
    line-height: 25px;
  }
}

/* ==========================================================================
   Shops
   ========================================================================== */

.shops {
  width: 100%;
  background: #FAFAFA;
  color: #171A24;
  padding-top: 32px;
  padding-bottom: 60px;
}

.shops__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.shops__kicker {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.shops__title {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
}

.shops__subtitle {
  max-width: 599px;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(23, 26, 36, 0.8);
}

.shops-slider {
  width: 100%;
  margin-top: 30px;
  --shop-card-width: 190px;
}

.shops-slider__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: calc(50vw - (var(--shop-card-width) / 2));
  scroll-padding-right: calc(50vw - (var(--shop-card-width) / 2));
  cursor: grab;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shops-slider__viewport::-webkit-scrollbar {
  display: none;
}

.shops-slider__viewport--dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.shops-slider__viewport--dragging .shop-card {
  pointer-events: none;
}

.shops-slider__track {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
  padding-left: calc(50vw - (var(--shop-card-width) / 2));
  padding-right: calc(50vw - (var(--shop-card-width) / 2));
  margin: 0;
}

.shops-slider__slide {
  flex: none;
  scroll-snap-align: center;
}

.shop-card {
  position: relative;
  display: block;
  width: 190px;
  height: 305px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
}

.shop-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.shop-card__shadow {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.shop-card__name {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-family-numeric);
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: var(--letter-spacing-tight);
}

.shop-card__meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-card__meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  min-width: 0;
  color: #FFFFFF;
}

.shop-card__meta-icon {
  width: 14px;
  height: 14px;
  flex: none;
  color: currentColor;
}

.shop-card__meta-text {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  white-space: nowrap;
}

.shops__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.shops__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 55px;
  padding: 14px 32px 16px;
  border-radius: 35px;
  background: #FF6B35;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
}

.shops__button:focus-visible {
  outline: 2px solid rgba(23, 26, 36, 0.5);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .shops {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .shops__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .shops__title {
    font-size: 52px;
    line-height: 62px;
  }

  .shops__subtitle {
    font-size: 18px;
    line-height: 25px;
  }

  .shops-slider {
    margin-top: 40px;
    --shop-card-width: 290px;
  }

  .shops-slider__track {
    gap: 20px;
  }

  .shop-card {
    width: 290px;
    height: 400px;
    border-radius: 24px;
  }

  .shop-card__name {
    left: 20px;
    right: 20px;
    font-size: 32px;
    line-height: 38px;
  }

  .shop-card__meta {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .shop-card__meta-icon {
    width: 18px;
    height: 18px;
  }

  .shop-card__meta-item {
    gap: 6px;
  }

  .shop-card__meta-text {
    font-size: 15px;
    line-height: 20px;
  }

  .shops__actions {
    margin-top: 32px;
  }

  .shops__button {
    min-width: 220px;
    min-height: 60px;
    font-size: 18px;
    line-height: 25px;
    padding: 14px 0 16px;
  }

}

/* ==========================================================================
   News
   ========================================================================== */

.news {
  width: 100%;
  background: #FFFFFF;
  color: #171A24;
  padding-top: 60px;
  padding-bottom: 80px;
}

.news__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.news__kicker {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.news__title {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
}

.news__filters {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.news-filter {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 45px;
  padding: 7px 16px 8px;
  border-radius: 35px;
  border: 1px solid rgba(23, 26, 36, 0.4);
  background: transparent;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
  cursor: pointer;
}

.news-filter--active {
  background: #FF6B35;
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.news-slider {
  width: 100%;
  margin-top: 24px;
  --news-card-width: 315px;
}

.news-slider__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.news-slider__viewport::-webkit-scrollbar {
  display: none;
}

.news-slider__track {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  padding-left: calc(50vw - (var(--news-card-width) / 2));
  padding-right: calc(50vw - (var(--news-card-width) / 2));
  margin: 0;
}

.news-slider__slide {
  flex: none;
  scroll-snap-align: center;
}

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

.news-card {
  position: relative;
  display: block;
  width: 315px;
  border-radius: 24px;
  overflow: hidden;
  color: #FFFFFF;
  text-decoration: none;
  aspect-ratio: 3 / 2;
}

.news-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.news-card__shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 26, 36, 0.3) 14.92%,
    rgba(23, 26, 36, 0.15) 50.07%,
    #171A24 100%
  );
}

.news-card__logo {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-family-numeric);
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: var(--letter-spacing-tight);
}

.news-card__title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 60px;
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

.news-card__date {
  position: absolute;
  left: 20px;
  bottom: 24px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.news-card__date-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  flex: none;
}

.news-card__date-text {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: var(--letter-spacing-tight);
}

.news-slider__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-left: 20px;
  padding-right: 20px;
}

.news-slider__arrows {
  display: flex;
  gap: 10px;
}

.news-slider__arrow {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid rgba(23, 26, 36, 0.3);
  background: #FFFFFF;
  color: #171A24;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-slider__arrow-icon {
  font-size: 18px;
  line-height: 18px;
}

.news-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.news-slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  border: none;
  background: rgba(23, 26, 36, 0.2);
  padding: 0;
  cursor: pointer;
}

.news-slider__dot--active {
  background: #FF6B35;
}

.news__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 55px;
  padding: 14px 32px 16px;
  border-radius: 35px;
  background: #FF6B35;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
}

.news__button:focus-visible {
  outline: 2px solid rgba(23, 26, 36, 0.5);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .news__title {
    font-size: 52px;
    line-height: 62px;
  }

  .news-slider {
    --news-card-width: 393px;
    margin-top: 40px;
  }

  .news-slider__track {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .news-card {
    width: 393px;
  }

  .news-card__title {
    font-size: 24px;
  }

  .news-slider__controls {
    display: none;
  }

  .news__button {
    min-width: 220px;
    min-height: 60px;
    font-size: 18px;
    line-height: 25px;
    padding: 14px 0 16px;
  }
}

/* ==========================================================================
   Entertainment
   ========================================================================== */

.entertainment {
  width: 100%;
  color: #FFFFFF;
  background-color: #23232E;
  background-image: url("../images/razvlecheniya/BG.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 32px;
  padding-bottom: 60px;
}

.entertainment__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.entertainment__kicker {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.entertainment__title {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
}

.entertainment__subtitle {
  max-width: 599px;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(255, 255, 255, 0.8);
}

.entertainment__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.ent-card {
  position: relative;
  display: block;
  width: 100%;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.ent-card::before, .about-ent-card::before{
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
}
.ent-card:first-child:before, .about-ent-card:first-child::before{
  background: linear-gradient(180.00deg, rgba(54, 32, 82, 0.4) 0%,rgba(53.55, 31.99, 82.14, 1) 79.686%);
}
.ent-card:nth-child(2):before, .about-ent-card:nth-child(2)::before{
  background: linear-gradient(180.00deg, rgba(41, 66.6, 105, 0.4) 0%,rgba(41, 67, 105, 1) 79.686%);
}
.ent-card:last-child:before, .about-ent-card:last-child::before{
  background: linear-gradient(180.00deg, rgba(105, 87.93, 41, 0.4) 0%,rgba(105, 65.53, 41, 1) 79.686%);
}
.ent-card--violet {
  background-image: url("../images/razvlecheniya/kino.svg");
}

.ent-card--blue {
  background-image: url("../images/razvlecheniya/boyling.svg");
}

.ent-card--brown {
  background-image: url("../images/razvlecheniya/labirint.svg");
}

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

.ent-card__shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.ent-card--violet .ent-card__shadow {
  background: linear-gradient(180deg, rgba(54, 32, 82, 0.1) 0%, rgba(54, 32, 82, 0.5) 50%, rgba(54, 32, 82, 0.92) 100%);
}

.ent-card--blue .ent-card__shadow {
  background: linear-gradient(180deg, rgba(41, 67, 105, 0.1) 0%, rgba(41, 67, 105, 0.5) 50%, rgba(41, 67, 105, 0.92) 100%);
}

.ent-card--brown .ent-card__shadow {
  background: linear-gradient(180deg, rgba(105, 66, 41, 0.1) 0%, rgba(105, 66, 41, 0.5) 50%, rgba(105, 66, 41, 0.92) 100%);
}

.ent-card__content {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

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

.ent-card__name {
  font-family: var(--font-family-numeric);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
}

.ent-card__desc {
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(255, 255, 255, 0.8);
}

.ent-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.ent-meta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.ent-meta__icon {
  width: 14px;
  height: 14px;
  flex: none;
  color: currentColor;
}

.ent-meta__text {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  white-space: nowrap;
  color: #FFFFFF;
}

.ent-meta--time {
  color: #49DE63;
}

.ent-meta--floor {
  color: #36C5F0;
}

.ent-meta--phone {
  color: #FF6B35;
}

.entertainment__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.entertainment__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 55px;
  padding: 14px 32px 16px;
  border-radius: 35px;
  background: #FF6B35;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
}

.entertainment__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .entertainment {
    padding-top: 80px;
    padding-bottom: 100px;
    background-position: center center;
    background-size: cover;
  }

  .entertainment__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .entertainment__title {
    font-size: 52px;
    line-height: 62px;
  }

  .entertainment__subtitle {
    font-size: 18px;
    line-height: 25px;
  }

  .entertainment__grid {
    margin-top: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .ent-card {
    height: 350px;
    border-radius: 24px;
  }

  .ent-card--wide {
    width: 100%;
  }

  .ent-card:not(.ent-card--wide) {
    width: 600px;
  }

  .ent-card__content {
    left: 32px;
    right: 32px;
    bottom: 24px;
    gap: 16px;
  }

  .ent-card__name {
    font-size: 36px;
    line-height: 43px;
  }

  .ent-card__desc {
    font-size: 18px;
    line-height: 25px;
  }

  .ent-meta__icon {
    width: 18px;
    height: 18px;
  }

  .ent-meta__text {
    font-size: 15px;
    line-height: 20px;
  }

  .entertainment__actions {
    margin-top: 40px;
  }

  .entertainment__button {
    min-width: 220px;
    min-height: 60px;
    font-size: 18px;
    line-height: 25px;
    padding: 14px 0 16px;
  }
}

/* ==========================================================================
   Map
   ========================================================================== */

.map {
  width: 100%;
  background: #FFFFFF;
  color: #171A24;
  padding-top: 60px;
  padding-bottom: 80px;
}

.map__inner {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
}

.map__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.map__kicker {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.map__title {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
}

.map__canvas {
  width: 100%;
  margin-top: 24px;
}

.map__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.floor__list{
  padding: 0;
  margin: 0;
  list-style: none;
}
.floor__item img{
  width: 100%;
}
@media (min-width: 768px) {
  .map__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .map__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .map__title {
    font-size: 52px;
    line-height: 62px;
  }

  .map__canvas {
    margin-top: 32px;
  }
}

/* ==========================================================================
   Contacts
   ========================================================================== */

.contacts {
  width: 100%;
  background: #FFFFFF;
}

.contacts__inner {
  width: 100%;
  background-color: #23232E;
  background-image: url("../images/contacts/BG.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 41px;
  color: #FFFFFF;
}

.contacts__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
}

.contacts__kicker {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.contacts__title {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
}

.contacts__body {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts__map {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: #EBEBEB;
}

.contacts__map-frame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

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

.contacts__map-buttons {
  display: flex;
  gap: 8px;
}

.contacts-map-button {
  position: relative;
  width: 144px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.06);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 30px;
  text-decoration: none;
  overflow: hidden;
}

.contacts-map-button[href*="yandex"] {
  background-image: url("../images/contacts/yandex.svg");
}

.contacts-map-button[href*="maps.app"],
.contacts-map-button[href*="google"] {
  background-image: url("../images/contacts/google.svg");
}

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

.contacts-card {
  box-sizing: border-box;
  width: 100%;
  border-radius: 16px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-card--blue {
  background: #6EB0ED29;
}

.contacts-card--green {
  background: #6EED9F29;
}

.contacts-card--orange {
  background: #EFB14E29;
  padding: 15px 20px 17px 16px;
  border-radius: 24px;
}

.contacts-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contacts-card__badge {
  width: 28px;
  height: 28px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contacts-card__badge-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.contacts-card__title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
}

.contacts-card__text {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  line-height: 140%;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(255, 255, 255, 0.8);
}

.contacts__how-title {
  font-family: var(--font-family-numeric);
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 16px;
}

.contacts-route {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-route__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-route__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contacts-route__badge {
  width: 28px;
  height: 28px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contacts-route__badge-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.contacts-route__title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
}

.contacts-route__text {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  line-height: 140%;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .contacts__inner {
    background-position: center center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .contacts__header {
    padding-left: 0;
    padding-right: 0;
  }

  .contacts__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .contacts__title {
    font-size: 52px;
    line-height: 62px;
  }

  .contacts__body {
    padding-left: 0;
    padding-right: 0;
    margin-top: 32px;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .contacts__map {
    width: 807px;
    height: 580px;
    border-radius: 24px;
  }

  .contacts__aside {
    width: 393px;
    gap: 16px;
  }

  .contacts__map-buttons {
    gap: 12px;
  }

  .contacts-map-button {
    width: 174px;
    height: 46px;
  }

  .contacts-card {
    border-radius: 24px;
    padding: 12px 20px 24px;
  }

  .contacts-card__badge {
    width: 36px;
    height: 36px;
  }

  .contacts-card__badge-icon {
    width: 20px;
    height: 20px;
  }

  .contacts-card__title {
    font-size: 20px;
    line-height: 27px;
  }

  .contacts-card__text {
    font-size: 16px;
    line-height: 140%;
  }

  .contacts__how-title {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    margin-top: 12px;
  }

  .contacts-card--orange {
    height: 180px;
    padding: 16px 20px 24px;
  }

  .contacts-route__row {
    gap: 6px;
  }

  .contacts-route__badge {
    width: 36px;
    height: 36px;
  }

  .contacts-route__badge-icon {
    width: 24px;
    height: 24px;
  }

  .contacts-route__title {
    font-size: 20px;
    line-height: 27px;
  }

  .contacts-route__text {
    font-size: 16px;
    line-height: 22px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  width: 100%;
  background: #0F0F1A;
  color: #FFFFFF;
  padding: 0;
  border: 0;
}

.footer__top {
  width: 100%;
}

.footer__inner {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
  display: block;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 55px;
  padding-top: 13px;
  padding-bottom: 24px;
}

.footer__brand-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__logo {
  display: inline-flex;
  text-decoration: none;
}

.footer__logo-image {
  width: 200px;
  height: auto;
  display: block;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 13px 20px 16px;
  border-radius: 35px;
  background: #FF6B35;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 110%;
  letter-spacing: var(--letter-spacing-tight);
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 16px;
}

.footer__desc {
  margin: 16px 0 0;
  max-width: 247px;
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(255, 255, 255, 0.4);
}

.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 16px 0 0;
}

.footer-contacts__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
}

.footer-contacts__icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: none;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .footer__grid {
    gap: 0;
  }

  .footer__policies {
    margin-top: 55px;
  }
}

.footer-social {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  text-decoration: none;
  overflow: hidden;
}

.footer-social__icon {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-social--ig {
  border-radius: 4px;
}

.footer-nav {
  display: none;
}

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

.footer__policy {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottombar {
  width: 100%;
  background: #0F0F1A;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-direction: row;
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer__copyright {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.2);
}

.footer__dev {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
}

.footer__dev-text {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #FFFFFF;
  opacity: 0.2;
}

.footer__dev-logo {
  width: 88px;
  height: auto;
  display: block;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .footer__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 270px 1fr auto;
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 40px;
    row-gap: 40px;
    padding-top: 40px;
    padding-bottom: 0;
    min-height: 440px;
  }

  .footer__brand {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: auto;
  }

  .footer__logo-image {
    width: 240px;
  }

  .footer__desc {
    font-size: 15px;
    line-height: 140%;
    margin-top: 10px;
  }

  .footer-contacts {
    margin-top: 24px;
  }

  .footer-contacts__link {
    font-size: 16px;
    line-height: 22px;
    gap: 8px;
  }

  .footer__cta {
    min-width: 250px;
    min-height: 55px;
    padding: 14px 0 16px;
    font-size: 17px;
    line-height: 23px;
    margin-top: 24px;
  }

  .footer__socials {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    justify-content: flex-end;
    align-self: start;
    justify-self: end;
  }

  .footer-social {
    width: 36px;
    height: 36px;
  }

  .footer-social__icon {
    width: 36px;
    height: 36px;
  }

  .footer-nav {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    gap: 28px;
    padding-top: 0;
    margin-top: 0;
    align-self: start;
  }

  .footer-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
    width: 180px;
  }

  .footer-nav__link {
    font-family: var(--font-family-base);
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: var(--letter-spacing-tight);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }

  .footer__policies {
    grid-column: 2 / 4;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    align-items: flex-end;
    margin-top: 0;
    gap: 16px;
    padding-bottom: 60px;
  }

  .footer__policy {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
  }

  .footer__bottombar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 36px;
  }

  .footer__bottom-inner {
    min-height: 60px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer__copyright {
    font-size: 14px;
    line-height: 18px;
  }

  .footer__dev-logo {
    width: 95px;
  }
}

/* ==========================================================================
   Contacts page
   ========================================================================== */

.page-contacts .site-header__top {
  background: #F5F5F5;
}

.page-contacts .site-header__bar {
  background: #FFFFFF;
}

.page-contacts .header-nav__link {
  color: #171A24;
}

.page-contacts .burger__line {
  background-color: #171A24;
}

.contacts-page {
  width: 100%;
  background: #F5F5F5;
  color: #171A24;
  padding-top: calc(var(--site-header-height-mobile) + 16px);
}

.contacts-page .container {
  padding-left: 8px;
  padding-right: 8px;
}

/* Hero */

.contacts-hero {
  padding-bottom: 64px;
}

.contacts-hero__breadcrumbs {
  margin-bottom: 12px;
}

.contacts-hero__breadcrumbs .breadcrumbs__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts-hero__breadcrumbs .breadcrumbs__link,
.contacts-hero__breadcrumbs .breadcrumbs__separator,
.contacts-hero__breadcrumbs .breadcrumbs__current {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.contacts-hero__breadcrumbs .breadcrumbs__link {
  color: rgba(23, 26, 36, 0.8);
  text-decoration: none;
}

.contacts-hero__breadcrumbs .breadcrumbs__separator,
.contacts-hero__breadcrumbs .breadcrumbs__current {
  color: rgba(23, 26, 36, 0.2);
}

.contacts-hero__layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contacts-hero__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.contacts-hero__media {
  margin: 16px 0 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.contacts-hero__image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.contacts-hero__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding-left: 8px;
  padding-right: 8px;
}

.contacts-hero__text p {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
  opacity: 0.8;
}

.contacts-hero__kicker {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.contacts-hero__title {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
}

.contacts-hero__button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: 24px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 14px 32px 16px;
  border-radius: 35px;
  background: #FF6B35;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color var(--transition-base);
}

.contacts-hero__button:hover {
  background: var(--color-primary-hover);
}

.contacts-hero__button:active {
  background: var(--color-primary-focus);
}

.contacts-hero__button:focus-visible {
  outline: 2px solid #171A24;
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .contacts-page {
    padding-top: calc(var(--site-header-height-desktop) + 16px);
  }

  .contacts-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contacts-hero {
    padding-bottom: 60px;
  }

  .contacts-hero__breadcrumbs {
    margin-bottom: 16px;
  }

  .contacts-hero__layout {
    display: grid;
    grid-template-columns: clamp(360px, 47.4vw, 910px) minmax(0, 1fr);
    grid-template-areas:
      "media head"
      "media text"
      "media button";
    column-gap: 40px;
    row-gap: 0;
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
    padding-left: clamp(16px, 2.08vw, 40px);
    padding-right: clamp(16px, 2.08vw, 40px);
    box-sizing: border-box;
  }

  .contacts-hero__head {
    grid-area: head;
    padding-left: 0;
    padding-right: 0;
  }

  .contacts-hero__media {
    grid-area: media;
    margin-top: 0;
    width: 100%;
    max-width: 910px;
    border-radius: 24px;
  }

  .contacts-hero__image {
    width: 100%;
    height: clamp(360px, 29.17vw, 560px);
    max-height: 560px;
    aspect-ratio: 910 / 560;
  }

  .contacts-hero__text {
    grid-area: text;
    gap: 16px;
    margin-top: 16px;
    padding-left: 0;
    padding-right: 0;
    max-width: 580px;
  }

  .contacts-hero__text p {
    font-size: 18px;
  }

  .contacts-hero__button {
    grid-area: button;
    justify-self: start;
    align-self: start;
    width: auto;
    max-width: 100%;
    margin-top: 24px;
    margin-left: 0;
    margin-right: 0;
    padding: 14px 40px 16px;
    font-size: 18px;
    line-height: 25px;
  }

  .contacts-hero__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .contacts-hero__title {
    font-size: 52px;
    line-height: 62px;
  }
}

/* Rent areas */

.rent-areas {
  padding-bottom: 24px;
}

.rent-areas__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rent-areas__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 8px;
  padding-right: 8px;
}

.rent-areas__kicker {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.rent-areas__title {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
}

.rent-areas__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  background: #FFFFFF;
}

.rent-areas__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rent-areas__item-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rent-areas__label {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: rgba(23, 26, 36, 0.4);
}

.rent-areas__value-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.rent-areas__icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: #FF6B35;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.rent-areas__icon--area {
  mask-image: url("../images/about/square.svg");
  -webkit-mask-image: url("../images/about/square.svg");
}

.rent-areas__icon--food {
  mask-image: url("../images/category/Category%20icons-2.svg");
  -webkit-mask-image: url("../images/category/Category%20icons-2.svg");
}

.rent-areas__icon--fun {
  mask-image: url("../images/category/Category%20icons-8.svg");
  -webkit-mask-image: url("../images/category/Category%20icons-8.svg");
}

.rent-areas__value {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #171A24;
}

.rent-areas__text {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(23, 26, 36, 0.8);
}

@media (min-width: 768px) {
  .rent-areas {
    padding-bottom: 32px;
  }

  .rent-areas__inner {
    gap: 32px;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .rent-areas__head {
    gap: 8px;
    max-width: 580px;
    padding-left: 0;
    padding-right: 0;
  }

  .rent-areas__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .rent-areas__title {
    font-size: 52px;
    line-height: 62px;
  }

  .rent-areas__card {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    min-height: 240px;
    padding: 24px 32px;
    border-radius: 24px;
  }

  .rent-areas__item {
    flex: 1 1 0;
    min-width: 0;
    gap: 12px;
  }

  .rent-areas__item-head {
    gap: 0;
  }

  .rent-areas__label {
    min-height: 28px;
    font-size: 16px;
    line-height: 100%;
  }

  .rent-areas__value-row {
    gap: 12px;
    min-height: 48px;
  }

  .rent-areas__icon {
    width: 36px;
    height: 36px;
  }

  .rent-areas__value {
    font-size: 28px;
    line-height: 100%;
  }

  .rent-areas__text {
    font-size: 17px;
    line-height: 140%;
  }
}

/* Brands */

.brands {
  padding: 24px 0 32px;
  background: #FFFFFF;
}

.brands__container {
  margin-bottom: 24px;
}

.brands__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  max-width: 344px;
  text-align: center;
}

.brands__kicker {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.brands__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
}

.brands__text {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(23, 26, 36, 0.8);
}

.brands__slider {
  width: 100%;
}

.brands__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.brands__viewport:not(.brands__viewport--ready) {
  visibility: hidden;
}

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

.brands__viewport--dragging {
  cursor: grabbing;
}

.brands__viewport--dragging .brands__card {
  pointer-events: none;
}

.brands__track {
  width: max-content;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.brands__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  width: max-content;
  padding-left: 74px;
  margin-left: -110px;
  overflow: visible;
}

.brands__segment {
  display: flex;
  flex-direction: column;
  flex: none;
  gap: 10px;
  overflow: visible;
}

.brands__lane {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  flex: none;
}

.brands__lane--offset {
  transform: translateX(-74px);
}

.brands__card {
  flex: none;
  box-sizing: border-box;
  display: block;
  width: 136px;
  height: 84px;
  border: 1px solid rgba(23, 26, 36, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  line-height: 0;
  text-decoration: none;
}

.brands__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

@media (min-width: 768px) {
  .contacts-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brands {
    padding: 56px 0 80px;
  }

  .brands__container {
    margin-bottom: 60px;
  }

  .brands__head {
    gap: 8px;
    max-width: 1219px;
  }

  .brands__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .brands__title {
    font-size: 52px;
    line-height: 62px;
  }

  .brands__text {
    font-size: 18px;
    line-height: 180%;
  }

  .brands__track {
    padding-left: clamp(16px, 2.08vw, 40px);
    padding-right: clamp(16px, 2.08vw, 40px);
  }

  .brands__row {
    gap: 0;
    padding-left: 0;
    margin-left: 0;
  }

  .brands__segment {
    gap: 16px;
  }

  .brands__lane {
    gap: 20px;
  }

  .brands__lane--offset {
    transform: translateX(155px);
  }

  .brands__card {
    width: 289px;
    height: 180px;
    border-radius: 16px;
  }
}

/* Zones */

.zones {
  position: relative;
  overflow: hidden;
  padding: 42px 0 36px;
  background: #23232E;
  color: #FFFFFF;
}

.zones__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.zones__glow--blue {
  width: 894px;
  height: 893px;
  left: -120px;
  top: 280px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 42, 255, 0.15) 0%, rgba(0, 42, 255, 0) 100%);
}

.zones__glow--cyan {
  width: 968px;
  height: 969px;
  right: -200px;
  top: -80px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(54, 197, 240, 0.15) 0%, rgba(54, 197, 240, 0) 100%);
}

.zones__glow--pink {
  width: 520px;
  height: 520px;
  left: -180px;
  top: 60px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(194, 50, 196, 0.15) 0%, rgba(194, 50, 196, 0) 100%);
}

.zones__container {
  position: relative;
  z-index: 1;
}

.zones__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 auto 16px;
  max-width: 344px;
  text-align: center;
}

.zones__kicker {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.zones__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
}

.zones__grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.zones__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 344px;
  margin-left: auto;
  margin-right: auto;
}

.zones__card:nth-child(1),
.zones__card:nth-child(3) {
  margin-left: auto;
  margin-right: auto;
}

.zones__card:nth-child(2),
.zones__card:nth-child(4),
.zones__card:nth-child(5) {
  margin-left: 8px;
  margin-right: auto;
}

.zones__label {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-numeric);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
}

.zones__panel {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 2px solid transparent;
  border-radius: 16px;
}

.zones__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: 176px;
  padding: 20px 16px;
  border-radius: 12px;
  overflow: hidden;
}

.zones__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 26, 36, 0.4), rgba(23, 26, 36, 0.4));
  pointer-events: none;
}

.zones__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.zones__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.zones__icon-box {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 14px;
}

.zones__icon {
  display: block;
  width: 27px;
  height: 27px;
  filter: brightness(0);
}

.zones__name {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.zones__card--cyan .zones__label {
  color: #0BB2D7;
}

.zones__card--cyan .zones__panel {
  border-color: rgba(11, 178, 215, 0.4);
}

.zones__card--cyan .zones__icon-box {
  border-color: #0BB2D7;
}

.zones__card--violet .zones__label {
  color: #DB46E5;
}

.zones__card--violet .zones__panel {
  border-color: rgba(219, 70, 229, 0.4);
}

.zones__card--violet .zones__icon-box {
  border-color: #DB46E5;
}

.zones__card--mint .zones__label {
  color: #11B88A;
}

.zones__card--mint .zones__panel {
  border-color: rgba(17, 184, 138, 0.4);
}

.zones__card--mint .zones__icon-box {
  border-color: #11B88A;
}

.zones__card--gold .zones__label {
  color: #DEA40B;
}

.zones__card--gold .zones__panel {
  border-color: rgba(222, 164, 11, 0.4);
}

.zones__card--gold .zones__icon-box {
  border-color: #DEA40B;
}

.zones__card--pink .zones__label {
  color: #F0447C;
}

.zones__card--pink .zones__panel {
  border-color: rgba(240, 68, 124, 0.4);
}

.zones__card--pink .zones__inner::after {
  background: linear-gradient(0deg, rgba(23, 26, 36, 0.5), rgba(23, 26, 36, 0.5));
}

.zones__card--pink .zones__icon-box {
  border-color: #F0447C;
}

@media (min-width: 768px) {
  .zones {
    padding: 80px 0 100px;
  }

  .zones__glow--blue {
    left: 148px;
    top: 349px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 42, 255, 0.1) 0%, rgba(0, 42, 255, 0) 100%);
  }

  .zones__glow--cyan {
    right: auto;
    left: 1423px;
    top: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(54, 197, 240, 0.1) 0%, rgba(54, 197, 240, 0) 100%);
  }

  .zones__glow--pink {
    display: none;
  }

  .zones__head {
    gap: 8px;
    margin-bottom: 56px;
    max-width: 715px;
  }

  .zones__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .zones__title {
    font-size: 52px;
    line-height: 62px;
  }

  .zones__grid {
    display: grid;
    grid-template-columns: repeat(3, 393px);
    grid-template-rows: auto auto;
    gap: 20px 21px;
    justify-content: center;
    max-width: 1221px;
    margin-left: auto;
    margin-right: auto;
  }

  .zones__card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .zones__card:nth-child(even),
  .zones__card:nth-child(odd) {
    margin-left: 0;
    margin-right: 0;
  }

  .zones__card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .zones__card--wide {
    grid-column: 2 / 4;
    grid-row: 1;
  }

  .zones__card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .zones__card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .zones__card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }

  .zones__label {
    font-size: 24px;
    line-height: 29px;
  }

  .zones__panel {
    border-radius: 24px;
  }

  .zones__inner {
    min-height: 340px;
    padding: 0;
    border-radius: 16px;
  }

  .zones__inner::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 55.3%);
  }

  .zones__body {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 170px;
    bottom: auto;
    gap: 12px;
  }

  .zones__card--wide .zones__body {
    left: 32px;
    right: 32px;
  }

  .zones__icon-box {
    width: 56px;
    height: 56px;
  }

  .zones__icon {
    width: 31px;
    height: 31px;
  }

  .zones__name {
    font-size: 32px;
    line-height: 38px;
  }
}

/* Rental form */

.rental-form {
  padding: 48px 0 64px;
  background: #F5F5F5;
  scroll-margin-top: calc(var(--site-header-height-mobile) + 16px);
}

.rental-form__container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.rental-form__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 344px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.rental-form__kicker {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.rental-form__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
}

.rental-form__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  border: 1px solid rgba(23, 26, 36, 0.1);
  border-radius: 16px;
  background: #FFFFFF;
}

.rental-form__section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.rental-form__area {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 8px;
  background: #F7F7F7;
}

.rental-form__area-fields {
  display: grid;
  grid-template-columns: 96px 96px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  width: 100%;
}

.rental-form__status {
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
}

.rental-form__status--success {
  color: #0F5132;
  background: rgba(73, 222, 99, 0.15);
}

.rental-form__status--error {
  color: #842029;
  background: rgba(237, 28, 36, 0.1);
}

.rental-form__group {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.rental-form__legend {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(23, 26, 36, 0.8);
}

.rental-form__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.rental-form__row--2 {
  gap: 8px;
}

.rental-form__field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
}

.rental-form__input {
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  padding: 14px 12px;
  border: 1px solid rgba(23, 26, 36, 0.1);
  border-radius: 10px;
  background: rgba(23, 26, 36, 0.06);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 180%;
  color: #171A24;
}

.rental-form__input::placeholder {
  color: rgba(23, 26, 36, 0.4);
}

.rental-form__input:focus-visible {
  outline: 2px solid rgba(255, 107, 53, 0.35);
  outline-offset: 1px;
}

.rental-form__input--error {
  border-color: rgba(237, 28, 36, 0.4);
  background: rgba(237, 28, 36, 0.1);
}

.rental-form__error {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 12px;
  line-height: 180%;
  color: #ED1C24;
}

.rental-form__upload {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 140px;
  padding: 17px 10px 34px;
  border: 1px dashed rgba(43, 47, 60, 0.4);
  border-radius: 12px;
  background: #F7F7F7;
}

.rental-form__upload--error {
  border-color: rgba(237, 28, 36, 0.4);
  background: rgba(237, 28, 36, 0.1);
}

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

.rental-form__upload-label {
  max-width: 100%;
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  cursor: pointer;
}

.rental-form__upload-link {
  color: #002AFF;
  text-decoration: underline;
}

.rental-form__upload-text {
  color: rgba(43, 47, 60, 0.8);
  text-decoration: none;
}

.rental-form__upload-limit {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: rgba(43, 47, 60, 0.4);
}

.rental-form__file-name {
  margin: 8px 0 0;
  max-width: 100%;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 140%;
  text-align: center;
  color: #171A24;
  word-break: break-word;
}

.rental-form__upload .rental-form__error {
  margin-top: 8px;
  text-align: center;
}

.rental-form__consent {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  color: rgba(23, 26, 36, 0.6);
}

.rental-form__consent-links {
  color: #171A24;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rental-form__consent-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: inherit;
  text-underline-offset: inherit;
}

.rental-form__consent-link:hover {
  color: #171A24;
}

.rental-form__consent-link:focus-visible {
  outline: 2px solid rgba(255, 107, 53, 0.35);
  outline-offset: 2px;
  border-radius: 2px;
}

.rental-form__submit {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 55px;
  padding: 14px 32px 16px;
  border: 0;
  border-radius: 35px;
  background: #FF6B35;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
  cursor: pointer;
}

.rental-form__submit:focus-visible {
  outline: 2px solid rgba(255, 107, 53, 0.35);
  outline-offset: 2px;
}

.rental-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .rental-form {
    padding: 80px 0 120px;
    scroll-margin-top: calc(var(--site-header-height-desktop) + 16px);
  }

  .rental-form__container {
    gap: 32px;
  }

  .rental-form__head {
    gap: 8px;
    max-width: 846px;
  }

  .rental-form__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .rental-form__title {
    font-size: 52px;
    line-height: 62px;
  }

  .rental-form__card {
    gap: 24px;
    max-width: 1014px;
    padding: 40px 0;
    border-radius: 24px;
  }

  .rental-form__section {
    gap: 24px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .rental-form__area {
    padding: 16px 40px 24px;
  }

  .rental-form__area-fields {
    grid-template-columns: 222px 221px minmax(0, 1fr);
    gap: 16px;
  }

  .rental-form__legend {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .rental-form__row {
    gap: 16px;
  }

  .rental-form__row--2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .rental-form__input {
    min-height: 55px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
  }

  .rental-form__upload {
    min-height: 140px;
    padding: 17px 20px 36px;
  }

  .rental-form__upload-label {
    font-size: 16px;
    line-height: 140%;
  }

  .rental-form__upload-limit {
    right: 20px;
    bottom: 9px;
    font-size: 14px;
    line-height: 19px;
  }

  .rental-form__consent {
    font-size: 15px;
    line-height: 160%;
  }

  .rental-form__consent-links {
    white-space: nowrap;
  }

  .rental-form__submit {
    align-self: flex-start;
    width: auto;
    min-width: 380px;
    min-height: 60px;
    font-size: 18px;
    line-height: 25px;
  }
}

/* ==========================================================================
   About page
   ========================================================================== */

.page-about .site-header__top,
.page-about .site-header__bar {
  background-color: #FFFFFF;
  background-image: none;
}

.page-about .site-header__top {
  background: #FAFAFA;
}

.page-about .site-header__bar {
  background: #FFFFFF;
}

.page-about .header-nav__link {
  color: #171A24;
}
.page-about .header-nav--mobile .header-nav__link,
.page-shop .header-nav--mobile .header-nav__link,
.page-contacts .header-nav--mobile .header-nav__link,
.page-news .header-nav--mobile .header-nav__link,
.page-shops .header-nav--mobile .header-nav__link{
  color: var(--color-text-inverse);
}

.page-about .header-nav__link[aria-current="page"] {
  color: #FF6B35;
}

.page-about .burger__line {
  background-color: #171A24;
}

.page-about .site-header {
  position: relative;
}

.about-page {
  width: 100%;
  background: #F5F5F5;
  color: #171A24;
}

.about-page .container {
  padding-left: 8px;
  padding-right: 8px;
}

/* Hero */

.about-hero {
  display: flex;
  flex-direction: column;
  background: url("../images/about/aboutbg.svg") center center / cover no-repeat;
}

.about-hero__inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 16px;
  padding-bottom: 33px;
}

.about-hero__breadcrumbs {
  margin-bottom: 21px;
}

.about-hero__breadcrumbs .breadcrumbs__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-hero__breadcrumbs .breadcrumbs__link,
.about-hero__breadcrumbs .breadcrumbs__separator,
.about-hero__breadcrumbs .breadcrumbs__current {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.about-hero__breadcrumbs .breadcrumbs__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.about-hero__breadcrumbs .breadcrumbs__separator,
.about-hero__breadcrumbs .breadcrumbs__current {
  color: rgba(255, 255, 255, 0.2);
}

.about-hero__layout {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}

.about-hero__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero__logo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
}

.about-hero__intro {
  width: 100%;
  margin: 16px 0 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
  opacity: 0.8;
  text-shadow: 0 3px 4px rgba(0, 0, 0, 0.25);
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 8px;
  width: calc(100% + 16px);
  margin-inline: -8px;
  padding: 12px 10px 22px;
  background: #FFFFFF;
  border-radius: 16px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.about-stat__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stat__label {
  font-family: var(--font-family-numeric);
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #171A24;
  opacity: 0.4;
}

.about-stat__value-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.about-stat__icon {
  flex: none;
  width: 20px;
  height: 20px;
  display: block;
}

.about-stat__value {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #171A24;
}

.about-stat__value--sm {
  font-size: 18px;
}

.about-stat__text {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
  opacity: 0.8;
}

/* Contacts */

.about-contacts {
  padding-top: 32px;
  padding-bottom: 32px;
}

.about-section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-section-head__kicker {
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FF6B35;
}

.about-section-head__title {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
}

.about-contacts__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.about-contact-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 12px 12px 16px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.about-contact-card__note {
  font-family: var(--font-family-numeric);
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #171A24;
  opacity: 0.4;
}

.about-contact-card__title {
  margin-top: 6px;
  font-family: var(--font-family-numeric);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #171A24;
}

.about-contact-card__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.about-contact-card__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
  opacity: 0.8;
  text-decoration: none;
  word-break: break-word;
}

.about-contact-card__icon {
  flex: none;
  width: 18px;
  height: 18px;
  display: block;
}

/* Gallery */

.about-gallery {
  padding-top: 24px;
  padding-bottom: 32px;
  background: #FFFFFF;
  overflow: visible;
}

.about-gallery__head-wrap {
  padding-left: 8px;
  padding-right: 8px;
}

.about-gallery__head--desktop {
  display: none;
}

.about-gallery__head--mobile {
  margin-bottom: 16px;
}

.about-gallery__arrow-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.about-gallery__layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 8px;
  padding-right: 8px;
}

.about-gallery__slider {
  position: relative;
  width: 100%;
  overflow: visible;
}

.about-gallery__viewport {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 344 / 248;
  border: 1px solid rgba(23, 26, 36, 0.1);
  border-radius: 16px;
}

.about-gallery__track {
  display: flex;
  flex-direction: row;
  height: 100%;
  transition: transform 0.35s ease;
}

.about-gallery__slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
}

.about-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.about-gallery__nav {
  display: none;
}

.about-gallery__controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.about-gallery__dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-gallery__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(195, 195, 195, 0.4);
  cursor: pointer;
}

.about-gallery__dot--active {
  width: 8px;
  height: 8px;
  background: #FF6B35;
}

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

.about-gallery__text {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: var(--letter-spacing-tight);
  color: #171A24;
  opacity: 0.8;
}

.about-gallery__text + .about-gallery__text {
  margin-top: 0;
}

/* Entertainment */

.about-entertainment {
  padding-top: 42px;
  padding-bottom: 60px;
  color: #FFFFFF;
  background-color: #23232E;
  background-image: url("../images/razvlecheniya/BG.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-entertainment .about-section-head {
  align-items: center;
  text-align: center;
}

.about-entertainment .about-section-head__title {
  color: #FFFFFF;
}

.about-entertainment__subtitle {
  max-width: 599px;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(255, 255, 255, 0.8);
}

.about-entertainment__highlight {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.about-entertainment__highlight-media {
  position: relative;
  width: 100%;
  min-height: 165px;
  overflow: hidden;
}

.about-entertainment__highlight-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 165px;
  object-fit: cover;
}

.about-entertainment__highlight-title {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
}

.about-entertainment__highlight-text {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 180%;
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(255, 255, 255, 0.8);
}

.about-entertainment__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.about-ent-card {
  position: relative;
  display: block;
  width: 100%;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: #FFFFFF;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.about-ent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateZ(0);
  transition:
    filter var(--transition-base),
    transform var(--transition-base);
}

.about-ent-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 16px 40px rgba(0, 0, 0, 0.28);
}

.about-ent-card:hover::before {
  filter: brightness(1.12);
  transform: scale(1.03) translateZ(0);
}

.about-ent-card:active {
  transform: translateY(-2px);
}

.about-ent-card--violet::before {
  background-image:
    linear-gradient(180deg, rgba(54, 32, 82, 0.4) 0%, #362052 79.69%),
    url("../images/razvlecheniya/kino.svg");
}

.about-ent-card--blue::before {
  background-image:
    linear-gradient(180deg, rgba(41, 67, 105, 0.4) 0%, #294369 79.69%),
    url("../images/razvlecheniya/boyling.svg");
}

.about-ent-card--brown::before {
  background-image:
    linear-gradient(180deg, rgba(105, 66, 41, 0.4) 0%, #694229 79.69%),
    url("../images/razvlecheniya/labirint.svg");
}

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

.about-ent-card__shadow {
  display: none;
}

.about-ent-card__content {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.about-ent-card__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.about-ent-card__name {
  margin: 0;
  font-family: var(--font-family-numeric);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
}

.about-ent-card__desc {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
  opacity: 0.8;
}

.about-ent-card__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.about-ent-meta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.about-ent-meta__icon {
  width: 14px;
  height: 14px;
  flex: none;
  display: block;
}

.about-ent-meta__text {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
  white-space: nowrap;
}

.about-entertainment__actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 24px;
}

.about-entertainment__button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 14px 32px 16px;
  border-radius: 35px;
  background: #FF6B35;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: var(--letter-spacing-tight);
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color var(--transition-base);
}

.about-entertainment__button:hover {
  background: var(--color-primary-hover);
}

.about-entertainment__button:active {
  background: var(--color-primary-focus);
}

.about-entertainment__button:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .about-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-hero__inner {
    padding-bottom: 99px;
  }

  .about-hero__breadcrumbs {
    margin-bottom: 16px;
  }

  .about-hero__breadcrumbs .breadcrumbs__list {
    gap: 10px;
  }

  .about-hero__breadcrumbs .breadcrumbs__link,
  .about-hero__breadcrumbs .breadcrumbs__separator,
  .about-hero__breadcrumbs .breadcrumbs__current {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
  }

  .about-hero__logo {
    width: min(100%, 420px);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
  }

  .about-hero__intro {
    font-size: 16px;
  }

  .about-hero__stats {
    width: auto;
    margin-inline: 0;
    padding: 24px 32px;
    border-radius: 24px;
    row-gap: 56px;
    column-gap: 20px;
  }

  .about-stat {
    gap: 12px;
  }

  .about-stat__label {
    font-size: 16px;
  }

  .about-stat__icon {
    width: 32px;
    height: 32px;
  }

  .about-stat__value-row {
    gap: 12px;
  }

  .about-stat__value {
    font-size: 28px;
  }

  .about-stat__value--sm {
    font-size: 24px;
  }

  .about-stat__text {
    font-size: 17px;
    line-height: 23px;
  }

  .about-contacts {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-section-head__kicker {
    font-size: 18px;
    line-height: 22px;
  }

  .about-section-head__title {
    font-size: 52px;
    line-height: 62px;
  }

  .about-contacts__grid {
    flex-direction: row;
    gap: 20px;
    margin-top: 24px;
  }

  .about-contact-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 210px;
    padding: 18px 24px 24px;
    border-radius: 24px;
  }

  .about-contact-card__note {
    font-size: 16px;
  }

  .about-contact-card__title {
    font-size: 26px;
  }

  .about-contact-card__links {
    margin-top: auto;
    padding-top: 20px;
  }

  .about-contact-card__link {
    font-size: 18px;
    line-height: 25px;
  }

  .about-contact-card__icon {
    width: 20px;
    height: 20px;
  }

  .about-gallery__head-wrap {
    display: none;
  }

  .about-gallery {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-gallery__head--mobile {
    display: none;
  }

  .about-gallery__head--desktop {
    display: flex;
  }

  .about-gallery__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
    padding-left: clamp(16px, 2.08vw, 40px);
    padding-right: clamp(16px, 2.08vw, 40px);
    box-sizing: border-box;
  }

  .about-gallery__slider {
    flex: 0 0 auto;
    width: clamp(360px, 47.4vw, 910px);
    max-width: 910px;
  }

  .about-gallery__viewport {
    width: 100%;
    height: clamp(360px, 29.17vw, 560px);
    max-height: 560px;
    aspect-ratio: auto;
    border: 0;
    border-radius: 24px;
  }

  .about-gallery__controls {
    display: none;
  }

  .about-gallery__nav {
    display: block;
  }

  .about-gallery__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-sizing: border-box;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(23, 26, 36, 0.1);
    border-radius: 12px;
    background: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .about-gallery__nav-btn--prev {
    left: 2.64%;
    right: auto;
  }

  .about-gallery__nav-btn--next {
    right: 2.64%;
    left: auto;
  }

  .about-gallery__content {
    flex: 1 1 0;
    min-width: 0;
    max-width: 580px;
    gap: 16px;
    padding-top: 24px;
  }

  .about-gallery__head--desktop.about-section-head {
    gap: 8px;
  }

  .about-gallery__text {
    font-size: 18px;
    line-height: 180%;
  }

  .about-gallery__text--details {
    display: block;
  }

  .about-entertainment {
    padding-top: 81px;
    padding-bottom: 80px;
  }

  .about-entertainment__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 25px;
  }

  .about-entertainment__highlight {
    flex-direction: row;
    align-items: stretch;
    margin-top: 40px;
    padding: 0;
    min-height: 480px;
    border-radius: 24px;
    overflow: hidden;
  }

  .about-entertainment__highlight-body {
    order: 1;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 40px;
  }

  .about-entertainment__highlight-title {
    font-size: 42px;
    line-height: 50px;
  }

  .about-entertainment__highlight-text {
    font-size: 18px;
    line-height: 180%;
  }

  .about-entertainment__highlight-media {
    order: 2;
    flex: none;
    width: 50%;
    min-height: 480px;
  }

  .about-entertainment__highlight-image {
    min-height: 480px;
  }

  .about-entertainment__grid {
    flex-direction: row;
    gap: 22px;
    margin-top: 40px;
  }

  .about-ent-card {
    flex: 1 1 0;
    min-width: 0;
    height: 360px;
    border-radius: 24px;
  }

  .about-ent-card__content {
    left: 24px;
    right: 24px;
    bottom: auto;
    top: 0;
    height: 100%;
    gap: 0;
  }

  .about-ent-card__text {
    position: absolute;
    top: 124px;
    left: 0;
    right: 0;
    gap: 0;
  }

  .about-ent-card__name {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }

  .about-ent-card__desc {
    display: none;
  }

  .about-ent-card__meta {
    position: absolute;
    top: 234px;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    width: auto;
  }

  .about-ent-card--violet::before,
  .about-ent-card--blue::before,
  .about-ent-card--brown::before {
    background-image:
      linear-gradient(180deg, rgba(41, 67, 105, 0.4) 0%, #294369 100%),
      var(--about-ent-card-bg);
  }

  .about-ent-card--violet {
    --about-ent-card-bg: url("../images/razvlecheniya/kino.svg");
  }

  .about-ent-card--blue {
    --about-ent-card-bg: url("../images/razvlecheniya/boyling.svg");
  }

  .about-ent-card--brown {
    --about-ent-card-bg: url("../images/razvlecheniya/labirint.svg");
  }

  .about-ent-meta {
    gap: 6px;
  }

  .about-ent-meta__icon {
    width: 18px;
    height: 18px;
  }

  .about-ent-meta__text {
    font-size: 15px;
    line-height: 20px;
  }

  .about-entertainment__actions {
    margin-top: 56px;
  }

  .about-entertainment__button {
    min-width: 220px;
    padding: 14px 0 16px;
    font-size: 18px;
    line-height: 25px;
  }
}

@media (min-width: 1200px) {
  .about-hero__breadcrumbs {
    margin-bottom: 96px;
  }

  .about-hero__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .about-hero__lead {
    align-items: flex-start;
    flex: 1 1 0;
    min-width: 0;
    max-width: 580px;
  }

  .about-hero__logo {
    width: min(100%, 580px);
  }

  .about-hero__intro {
    margin-top: 20px;
    font-size: 18px;
    line-height: 180%;
  }

  .about-hero__stats {
    flex: none;
    width: min(100%, 600px);
    margin-top: 0;
    row-gap: 56px;
    column-gap: 20px;
  }
}
.site-search {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: none;
    pointer-events: none;
    font-family: inherit;
}
.site-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(40px);
}
.site-search__bar {
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
    width: min(500px, 90vw);
    height: 57px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 16px rgba(0, 0, 0, .25);
}
.site-search__results {
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(160px );
    width: min(500px, 90vw);
    background: rgba(40, 42, 49, 0.6);
    color: #fff;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 20px 24px 0;
    max-height: min(60vh, 580px);
    overflow: auto;
    display: none;
    scrollbar-color: rgba(103, 107, 120, 0.4) transparent;
}
.site-search__icon, .site-search__icon svg {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    pointer-events: none;
    border: none;
    outline: none;
}
.site-search__input {
    flex: 1 1 auto;
    border: 0;
    outline: 0;
    background: transparent;
    color: rgba(37, 37, 37, 1);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}
.site-search__clear, .site-search__clear svg {
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
}
.site-search.is-open {
    display: block;
    pointer-events: auto;
}
.site-search__results.is-visible {
    display: block;
}
.site-search__status {
    text-align: center;
    padding: 0px 0px 12px;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 400;
}
.site-search__item {
    display: flex;
    padding: 0px 12px;
    height: 35px;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    margin-bottom: 6px;
    transition: all 0.2s;
    text-decoration: none;
}
.site-search__snippet {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.site-search__empty {
    padding: 4px 0px 25px;
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
}
.site-search__empty .empty__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin: 0 auto 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty__icon svg {
    width: 24px;
    height: 24px;
}
.cookie-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35,35,46,0.1);
    backdrop-filter: blur(8px);
    z-index: 999;
}
.cookie-consent {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 1000;
    width: calc(100% - 40px);
    margin: 0 auto;
    justify-content: center;
    pointer-events: none;
}
.cookie-consent__inner {
    box-shadow: inset 0px 20px 40px 0px rgba(0, 0, 0, 0);
    pointer-events: auto;
    width: 100%;
    padding: 16px 32px 24px;
    border-radius: 24px;
    background: rgba(35,35,46,0.9);
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
}
.cookie-consent__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cookie-consent__links {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}
.cookie-consent__title {
    margin: 0;
    font-weight: 700;
    font-size: clamp(24px, 16px + 1.2vw, 32px);
    line-height: 1.3;
    color: #fff;
}
.cookie-consent__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
.cookie-consent__btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 32px 16px;
    border-radius: 35px;
    background: #FF6B35;
    font-family: var(--font-family-base);
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: var(--letter-spacing-tight);
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color var(--transition-base);
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.cookie-consent__link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    transition: 0.2s;
}
.mobile {
    display: none;
}
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 20px;
        width: calc(100% - 16px);
    }
    .cookie-consent__inner {
        padding: 15px 15px 30px;
        gap: 20px;
    }
    .cookie-consent__content {
        margin-bottom: 4px;
    }
    .cookie-consent__actions {
        gap: 8px;
    }
    .cookie-consent__title {
        font-size: 24px;
        line-height: 1.15;
    }
    .cookie-consent__desc {
        font-size: 14px;
        line-height: 1.4;
    }
    .cookie-consent__btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    .cookie-consent__links {
        font-size: 12px;
    }
        .mobile {
        display: block;
    }
}