@charset "UTF-8";
/* ===================================
   MAIN STYLES
   =================================== */
:root {
  --back: #f4f4f4;
  --white-white: #fff;
  --white-opacity-20: rgba(255, 255, 255, 0.2);
  --white-opacity-30: rgba(255, 255, 255, 0.3);
  --text-primary: #211f20;
  --text-secondary: #707173;
  --accent-primary: #e92bb3;
  --accent-noactive: #fcdeed;
  --accent-dark: #c71394;
  --bg-light: #f8f9fa;
  --primary: #d946ef;
  --border-light: #e5e5e5;
}

/* ===================================
   SMOOTH SCROLLING
   =================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Учитываем высоту хедера */
}

/* Улучшенный плавный скролл для всех браузеров */
* {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* Webkit scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

/* Дополнительная оптимизация для плавности */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ===================================
   GLOBAL FOCUS MANAGEMENT
   =================================== */
/* Remove focus outline for mouse users, keep for keyboard users */
*:focus:not(:focus-visible) {
  outline: none !important;
}

/* Prevent focus on non-interactive elements */
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
p:focus,
span:focus,
div:not([role]):not([tabindex]):not([contenteditable]):focus,
img:focus,
svg:focus {
  outline: none !important;
}

/* Specific fixes for problematic elements */
.header__logo-link:focus:not(:focus-visible) {
  outline: none !important;
}

/* Fix for select and option elements */
select:focus:not(:focus-visible),
option:focus:not(:focus-visible) {
  outline: none !important;
}

/* Fix for dropdown items */
.header__dropdown-link:focus:not(:focus-visible) {
  outline: none !important;
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a {
  color: black;
}

a, a:link, a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
body {
  /* Отключаем альтернативные наборы, чтобы избежать искажений текста */
  font-feature-settings: normal;
  background-color: #F3F3F3;
  color: #FFFFFF;
  /* Убираем искусственный отступ, чтобы хедер был поверх фона */
  padding-top: 0;
  /* Оптимизация для плавного скролла */
  overflow-x: hidden;
  scroll-behavior: smooth;
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* ===================================
   MANROPE FONT FACES
   =================================== */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web-font/Manrope-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web-font/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web-font/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web-font/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web-font/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web-font/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web-font/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* ===================================
   MARCELLUS FONT FACES
   =================================== */
@font-face {
  font-family: "Marcellus";
  src: url("../fonts/marcellus/web-font/Marcellus-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ===================================
   TEXT STYLES
   =================================== */
.text-brand {
  font-family: "Manrope", "Arial", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.text-nav {
  font-family: "Manrope", "Arial", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.17;
  text-transform: uppercase;
}

.text-nav-number {
  font-family: "Manrope", "Arial", sans-serif;
  font-weight: 400;
  font-size: 8px;
  line-height: 1.25;
}

.text-hero {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-large {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
}

.text-caption {
  font-family: "Manrope", "Arial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.text-button {
  font-family: "Manrope", "Arial", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  text-transform: uppercase;
}

/* ===================================
   MOBILE TYPOGRAPHY ADAPTATIONS
   =================================== */
@media (max-width: 768px) {
  .text-brand {
    font-size: 20px;
  }
  .text-hero {
    font-size: 48px;
    line-height: 1.1;
  }
  .text-large {
    font-size: 16px;
    line-height: 1.2;
  }
  .text-caption {
    font-size: 14px;
    line-height: 1.3;
  }
  .text-nav {
    font-size: 11px;
  }
  .text-button {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .text-brand {
    font-size: 18px;
  }
  .text-hero {
    font-size: 36px;
    line-height: 1.1;
  }
  .text-large {
    font-size: 14px;
  }
  .text-caption {
    font-size: 13px;
  }
  .text-nav {
    font-size: 10px;
  }
  .text-button {
    font-size: 10px;
  }
}
/* ===================================
   BASE COMPONENTS
   =================================== */
/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

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

/* Button Reset */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* Link Reset */
a {
  text-decoration: none;
  color: inherit;
}

/* List Reset */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Image Reset */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Modal (generic) */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 2000;
}
.modal[data-open=true] {
  display: flex;
}
.modal__dialog {
  background: var(--white-white);
  border-radius: 10px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.03);
  max-width: 980px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 12px;
  position: relative;
}
.modal__media {
  border-radius: 6px;
  overflow: hidden;
}
.modal__body {
  padding: 16px 16px 16px 0;
}
.modal__title {
  font-family: "Marcellus", serif;
  font-size: 28px;
  margin: 8px 0;
  color: #211f20;
}
.modal__role {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 35px;
}
.modal__text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.366;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white-white);
  color: var(--accent-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .modal {
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
  }
  .modal__dialog {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 335px;
    min-height: 500px;
    max-height: none;
    height: auto;
    gap: 0;
    padding: 14px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 31px 0px rgba(0, 0, 0, 0.03);
    margin: 0 auto;
    position: relative;
    overflow-y: auto;
  }
  .modal__media {
    width: 307px;
    height: 318px;
    margin: 0 auto 20px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
  }
  .modal__body {
    padding: 0;
    text-align: left;
  }
  .modal__title {
    font-size: 28px;
    line-height: 1.254;
    margin: 0 0 5px 0;
    color: #211f20;
  }
  .modal__role {
    font-size: 16px;
    line-height: 1.2;
    color: #707173;
    margin-bottom: 20px;
  }
  .modal__text {
    font-size: 14px;
    line-height: 1.366;
    color: #707173;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) transparent;
  }
  .modal__text::-webkit-scrollbar {
    width: 4px;
  }
  .modal__text::-webkit-scrollbar-track {
    background: transparent;
  }
  .modal__text::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 2px;
  }
  .modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    color: #e92bb3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}

/* ===================================
   PAGE DECORATIONS
   =================================== */
.page-decoration {
  position: absolute;
  top: calc(100vh + 207px);
  left: 0;
  width: 904px;
  height: 2595px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 992px) {
  .page-decoration {
    display: none;
  }
}
.page-decoration__vector {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
}
@media (max-width: 1200px) {
  .page-decoration__vector {
    max-width: 350px;
  }
}
.page-decoration__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 904px;
  height: 2595px;
}
.page-decoration__curve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  -webkit-clip-path: path("M619.577 432.571L623.305 431.118L619.577 432.571ZM655.085 1473.3L658.763 1471.73L655.085 1473.3ZM866.583 2595L896.592 2582.09L883.683 2552.08L853.675 2564.99L866.583 2595ZM0.441015 3.97652L1.90777e-05 7.95302C87.3891 17.6445 214.006 53.7287 332.502 122.71C450.985 191.683 561.017 293.345 615.849 434.024L619.577 432.571L623.305 431.118C567.613 288.234 456.013 185.351 336.527 115.794C217.054 46.2446 89.3649 9.81281 0.882011 2.027e-05L0.441015 3.97652ZM619.577 432.571L615.849 434.024C684.763 610.829 636.51 734.959 599.099 883.656C580.405 957.956 564.514 1038.21 567.814 1133.72C571.114 1229.24 593.599 1339.82 651.407 1474.87L655.085 1473.3L658.763 1471.73C601.296 1337.47 579.073 1227.86 575.811 1133.45C572.549 1039.03 588.242 959.603 606.859 885.608C644.068 737.715 693.336 610.79 623.305 431.118L619.577 432.571ZM655.085 1473.3L651.407 1474.87C743.543 1690.13 817.679 1916.72 859.178 2113.5C879.929 2211.9 892.503 2302.76 895.11 2380.99C897.72 2459.28 890.333 2524.59 871.417 2572.06L875.133 2573.54L878.85 2575.02C898.359 2526.06 905.733 2459.48 903.108 2380.72C900.48 2301.89 887.821 2210.55 867.008 2111.85C825.381 1914.46 751.067 1687.37 658.763 1471.73L655.085 1473.3Z");
          clip-path: path("M619.577 432.571L623.305 431.118L619.577 432.571ZM655.085 1473.3L658.763 1471.73L655.085 1473.3ZM866.583 2595L896.592 2582.09L883.683 2552.08L853.675 2564.99L866.583 2595ZM0.441015 3.97652L1.90777e-05 7.95302C87.3891 17.6445 214.006 53.7287 332.502 122.71C450.985 191.683 561.017 293.345 615.849 434.024L619.577 432.571L623.305 431.118C567.613 288.234 456.013 185.351 336.527 115.794C217.054 46.2446 89.3649 9.81281 0.882011 2.027e-05L0.441015 3.97652ZM619.577 432.571L615.849 434.024C684.763 610.829 636.51 734.959 599.099 883.656C580.405 957.956 564.514 1038.21 567.814 1133.72C571.114 1229.24 593.599 1339.82 651.407 1474.87L655.085 1473.3L658.763 1471.73C601.296 1337.47 579.073 1227.86 575.811 1133.45C572.549 1039.03 588.242 959.603 606.859 885.608C644.068 737.715 693.336 610.79 623.305 431.118L619.577 432.571ZM655.085 1473.3L651.407 1474.87C743.543 1690.13 817.679 1916.72 859.178 2113.5C879.929 2211.9 892.503 2302.76 895.11 2380.99C897.72 2459.28 890.333 2524.59 871.417 2572.06L875.133 2573.54L878.85 2575.02C898.359 2526.06 905.733 2459.48 903.108 2380.72C900.48 2301.89 887.821 2210.55 867.008 2111.85C825.381 1914.46 751.067 1687.37 658.763 1471.73L655.085 1473.3Z");
  background-color: var(--accent-primary);
  border: 3px solid var(--accent-primary);
}
.page-decoration__svg-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 904px;
  height: 2595px;
  opacity: 1;
}
.page-decoration__svg-curve svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  padding-top: 20px;
}
.page-decoration__svg-curve svg .curve-fill {
  fill: var(--accent-primary);
  stroke: none;
}
.page-decoration__svg-curve svg .curve-follower {
  fill: var(--accent-primary);
  opacity: 0;
  transition: opacity 0.1s ease-out;
}
@media (max-width: 1200px) {
  .page-decoration__svg-curve {
    max-width: 350px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .page-decoration__svg-curve {
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .page-decoration__svg-curve {
    max-width: 180px;
  }
}

/* Обеспечиваем правильное наложение main поверх декоративного элемента */
.main {
  position: relative;
  z-index: 2;
}

.page-decoration--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}
.page-decoration--absolute__vector {
  position: absolute;
  right: 0;
  top: calc(100vh + 207px);
  width: auto;
  height: auto;
  max-width: 450px;
  opacity: 0.8;
  transform: translateX(20%);
}

/* ===================================
   MOBILE APP MODAL
   =================================== */
.mobile-app-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.mobile-app-modal--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-app-modal--active .mobile-app-modal__overlay {
  opacity: 1;
}
.mobile-app-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}
.mobile-app-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white-white);
  border-radius: 20px;
  padding: 50px;
  width: 382px;
  max-width: calc(100vw - 40px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .mobile-app-modal__content {
    padding: 30px;
    width: calc(100vw - 40px);
  }
}
.mobile-app-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--accent-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-app-modal__close img {
  width: 100%;
  height: 100%;
  display: block;
}
.mobile-app-modal__body {
  text-align: center;
}
.mobile-app-modal__title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.366;
  color: var(--text-primary);
  margin: 0 0 30px;
  text-align: center;
}
.mobile-app-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.mobile-app-modal__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid var(--accent-primary);
  border-radius: 38px;
  background: transparent;
  color: var(--accent-primary);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.366;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  min-height: 38px;
}
.mobile-app-modal__button:hover {
  background: var(--accent-primary);
  color: var(--white-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 43, 179, 0.3);
}
.mobile-app-modal__button:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}
.mobile-app-modal__button:active {
  transform: translateY(0);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.mobile-app-modal--active .mobile-app-modal__content {
  animation: modalFadeIn 0.3s ease;
}

body.modal-open {
  overflow: hidden;
}

@media (prefers-contrast: high) {
  .mobile-app-modal__content {
    border: 2px solid var(--text-primary);
  }
  .mobile-app-modal__button {
    border-width: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-app-modal {
    transition: none;
  }
  .mobile-app-modal__overlay {
    transition: none;
  }
  .mobile-app-modal__content {
    animation: none;
  }
  .mobile-app-modal__button {
    transition: none;
  }
}
/* ===================================
   SCHEDULE MODAL COMPONENT
   =================================== */
.schedule-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.schedule-modal--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.schedule-modal--active .schedule-modal__overlay {
  opacity: 1;
}
.schedule-modal--active .schedule-modal__content {
  opacity: 1;
}
.schedule-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.schedule-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--white-white);
  border-radius: 16px;
  padding: 30px;
  width: 90vw;
  max-width: 1200px;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .schedule-modal__content {
    width: 95vw;
    padding: 20px;
    max-height: 95vh;
  }
}
.schedule-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--accent-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.schedule-modal__close:hover {
  background: var(--white-white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.schedule-modal__close:active {
  transform: scale(0.95);
}
.schedule-modal__close img {
  width: 24px;
  height: 24px;
  display: block;
}
@media (max-width: 768px) {
  .schedule-modal__close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
  .schedule-modal__close img {
    width: 20px;
    height: 20px;
  }
}
.schedule-modal__header {
  margin-bottom: 25px;
  text-align: center;
}
.schedule-modal__header--no-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .schedule-modal__header {
    margin-bottom: 20px;
  }
  .schedule-modal__header--no-title {
    margin-bottom: 0;
  }
}
.schedule-modal__title {
  font-family: "Marcellus", serif;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}
@media (max-width: 768px) {
  .schedule-modal__title {
    font-size: 24px;
  }
}
.schedule-modal__body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-modal__image-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-modal__image {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease;
}
.schedule-modal__image:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .schedule-modal__image {
    border-radius: 8px;
  }
}

body.schedule-modal-open {
  overflow: hidden;
}

@media (prefers-contrast: high) {
  .schedule-modal__content {
    border: 2px solid var(--text-primary);
  }
  .schedule-modal__close {
    border: 2px solid var(--accent-primary);
  }
}
@media (prefers-reduced-motion: reduce) {
  .schedule-modal {
    transition: none;
  }
  .schedule-modal__overlay {
    transition: none;
  }
  .schedule-modal__content {
    transition: none;
    transform: translate(-50%, -50%);
  }
  .schedule-modal__close {
    transition: none;
  }
  .schedule-modal__close:hover {
    transform: none;
  }
  .schedule-modal__image {
    transition: none;
  }
  .schedule-modal__image:hover {
    transform: none;
  }
}
/* ===================================
   HEADER COMPONENT
   =================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Прозрачный фон поверх героя */
  background: transparent;
  z-index: 1000;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
}
.header__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1240px) {
  .header__container {
    width: calc(100% - 80px);
    margin: 0 40px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .header__container {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-link {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.254;
  color: var(--white-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__logo-link:hover, .header__logo-link:focus {
  opacity: 0.8;
}
.header__logo-link:focus {
  outline: 2px solid var(--white-white);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .header__logo-link {
    font-size: 20px;
  }
}
.header__mobile-menu-btn {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .header__mobile-menu-btn {
    display: flex;
    margin-left: auto;
  }
}
.header__mobile-menu-btn:focus {
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}
.header__mobile-menu-btn.active .header__mobile-menu-dot {
  background-color: var(--accent-primary);
}
.header__mobile-menu-btn.active .header__mobile-menu-dot--top-right, .header__mobile-menu-btn.active .header__mobile-menu-dot--bottom-left {
  width: 8px;
  height: 8px;
}
.header__mobile-menu-dot {
  position: absolute;
  background-color: var(--text-primary);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.header__mobile-menu-dot--top-left {
  top: 11.4px;
  left: 11.4px;
  width: 9.6px;
  height: 9.6px;
}
.header__mobile-menu-dot--top-right {
  top: 8.2px;
  right: 8.2px;
  width: 12.8px;
  height: 12.8px;
}
.header__mobile-menu-dot--bottom-left {
  bottom: 8.2px;
  left: 8.2px;
  width: 12.8px;
  height: 12.8px;
}
.header__mobile-menu-dot--bottom-right {
  bottom: 11.4px;
  right: 11.4px;
  width: 9.6px;
  height: 9.6px;
}
.header--dark .header__mobile-menu-dot {
  background-color: var(--text-primary);
}
.header__nav-section {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .header__nav-section {
    display: none;
  }
}
.header__nav {
  display: flex;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .header__nav-list {
    gap: 30px;
  }
}
.header__nav-item {
  position: relative;
}
.header__nav-item--dropdown .header__nav-link[aria-expanded=true] + .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px); /* сверху вниз */
  pointer-events: auto;
}
.header__nav-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px); /* сверху вниз */
  pointer-events: auto;
}
.header__nav-link {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.366;
  text-transform: uppercase;
  color: var(--white-white);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: opacity 0.3s ease;
}
.header__nav-link:hover, .header__nav-link:focus {
  opacity: 0.8;
}
.header__nav-link:focus {
  outline: 2px solid var(--white-white);
  outline-offset: 2px;
}
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-top: 8px;
  z-index: 10;
  background: var(--white-white); /* полностью белое */
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  /* верхняя стрелочка */
}
.header__dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white-white);
  box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.02);
}
.header__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 62px;
  margin: 0;
  padding: 11px;
}
.header__dropdown-item {
  position: relative;
}
.header__dropdown-item:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px; /* розовый разделитель */
  background: var(--accent-primary);
}
.header__dropdown .header__nav-item {
  position: relative;
  text-align: center;
}
.header__dropdown .header__nav-item a {
  text-align: center;
  color: var(--text-primary) !important;
}
.header__dropdown .header__nav-item:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px; /* розовый разделитель */
  background: var(--accent-primary);
}
.header__dropdown-link {
  display: block;
  color: var(--text-primary);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.header__dropdown-link:hover, .header__dropdown-link:focus {
  opacity: 0.9;
}
.header__dropdown-link:focus {
  outline: 2px solid var(--white-white);
  outline-offset: 2px;
}
.header__button {
  flex-shrink: 0;
}
.header__registration-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-opacity-20);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 8px 24px; /* больше внутреннего отступа */
  width: 146px;
  height: 35px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.header__registration-btn:focus {
  outline: 2px solid var(--white-white);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .header__registration-btn {
    width: 120px;
    padding: 6px 16px;
    height: 32px;
  }
}
.header__registration-btn:hover .header__registration-arrow--right {
  transform: translateX(20px);
  opacity: 0;
}
.header__registration-btn:hover .header__registration-arrow--left {
  transform: translateX(0);
  opacity: 1;
}
.header__registration-btn:hover .header__registration-text {
  transform: translateX(18px);
}
.header__registration-text {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.366;
  color: var(--white-white);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .header__registration-text {
    font-size: 12px;
  }
}
.header__registration-arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: var(--white-white);
  transition: all 0.3s ease;
}
.header__registration-arrow svg {
  width: 100%;
  height: 100%;
}
.header__registration-arrow--right {
  right: 22px; /* чуть дальше от текста */
  transform: translateX(0);
  opacity: 1;
}
@media (max-width: 768px) {
  .header__registration-arrow--right {
    right: 16px;
  }
}
.header__registration-arrow--left {
  left: 22px;
  transform: translateX(-24px);
  opacity: 0;
}
@media (max-width: 768px) {
  .header__registration-arrow--left {
    left: 16px;
  }
}

/* Dark variant for light pages */
.header--dark {
  background: transparent;
  position: relative;
}
.header--dark .header__logo-link,
.header--dark .header__nav-link {
  color: var(--text-primary);
}
.header--dark .header__logo-link:focus,
.header--dark .header__nav-link:focus {
  outline-color: var(--text-primary);
}
.header--dark .header__registration-btn {
  background: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}
.header--dark .header__registration-text {
  color: var(--white-white);
}
.header--dark .header__registration-arrow {
  color: var(--white-white);
}
.header--dark .header__registration-btn:hover,
.header--dark .header__registration-btn:focus {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}
.header--dark .header__registration-btn:hover .header__registration-text,
.header--dark .header__registration-btn:focus .header__registration-text {
  color: var(--white-white);
}
.header--dark .header__registration-btn:hover .header__registration-arrow,
.header--dark .header__registration-btn:focus .header__registration-arrow {
  color: var(--white-white);
}

@media (prefers-contrast: high) {
  .header__logo-link, .header__nav-link, .header__dropdown-link, .header__registration-text, .header__registration-arrow {
    color: #ffffff;
  }
  .header__dropdown {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #ffffff;
  }
  .header__registration-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #ffffff;
  }
}
/* ===================================
   MOBILE MENU STYLES
   =================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active .mobile-menu__content {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  height: 68px;
}
.mobile-menu__logo {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.254;
  color: var(--text-primary);
  text-decoration: none;
}
.mobile-menu__close {
  position: relative;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.mobile-menu__close:focus {
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}
.mobile-menu__close-dot {
  position: absolute;
  background-color: var(--accent-primary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}
.mobile-menu__close-dot--top-left {
  top: 13px;
  left: 13px;
}
.mobile-menu__close-dot--top-right {
  top: 13px;
  right: 13px;
}
.mobile-menu__close-dot--bottom-left {
  bottom: 13px;
  left: 13px;
}
.mobile-menu__close-dot--bottom-right {
  bottom: 13px;
  right: 13px;
}
.mobile-menu__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.mobile-menu__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.mobile-menu.active .mobile-menu__nav-list {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__nav-link, .mobile-menu li a {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.366;
  text-transform: uppercase;
  color: #707173;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu__nav-link:hover, .mobile-menu__nav-link:focus, .mobile-menu li a:hover, .mobile-menu li a:focus {
  color: var(--accent-primary);
}
.mobile-menu__nav-link:focus, .mobile-menu li a:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
}
.mobile-menu__button {
  text-align: center;
  padding: 0 34px 50px;
  margin-top: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.mobile-menu.active .mobile-menu__button {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__registration-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 307px;
  height: 50px;
  background: var(--accent-primary);
  color: var(--white-white);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.366;
  text-decoration: none;
  border-radius: 5px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: background-color 0.3s ease;
}
.mobile-menu__registration-btn:hover, .mobile-menu__registration-btn:focus {
  background: var(--accent-dark);
}
.mobile-menu__registration-btn:focus {
  outline: 2px solid var(--white-white);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .header__logo-link, .header__nav-link, .header__dropdown, .header__dropdown-link, .header__registration-btn, .header__registration-text, .header__registration-arrow {
    transition: none;
  }
  .mobile-menu__content, .mobile-menu__nav-list, .mobile-menu__button, .mobile-menu__close-dot, .mobile-menu__mobile-menu-dot {
    transition: none;
  }
}
.footer__nav.page_item a {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.footer__nav.page_item a:hover, .footer__nav.page_item a:focus {
  opacity: 0.6;
}

.footer {
  background: var(--white-white);
  color: var(--text-primary);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.04);
}
.footer__container {
  padding: 32px 120px 24px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand {
  font-family: "Marcellus", serif;
  font-size: 24px;
  line-height: 1.254;
}
@media (max-width: 900px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}
.footer__nav-list .menu-item a {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.footer__nav-list .menu-item a:hover, .footer__nav-list .menu-item a:focus {
  opacity: 0.6;
}
.footer__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid var(--accent-primary);
  background: transparent;
  color: var(--accent-primary);
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.footer__app-btn:hover, .footer__app-btn:focus {
  background: #e92bb3;
  color: var(--white-white);
}
.footer .header__registration-btn {
  background: var(--accent-primary);
  border: 1px solid transparent;
}
.footer .footer__registration-btn .header__registration-text {
  color: var(--white-white);
}
.footer .footer__registration-btn .header__registration-arrow {
  color: var(--white-white);
}
.footer__divider {
  margin: 24px 0;
  height: 1px;
  background: var(--border-light);
  border: 0;
}
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
}
.footer__legal {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--text-secondary);
}
.footer__address {
  margin: 0;
  font-style: normal;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--text-secondary);
}
.footer__social {
  justify-self: end;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.footer__social-link {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer__social-link:hover, .footer__social-link:focus {
  opacity: 0.6;
}
@media (max-width: 1240px) {
  .footer__container {
    padding: 24px 40px;
  }
}
@media (max-width: 768px) {
  .footer {
    background-color: #ffffff;
    border-radius: 30px 30px 0 0;
  }
  .footer__container {
    padding: 20px 20px 30px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer__brand {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.254;
    color: #211f20;
    text-align: center;
  }
  .footer__nav {
    width: 100%;
    display: block;
  }
  .footer__nav-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer__nav-link {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.366;
    text-transform: uppercase;
    color: #211f20;
    text-decoration: none;
  }
  .footer__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
  }
  .footer__app-btn {
    background: transparent;
    border: 1px solid #e92bb3;
    color: #e92bb3;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.366;
    padding: 8px 20px;
    border-radius: 38px;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    cursor: pointer;
  }
  .footer__registration-btn {
    background: #e92bb3;
    color: #ffffff;
    width: 146px;
    height: 35px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.366;
  }
  .footer__divider {
    width: 100%;
    height: 1px;
    background-color: #f4f4f4;
    border: none;
    margin: 0 0 40px 0;
  }
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    grid-template-columns: none;
  }
  .footer__legal {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.254;
    color: #211f20;
    margin: 0;
  }
  .footer__address {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.366;
    color: #707173;
    margin: 0;
    font-style: normal;
    text-align: center;
  }
  .footer__social {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-self: center;
  }
  .footer__social-link {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.366;
    text-transform: uppercase;
    color: #211f20;
    text-decoration: none;
  }
}

@media (prefers-contrast: high) {
  .footer__app-btn {
    border-color: #fff;
    color: #000;
    background: #fff;
  }
  .footer .footer__registration-btn {
    border-color: #000;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer * {
    transition: none !important;
  }
}
/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--white-white);
  overflow: hidden;
  padding-bottom: 120px;
  /* Slider */
  /* Pagination */
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero__slider.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}
.hero__slider .swiper-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
}
.hero__slider .swiper-slide {
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.hero__slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  filter: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}
.hero__title {
  font-family: "Marcellus", serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
  }
}
.hero__description {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .hero__description {
    font-size: 16px;
  }
}
.hero__cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white-white);
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px 72px 16px 28px;
  border-radius: 40px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero__cta-btn:hover, .hero__cta-btn:focus {
  background: #f4f4f4;
}
.hero__cta-btn:focus {
  outline: 2px solid var(--white-white);
  outline-offset: 2px;
}
.hero__cta-text {
  position: relative;
  z-index: 1;
}
.hero__cta-label {
  position: relative;
  height: 24px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}
.hero__cta-text {
  display: block;
  line-height: 24px;
  transition: transform 0.35s ease;
}
.hero__cta-text--current {
  transform: translateY(0);
}
.hero__cta-text--next {
  position: absolute;
  left: 0;
  transform: translateY(100%);
}
.hero__cta-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--text-primary);
}
.hero__cta-fill {
  position: absolute;
  inset: 0;
  background: var(--accent-primary);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.35s ease;
  border-radius: 50%;
}
.hero__cta-svg {
  position: absolute;
  top: 10px;
  width: 20px;
  height: 20px;
  color: var(--white-white);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.hero__cta-svg--right {
  left: 10px;
  transform: translateX(0);
  opacity: 1;
}
.hero__cta-svg--left {
  left: 10px;
  transform: translateX(-24px);
  opacity: 0;
}
.hero__cta-btn:hover .hero__cta-svg--right, .hero__cta-btn:focus .hero__cta-svg--right {
  transform: translateX(24px);
  opacity: 0;
}
.hero__cta-btn:hover .hero__cta-fill, .hero__cta-btn:focus .hero__cta-fill {
  transform: scaleX(1);
}
.hero__cta-btn:hover .hero__cta-svg--left, .hero__cta-btn:focus .hero__cta-svg--left {
  transform: translateX(0);
  opacity: 1;
}
.hero__cta-btn:hover .hero__cta-text--current, .hero__cta-btn:focus .hero__cta-text--current {
  transform: translateY(-100%);
}
.hero__cta-btn:hover .hero__cta-text--next, .hero__cta-btn:focus .hero__cta-text--next {
  transform: translateY(0);
}
.hero__pagination {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
}
.hero__pagination .swiper-pagination-bullet {
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: var(--white-opacity-20);
  opacity: 1;
  margin: 0;
  overflow: hidden;
}
.hero__pagination .hero__pagination-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--white-white);
  transition: width 0.3s ease;
}

.history {
  position: relative;
  padding: 80px 0;
  color: var(--text-primary);
  /* Card */
}
.history__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 80px;
}
.history__card {
  position: relative;
  background: var(--white-white);
  border-radius: 10px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.03);
  padding: 12px 12px 24px;
  display: flex;
  flex-direction: column;
}
.history__photo {
  width: 100%;
  height: 270px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 20px;
}
.history__name {
  font-family: "Marcellus", serif;
  font-size: 24px;
  line-height: 1.254;
  margin-bottom: 12px;
}
.history__bio {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.366;
  color: var(--text-secondary);
}
.history__heading {
  font-family: "Marcellus", serif;
  font-size: 40px;
  line-height: 1.254;
  margin: 0;
}
.history__est {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.366;
  color: var(--text-secondary);
  margin-left: 16px;
}
.history__p1 {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.366;
  margin-bottom: 16px;
}
.history__p2 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.366;
  color: var(--text-secondary);
}
.history__steps {
  width: 52px;
  height: 10px;
  transform: translateY(-7px);
}
.history__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 80px;
}
.history__photo-wrap {
  width: 100%;
  height: 270px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.history__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .history {
    padding: 70px 0 0;
  }
  .history__container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
    position: relative;
  }
  .history__steps {
    width: 52px;
    height: 10px;
    margin-bottom: 20px;
    transform: none;
    position: absolute;
    top: -30px;
    left: 0;
  }
  .history__head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 12px;
    margin-top: 10px;
    position: relative;
  }
  .history__heading {
    font-family: "Marcellus", serif;
    font-size: 40px;
    line-height: 1.254;
    color: #211f20;
    margin: 0;
  }
  .history__est {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.366;
    color: #707173;
    margin: 0;
  }
  .history__p1 {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #211f20;
    margin-bottom: 12px;
  }
  .history__p2 {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.366;
    color: #707173;
    margin-bottom: 0;
  }
  .history__text {
    margin-bottom: 80px;
  }
  .history__card {
    width: 335px;
    height: 504px;
    margin: 0 auto;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 31px rgba(0, 0, 0, 0.03);
    order: 1;
  }
  .history__photo-wrap {
    width: 311px;
    height: 270px;
    margin: 0 0 18px;
  }
  .history__photo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: none;
  }
  .history__name {
    font-family: "Marcellus", serif;
    font-size: 24px;
    line-height: 1.254;
    color: #211f20;
    margin-bottom: 12px;
  }
  .history__bio {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.366;
    color: #707173;
    margin: 0;
  }
}

.home-main .header__mobile-menu-dot {
  background-color: #ffffff !important;
}

.coaches {
  padding: 80px 0;
  color: var(--text-primary);
}
.coaches__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.coaches__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.coaches__steps {
  width: 52px;
  height: 10px;
}
.coaches__title {
  font-family: "Marcellus", serif;
  font-size: 36px;
  line-height: 1.254;
  text-align: center;
}
.coaches__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-content: center;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.coaches__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.coaches__avatar {
  width: 224px;
  height: 224px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white-white);
}
.coaches__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coaches__name {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.coaches__role {
  font-family: "Manrope", sans-serif;
  padding: 0 30px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.coaches__link {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--accent-primary);
  text-decoration: underline;
  margin-top: auto;
  transition: color 0.3s ease;
}
.coaches__item:hover .coaches__read-more {
  color: var(--accent-dark);
}
@media (max-width: 1240px) {
  .coaches__container {
    width: 100%;
    padding: 0 40px;
  }
  .coaches__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .coaches {
    padding: 60px 0 80px;
  }
  .coaches__container {
    padding: 0 20px;
  }
  .coaches__head {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .coaches__steps {
    margin-bottom: 20px;
  }
  .coaches__title {
    font-size: 32px;
  }
  .coaches__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: none;
    justify-items: center;
  }
  .coaches__item {
    text-align: center;
    width: 335px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .coaches__avatar {
    margin: 0 auto 20px;
  }
  .coaches__name {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .coaches__role {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: var(--text-secondary);
    margin-bottom: 16px;
  }
  .coaches__link {
    font-size: 14px;
    color: var(--accent-primary);
    text-decoration: underline;
  }
}
@media (max-width: 480px) {
  .coaches {
    padding: 50px 0 60px;
  }
  .coaches__title {
    font-size: 28px;
  }
  .coaches__name {
    font-size: 18px;
  }
  .coaches__role {
    font-size: 12px;
  }
}

.gallery {
  position: relative;
  width: 100%;
  height: 500px;
  background: #211f20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 120px;
  /* Grid */
}
.gallery__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}
.gallery__title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.37;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 447px;
  margin-bottom: 80px;
}
.gallery__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.37;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}
.gallery__button:hover {
  transform: translateX(5px);
}
.gallery__icon {
  width: 8px;
  height: 8px;
  fill: #ffffff;
}
.gallery__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.gallery__row {
  position: absolute;
  width: 160%;
  height: 230px;
  display: flex;
  gap: 10px;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery__row--top {
  top: -105px;
  right: -70%;
}
.gallery__row--middle {
  top: 135px;
  right: -60%;
}
.gallery__row--bottom {
  top: 375px;
  right: -80%;
}
.gallery__item {
  flex-shrink: 0;
  overflow: hidden;
  background: #333;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery__row--top .gallery__item {
  width: 270px;
  height: 230px;
}
.gallery__row--middle .gallery__item {
  width: 260px;
  height: 230px;
}
.gallery__row--bottom .gallery__item {
  width: 300px;
  height: 230px;
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 32%, rgb(0, 0, 0) 84%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .gallery {
    padding: 0 60px;
  }
  .gallery__title {
    font-size: 28px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .gallery {
    padding: 0 20px;
    height: 800px;
    min-height: auto;
    display: block;
  }
  .gallery__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .gallery__row--bottom {
    top: auto;
    bottom: -32px;
    height: 194px;
    right: 80%;
  }
  .gallery__row--bottom .gallery__item {
    width: 253px;
    height: 194px;
  }
  .gallery__row--middle {
    top: auto;
    bottom: 170px;
    height: 194px;
    right: 80%;
  }
  .gallery__row--middle .gallery__item {
    width: 219px;
    height: 194px;
  }
  .gallery__row--top {
    top: 233px;
    height: 194px;
    right: 80%;
  }
  .gallery__row--top .gallery__item {
    width: 228px;
    height: 194px;
  }
  .gallery__overlay {
    background: linear-gradient(0, rgba(0, 0, 0, 0) 32%, rgb(0, 0, 0) 84%);
  }
  .gallery__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 40px;
  }
  .gallery__title {
    margin: 0;
    text-align: center;
    font-size: 28px;
  }
}

.milestones {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}
.milestones__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.milestones__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  justify-content: center;
}
.milestones__steps {
  width: 52px;
  height: 10px;
  transform: translateY(-7px);
}
.milestones__title {
  font-family: "Marcellus", serif;
  font-size: 40px;
  line-height: 1.254;
  margin: 0;
  color: var(--text-primary);
}
.milestones__content-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.milestones__content-slider {
  overflow: hidden;
  border-radius: 16px;
}
.milestones__content-slider .swiper-wrapper {
  display: flex;
}
.milestones__content-slider .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  height: auto; /* allow per-slide auto height */
}
.milestones__content {
  background: var(--white-white, #ffffff);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
.milestones__content:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.milestones__year-line {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}
.milestones__year {
  font-family: "Marcellus", serif;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
  font-weight: 400;
}
.milestones__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-secondary);
  margin: 0 0 0 12px;
}
.milestones__text {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
}
.milestones__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 6vw;
  padding: 0 20px;
  margin-top: 8px;
  height: 110px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.milestones__timeline-line {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-light, #e5e5e5) 0 0);
  z-index: 1;
}
.milestones__timeline-progress {
  display: none;
}
.milestones__timeline-point {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  padding: 0 4px;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  justify-content: flex-end;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.milestones__timeline-point:hover {
  transform: translateY(-2px);
}
.milestones__timeline-point:focus {
  outline: none;
  box-shadow: none;
}
.milestones__timeline-point--active .milestones__timeline-year {
  color: var(--primary, #d946ef);
  font-weight: 600;
}
.milestones__timeline-point--active .milestones__timeline-stick {
  height: 72px;
}
.milestones__timeline-point--active .milestones__timeline-stone {
  transform: translate(-50%, -50%);
}
.milestones__timeline-stick {
  width: 2px;
  height: 28px;
  background: var(--border-light, #e5e5e5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 18px;
  transition: height 0.3s ease;
  position: relative;
}
.milestones__timeline-point--active .milestones__timeline-stick {
  background: var(--border-light, #e5e5e5);
}
.milestones__timeline-year {
  font-family: "Marcellus", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-secondary, #6b7280);
  transition: color 0.3s ease;
  white-space: nowrap;
  position: absolute;
  bottom: 8px;
  transform: translateY(50%);
  padding: 0 10px;
  background: #f3f3f3;
  z-index: 3;
}
.milestones__timeline-stone {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.milestones__timeline-stone img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.4s ease;
}
.milestones__timeline-point--active .milestones__timeline-stone {
  width: 24px;
  height: 24px;
}
@media (max-width: 1240px) {
  .milestones__container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .milestones {
    padding: 80px 0;
  }
  .milestones__container {
    padding: 0 20px;
    flex-direction: column;
  }
  .milestones__head {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .milestones__steps {
    margin-bottom: 20px;
  }
  .milestones__title {
    font-size: 32px;
  }
  .milestones__content-wrapper {
    order: 2;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .milestones__timeline {
    order: 1;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 60px;
    padding: 0;
    margin: 0 -20px;
    height: 110px;
    width: 100vw;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .milestones__timeline::-webkit-scrollbar {
    display: none;
  }
  .milestones__timeline::before {
    content: "";
    flex-shrink: 0;
    width: 40px;
  }
  .milestones__timeline::after {
    content: "";
    flex-shrink: 0;
    width: 40px;
  }
  .milestones__timeline-line {
    position: absolute;
    left: 160px;
    bottom: 8px;
    height: 2px;
    background: var(--border-light, #e5e5e5);
    z-index: 1;
    width: 800px;
  }
  .milestones__timeline-progress {
    display: none;
  }
  .milestones__timeline-point {
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    min-width: 60px;
    padding: 0 4px;
    background: none;
    border-radius: 8px;
    box-shadow: none;
    scroll-snap-align: center;
  }
  .milestones__timeline-point:hover {
    transform: translateY(-2px);
  }
  .milestones__timeline-stick {
    width: 2px;
    height: 28px;
    background: var(--border-light, #e5e5e5);
    margin-bottom: 18px;
    border-radius: 0;
    transition: height 0.3s ease;
  }
  .milestones__timeline-stone {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    margin: 0;
  }
  .milestones__timeline-year {
    font-size: 16px;
    position: absolute;
    bottom: 8px;
    transform: translateY(50%);
    padding: 0 10px;
    background: #f3f3f3;
    white-space: nowrap;
  }
  .milestones__timeline-point--active .milestones__timeline-year {
    color: var(--primary, #d946ef);
    font-weight: 600;
  }
  .milestones__timeline-point--active .milestones__timeline-stick {
    height: 72px;
  }
  .milestones__timeline-point--active .milestones__timeline-stone {
    width: 24px;
    height: 24px;
  }
  .milestones__content {
    padding: 30px 20px;
    min-height: 180px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
  .milestones__year {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .milestones__text {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .milestones {
    padding: 60px 0;
  }
  .milestones__title {
    font-size: 28px;
  }
  .milestones__content {
    padding: 24px 16px;
    min-height: 160px;
  }
  .milestones__year {
    font-size: 32px;
  }
  .milestones__timeline-point {
    padding: 10px 16px;
  }
  .milestones__timeline-year {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .milestones__timeline-progress, .milestones__timeline-point, .milestones__timeline-stone, .milestones__timeline-stick, .milestones__content {
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .milestones__timeline-line {
    background: var(--text-primary, #000);
  }
  .milestones__timeline-progress {
    background: var(--text-primary, #000);
  }
  .milestones__content {
    border: 2px solid var(--text-primary, #000);
  }
  .milestones__timeline-stick {
    background: var(--text-primary, #000);
  }
}
.milestones .swiper-slide {
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.8s ease-out, opacity 0.3s ease;
  pointer-events: none;
}
.milestones .swiper-slide.enter-from-left {
  transform: translateX(-100vw);
}
.milestones .swiper-slide.enter-from-right {
  transform: translateX(100vw);
}
.milestones .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  height: -moz-fit-content;
  height: fit-content;
}

.reasons {
  padding: 80px 0 120px;
  color: var(--text-primary);
}
.reasons__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.reasons__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.reasons__steps {
  width: 52px;
  height: 10px;
}
.reasons__title {
  font-family: "Marcellus", serif;
  font-size: 36px;
  line-height: 1.254;
  margin: 0;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reasons__card {
  background: var(--white-white);
  border-radius: 10px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.03);
  padding: 12px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.reasons__media {
  width: 100%;
  height: 226px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}
.reasons__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.reasons__caption {
  padding: 0 0 4px;
}
.reasons__name {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.reasons__text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-secondary);
}
@media (max-width: 1200px) {
  .reasons__container {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .reasons__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .reasons {
    padding: 60px 0 80px;
  }
  .reasons__container {
    padding: 0 20px;
  }
  .reasons__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .reasons__steps {
    margin-bottom: 20px;
  }
  .reasons__title {
    font-size: 32px;
  }
  .reasons__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
  .reasons__card {
    width: 335px;
    height: auto;
    padding: 12px;
    margin: 0 auto;
  }
  .reasons__media {
    width: 311px;
    height: 210px;
    margin: 0 auto 12px;
  }
  .reasons__caption {
    padding: 0 8px 8px;
    text-align: center;
  }
  .reasons__name {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .reasons__text {
    font-size: 14px;
    line-height: 1.366;
  }
}
@media (max-width: 480px) {
  .reasons__title {
    font-size: 28px;
  }
  .reasons__card {
    width: 335px;
    height: auto;
  }
  .reasons__media {
    width: 311px;
    height: 210px;
  }
}

.programs {
  color: var(--text-primary);
  padding: 45px 0 80px;
  z-index: 3;
  position: relative;
  /* Заголовки */
  /* Две широкие картинки в ряд */
  /* оффсайт ссылка у левого края правой фотки */
  /* XCEL specifics */
  /* Кнопки */
  /* Исправление: внутри слайдеров картинки должны иметь авто-высоту,
     перекрываем общее правило height:100% */
}
.programs__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.programs__head-steps {
  width: 24px;
  height: 10px;
  margin-bottom: 15px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.programs__title {
  font-family: "Marcellus", serif;
  font-size: 36px;
  line-height: 1.254;
  margin-bottom: 6px;
}
.programs__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 1.366;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.programs__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 24px;
}
.programs__note {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--text-secondary);
  max-width: 520px;
}
.programs__offsite {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  text-decoration: none;
}
.programs__offsite img {
  width: 12px;
  height: 12px;
}
.programs__offsite svg {
  width: 12px;
  height: 12px;
}
.programs__layout {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 24px;
  align-items: start;
}
.programs__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.programs__meta {
  position: relative;
}
.programs .programs__images {
  position: relative;
}
.programs .programs__right {
  position: relative;
}
.programs .programs__offsite {
  position: absolute;
  left: calc(50% + 12px); /* по левому краю правой колонки (gap 24px) */
  transform: translateX(0);
}
@media (max-width: 1240px) {
  .programs .programs__offsite {
    position: static;
    margin-top: -8px;
  }
}
.programs__images--wide {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.programs__right {
  display: grid;
  gap: 24px;
  align-content: start;
}
.programs__slider {
  overflow: hidden;
  border-radius: 10px;
}
.programs__slider .swiper-wrapper {
  display: flex;
  height: auto;
}
.programs__slider .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  height: auto;
}
.programs__slider .programs__img-wrap img {
  height: auto;
}
.programs__slider.swiper {
  height: auto;
  position: relative;
}
.programs__slider .swiper-wrapper {
  position: relative;
}
.programs__slider .swiper-slide {
  position: relative;
}
.programs .programs__registration-btn-dark {
  background: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}
.programs__img-wrap {
  overflow: hidden;
  background: var(--white-white);
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.03);
}
.programs__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.programs__content {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.366;
  display: grid;
  gap: 16px;
}
.programs__mini-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  margin-top: 8px;
}
.programs__list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  list-style: disc outside;
}
.programs__list li {
  list-style: disc outside;
  margin: 0;
}
.programs__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.programs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 8px 20px;
  border-radius: 38px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.programs__btn--primary {
  background: var(--accent-primary);
  color: var(--white-white);
}
.programs__btn--secondary {
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  transition: all 0.3s ease;
}
.programs__btn--secondary:hover {
  background: var(--accent-primary);
  color: var(--white-white);
}
@media (max-width: 1240px) {
  .programs {
    /* на планшете/мобиле всё складывается столбиком автоматически */
  }
  .programs__container {
    width: 100%;
  }
  .programs__layout {
    grid-template-columns: 1fr;
  }
  .programs__images--wide {
    grid-template-columns: 1fr;
  }
}
.programs__slider .programs__img-wrap {
  height: auto;
}
.programs__slider .programs__img-wrap img {
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .programs {
    padding: 0 0 60px;
    background: #f4f4f4;
  }
  .programs__container {
    padding: 0 20px;
  }
  .programs__head-steps {
    margin-bottom: 30px;
  }
  .programs__title {
    font-size: 36px;
    font-family: "Marcellus", serif;
    color: #211f20;
    margin-bottom: 12px;
  }
  .programs__subtitle {
    font-size: 20px;
    font-family: "Manrope", sans-serif;
    color: #707173;
    margin-bottom: 20px;
  }
  .programs__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }
  .programs__note {
    font-size: 12px;
    color: #707173;
    max-width: none;
    margin-bottom: 20px;
  }
  .programs__offsite {
    font-size: 12px;
    color: #211f20;
    position: static;
    margin-top: 8px;
  }
  .programs__layout {
    display: block;
  }
  .programs__images {
    display: block;
    margin-bottom: 0;
  }
  .programs__images .programs__slider-right {
    display: none;
  }
  .programs__images .programs__slider-left {
    width: 335px;
    margin: 0 auto 20px;
  }
  .programs__images--wide {
    display: block;
    margin-bottom: 0;
  }
  .programs__images--wide .programs__slider-right {
    display: none;
  }
  .programs__images--wide .programs__slider-left {
    width: 335px;
    margin: 0 auto 20px;
  }
  .programs__img-wrap {
    width: 335px;
    height: 220px;
    margin: 0 auto;
    opacity: 1 !important;
    background: #ffffff;
  }
  .programs__img-wrap img {
    opacity: 1 !important;
    filter: none !important;
  }
  .programs__right {
    display: block;
    gap: 0;
    margin-bottom: 0;
  }
  .programs__content {
    font-size: 14px;
    color: #707173;
    margin-bottom: 0;
  }
  .programs__mini-title {
    font-size: 16px;
    font-weight: 700;
    color: #707173;
    margin: 20px 0 16px;
  }
  .programs__list {
    margin-bottom: 0;
  }
  .programs__actions {
    display: flex;
    gap: 16px;
    margin: 40px 0 0;
    justify-content: flex-start;
  }
  .programs__btn {
    height: 35px;
    padding: 8px 20px;
  }
  .programs__btn--secondary {
    border: 1px solid #e92bb3;
    color: #e92bb3;
    background: transparent;
  }
  .programs__btn--primary {
    background: #e92bb3;
    color: #ffffff;
  }
  .programs__slider {
    width: 335px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 10px;
  }
  .programs__slider .swiper {
    width: 335px;
    height: 220px;
  }
  .programs__slider .swiper-wrapper {
    width: 335px;
    height: 220px;
  }
  .programs__slider .swiper-slide {
    width: 335px !important;
    height: 220px !important;
    flex-shrink: 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .programs__slider .programs__img-wrap {
    width: 335px;
    height: 220px;
    margin: 0;
    opacity: 1 !important;
    overflow: hidden;
  }
  .programs__slider .programs__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 1 !important;
    filter: none !important;
  }
  .programs__slider .swiper-slide-active,
  .programs__slider .swiper-slide-next,
  .programs__slider .swiper-slide-prev {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===================================
   PAGE DECORATION FOR PROGRAMS PAGE
   =================================== */
.page-decoration--programs {
  top: 0px;
  left: -400px;
  height: 2665px;
}
.page-decoration--programs svg {
  padding-right: 10px;
}
@media (max-width: 960px) {
  .page-decoration--programs {
    display: none;
  }
}

/* ===================================
   REGISTRATION PAGE
   =================================== */
.registration-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.registration {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: min-height 0.5s ease;
}
.registration__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: -2;
  transition: height 0.5s ease;
}
.registration__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: opacity 0.8s ease-in-out;
}
.registration__bg-image--hidden {
  opacity: 0;
}
.registration__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(244, 244, 244, 0.85);
  z-index: -1;
  transition: height 0.5s ease;
}
.registration__form-wrapper {
  position: absolute;
  top: 90px; /* Under header */
  right: 120px; /* Aligned with header button */
  background: var(--back);
  border-radius: 10px;
  padding: 20px;
  width: 455px;
  max-width: calc(100vw - 240px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media (max-width: 1240px) {
  .registration__form-wrapper {
    right: 40px;
    max-width: calc(100vw - 80px);
  }
}
@media (max-width: 768px) {
  .registration__form-wrapper {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    max-width: none;
    padding: 20px;
    margin: 140px 20px 20px;
    background: var(--back);
  }
}
.registration__hints {
  position: absolute;
  top: 90px;
  right: 595px; /* Form width + gap + container padding */
  background: var(--white-white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  width: 260px;
  z-index: 10;
}
@media (max-width: 1440px) {
  .registration__hints {
    display: none; /* Hide on smaller screens */
  }
}
.registration__hints-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.registration__hints-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px; /* From Figma data */
}
.registration__hints-item {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.366;
  color: var(--text-secondary);
}
.registration__title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.254;
  text-align: center;
  color: var(--text-primary);
  margin: 0 0 45px;
}
@media (max-width: 768px) {
  .registration__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .registration__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
.registration__form {
  display: flex;
  flex-direction: column;
}
.registration__field {
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .registration__field {
    margin-bottom: 10px;
  }
}
.registration__select-container {
  position: relative;
  background: var(--white-white);
  border-radius: 5px;
  transition: all 0.3s ease, border-radius 0.3s ease;
  overflow: visible;
}
.registration__select-container:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.registration__select-container--expanded {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 5px 5px 0 0;
}
.registration__select-container--expanded .registration__select {
  border-radius: 0;
}
.registration__select {
  width: 100%;
  height: auto;
  min-height: 50px;
  background: transparent;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease, border-radius 0.3s ease;
  position: relative;
  border-radius: inherit;
}
.registration__select:focus {
  outline-offset: 2px;
}
.registration__select[aria-expanded=true] .registration__icon-default {
  opacity: 0;
}
.registration__select[aria-expanded=true] .registration__icon-active {
  opacity: 1;
}
.registration__select[aria-expanded=true] .registration__icon-default,
.registration__select[aria-expanded=true] .registration__icon-active {
  transform: rotate(180deg);
}
.registration__select[aria-expanded=true] + .registration__dropdown {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.registration__select-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: var(--text-secondary);
  text-align: left;
}
.registration__select-text--selected {
  color: var(--text-primary);
}
.registration__select-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.registration__select-icon .registration__icon-default,
.registration__select-icon .registration__icon-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.registration__select-icon .registration__icon-default {
  opacity: 1;
}
.registration__select-icon .registration__icon-active {
  opacity: 0;
}
.registration__dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease, border-radius 0.3s ease;
  overflow: hidden;
  background: var(--white-white);
  border-radius: 0 0 5px 5px;
  box-shadow: none;
  z-index: 10;
}
.registration__dropdown-content {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.registration__dropdown-placeholder {
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.366;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}
.registration__dropdown-btn {
  width: 100%;
  padding: 0;
  text-align: left;
  background: none;
  border: none;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}
.registration__dropdown-btn:hover, .registration__dropdown-btn:focus {
  color: var(--text-primary);
}
.registration__dropdown-btn:focus {
  outline: 1px solid var(--accent-primary);
  outline-offset: 1px;
}
.registration__dropdown-btn--selected {
  color: var(--accent-primary);
  font-weight: 600;
}
.registration__submit {
  width: 100%;
  height: 50px;
  background: var(--accent-noactive);
  border: none;
  border-radius: 5px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.366;
  color: var(--white-white);
  cursor: not-allowed;
  transition: all 0.3s ease;
  margin-top: 10px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (max-width: 768px) {
  .registration__submit {
    margin-top: 10px;
  }
}
.registration__submit:not(:disabled) {
  background: var(--accent-primary);
  cursor: pointer;
}
.registration__submit:not(:disabled):hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 43, 179, 0.3);
}
.registration__submit:not(:disabled):focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}
.registration__submit:not(:disabled):active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(233, 43, 179, 0.2);
}
.registration__error {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #dc3545;
}
.registration__status {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
  min-height: 20px;
}
.registration__status--success {
  color: #28a745;
}
.registration__status--error {
  color: #dc3545;
}
.registration__program-info {
  position: absolute;
  top: auto;
  right: 120px;
  width: 455px;
  max-width: calc(100vw - 240px);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 9;
}
.registration__program-info--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1240px) {
  .registration__program-info {
    right: 40px;
    max-width: calc(100vw - 80px);
  }
}
@media (max-width: 768px) {
  .registration__program-info {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    max-width: none;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    margin: 0 20px 20px;
    transition: all 0.5s ease;
  }
  .registration__program-info--visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.registration__program-card {
  background: var(--back);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.registration__program-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.366;
  color: var(--text-primary);
  margin: 18px 0;
}
.registration__program-divider {
  width: 100%;
  height: 1px;
  background: #dcdcdc;
  margin-bottom: 16px;
}
.registration__program-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.registration__program-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.registration__program-label {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.366;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .registration__program-label {
    font-size: 12px;
  }
}
.registration__program-value {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.366;
  color: var(--text-primary);
  text-align: right;
}
@media (max-width: 768px) {
  .registration__program-value {
    font-size: 12px;
  }
}
.registration__program-description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: var(--text-secondary);
  margin: 0;
}

.header__registration-wrapper {
  position: relative;
}

.header__registration-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white-white);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 20;
  min-width: 200px;
}
.header__registration-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--white-white);
  transform: rotate(45deg);
  box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.02);
}
.header__registration-dropdown--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__registration-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.header__registration-dropdown-item {
  position: relative;
}
.header__registration-dropdown-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--border-light);
}
.header__registration-dropdown-link {
  display: block;
  color: var(--text-primary);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.366;
  text-decoration: none;
  padding: 8px 4px;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.header__registration-dropdown-link:hover, .header__registration-dropdown-link:focus {
  background: var(--bg-light);
  color: var(--accent-primary);
}
.header__registration-dropdown-link:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .registration {
    transition: none !important;
  }
  .registration__background, .registration__overlay {
    transition: none !important;
  }
  .registration__select, .registration__dropdown, .registration__submit {
    transition: none;
  }
  .header__registration-dropdown {
    transition: none;
  }
}
.registration-main .header__mobile-menu-dot {
  background-color: #ffffff !important;
}

@media (prefers-contrast: high) {
  .registration__form-wrapper {
    border: 2px solid var(--text-primary);
  }
  .registration__select {
    border: 1px solid var(--text-primary);
  }
  .registration__dropdown {
    border: 1px solid var(--text-primary);
  }
}
/* ===================================
   CONTACT/MAP PAGE STYLES
   =================================== */
.contact {
  background-color: #f4f4f4;
  padding: 20px 0 120px 0;
  min-height: 85vh;
}
@media (max-width: 768px) {
  .contact {
    padding: 10px 0 120px 0;
    min-height: auto;
  }
}
.contact__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1240px) {
  .contact__container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .contact__container {
    padding: 0 20px;
    gap: 30px;
  }
}
.contact__header {
  padding-top: 25px;
}
@media (max-width: 768px) {
  .contact__header {
    padding-top: 0;
    margin-bottom: 30px;
  }
}
.contact__head-steps {
  width: 24px;
  height: 10px;
  margin-bottom: 15px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contact__title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.254;
  color: #211f20;
  margin: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contact__title:focus {
  outline: none;
}
.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact__info {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.contact__info-item {
  display: flex;
  flex-direction: column;
}
.contact__info-item:focus {
  outline: none;
}
@media (max-width: 768px) {
  .contact__info-item {
    align-items: flex-start;
    min-height: 50px;
  }
}
.contact__info-label {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.366;
  color: #211f20;
  margin: 0 0 12px 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contact__info-label:focus {
  outline: none;
}
.contact__info-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #707173;
  margin: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contact__info-text:focus {
  outline: none;
}
.contact__social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact__social {
    gap: 40px;
    margin-top: 12px;
  }
}
.contact__social-link {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #707173;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact__social-link:hover, .contact__social-link:focus {
  color: #e92bb3;
}
.contact__social-link:focus {
  outline: 2px solid #e92bb3;
  outline-offset: 2px;
}
.contact__map {
  width: 100%;
  height: 400px;
}
.contact__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .contact__map {
    height: 500px;
    margin-bottom: 20px;
  }
  .contact__map iframe {
    height: 500px;
    border-radius: 20px;
  }
}

/* Contact page specific adjustments for footer */
.contact + .footer {
  margin-top: 0;
}

/* Prevent focus on non-interactive elements */
.contact h1:focus,
.contact h2:focus,
.contact p:focus,
.contact img:focus,
.contact div:not([role]):not([tabindex]):focus {
  outline: none !important;
}

/* Accessibility and reduced motion */
@media (prefers-reduced-motion: reduce) {
  .contact__social-link {
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .contact {
    background-color: #ffffff;
  }
  .contact__title {
    color: #000000;
  }
  .contact__info-label {
    color: #000000;
  }
  .contact__info-text {
    color: #333333;
  }
  .contact__social-link {
    color: #333333;
  }
  .contact__social-link:hover, .contact__social-link:focus {
    color: #000000;
  }
}/*# sourceMappingURL=styles.css.map */