@font-face {
  font-family: 'Aura';
  src: url('/fonts/atypdisplay-light.woff2') format('woff2');
  font-display: optional;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Aura';
  src: url('/fonts/atypdisplay-regular.woff2') format('woff2');
  font-display: optional;
  font-style: normal;
  font-weight: 400;
}

:root {
  --bg: #000;
  --bg-soft: #090909;
  --font-fast: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --panel: rgba(12, 12, 12, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-strong: rgba(255, 255, 255, 0.18);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-soft: rgba(255, 255, 255, 0.48);
  --gradient: linear-gradient(45deg, #c64e4e 0%, #4961c1 100%);
  --gradient-hover: linear-gradient(225deg, #c64e4e 0%, #4961c1 100%);
  --container: min(1200px, calc(100vw - 32px));
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --radius-pill: 999px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(77, 99, 196, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(198, 78, 78, 0.18), transparent 28%),
    linear-gradient(180deg, #020202 0%, #000 24%, #050505 100%);
  color: var(--text);
  font: 400 16px/1.5 'Aura', Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
input,
textarea,
select {
  box-sizing: border-box !important;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 84px 0;
}

.section--space-tilda {
  padding: 0;
  background: #000;
  overflow: visible;
}

.section--space-tilda .t-records {
  background: #000;
}

@supports (content-visibility: auto) {
  main > .section:not(.hero),
  .native-tilda-blocks,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }

  .section--space-tilda {
    contain-intrinsic-size: 2400px;
  }

  .native-tilda-blocks--certificates {
    contain-intrinsic-size: 1000px;
  }

  .native-tilda-blocks--reviews {
    contain-intrinsic-size: 700px;
  }
}

.native-tilda-blocks {
  position: relative;
  background: #000;
}

.native-tilda-blocks .r {
  overflow: visible;
}

.section-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--muted-soft);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-copy {
  color: var(--muted);
  max-width: 520px;
}

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: 'Aura', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.96;
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

p {
  margin: 0;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease;
}

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

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 122px;
  padding: 26px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 70px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.header-pill--nav {
  flex: 0 0 auto;
  width: 466px;
  min-width: 466px;
}

.header-nav-follower {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 0;
  width: 110px;
  height: 58px;
  border-radius: 999px;
  background-image: var(--gradient);
  box-shadow: 0 16px 34px rgba(90, 72, 170, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  will-change: transform, width;
  transition:
    transform 0.68s cubic-bezier(0.22, 1.18, 0.36, 1),
    width 0.62s cubic-bezier(0.22, 1.12, 0.36, 1),
    opacity 0.32s ease;
}

.header-pill--nav.is-follower-ready.is-hovering .header-nav-follower {
  opacity: 1;
}

.header-nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  text-align: center;
  font-family: 'Aura', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.header-pill--nav > .header-nav-link:nth-of-type(1),
.header-pill--nav > .header-nav-link:nth-of-type(2) {
  width: 76px;
}

.header-pill--nav > .header-nav-link:nth-of-type(3) {
  width: 66px;
}

.header-pill--nav > .header-nav-link:nth-of-type(4) {
  width: 122px;
}

.header-nav-link.is-active,
.header-nav-link:hover,
.header-nav-link:focus-visible {
  color: var(--text);
}

.header-menu-toggle,
.mobile-menu-toggle {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.header-menu-toggle {
  flex: 0 0 84px;
  width: 84px;
  height: 58px;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
}

.header-menu-toggle span,
.mobile-menu-toggle span {
  position: absolute;
  left: 26px;
  right: 26px;
  height: 1.3px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.header-menu-toggle span:first-child,
.mobile-menu-toggle span:first-child {
  top: calc(50% - 4px);
}

.header-menu-toggle span:last-child,
.mobile-menu-toggle span:last-child {
  top: calc(50% + 4px);
}

.header-menu-toggle.is-open span:first-child {
  transform: none;
}

.header-menu-toggle.is-open span:last-child {
  transform: none;
}

.brand-link {
  position: absolute;
  top: 44px;
  left: 50%;
  display: block;
  z-index: 1;
  width: 178px;
  height: 45px;
  line-height: 0;
  transform: translateX(-50%);
}

.brand-link__wordmark {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-link__dot {
  position: absolute;
  z-index: 1;
  display: block;
  top: -14px;
  left: 84px;
  width: 34px;
  height: 34px;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  gap: 14px;
}

.site-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  --menu-panel-left: max(52%, calc(100% - 872px));
  --menu-content-offset: clamp(52px, 3vw, 64px);
  --menu-content-delay: 440ms;
  display: flex;
  justify-content: flex-end;
  padding: 84px 22px 24px;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(2px);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.46s ease, background-color 0.46s ease;
}

.site-menu-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: var(--menu-panel-left);
  z-index: 0;
  background: #000;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.site-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu-overlay.is-open::after {
  transform: translate3d(0, 0, 0);
}

.site-menu-overlay__close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.site-menu-overlay__close:hover {
  color: #fff;
}

.site-menu-overlay__inner {
  width: min(760px, calc(100vw - 22px - var(--menu-panel-left) - var(--menu-content-offset)));
  margin: 0;
  position: absolute;
  top: 62px;
  left: calc(var(--menu-panel-left) + var(--menu-content-offset));
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(24px, 1fr) auto;
  grid-template-areas:
    "nav"
    "."
    "bottom";
  align-content: stretch;
  height: calc(100svh - 108px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  opacity: 0;
  transform: translate3d(320px, 0, 0);
  transition-delay: 0ms, 0ms;
  transition:
    opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-menu-overlay__inner::-webkit-scrollbar {
  display: none;
}

.site-menu-overlay.is-open .site-menu-overlay__inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: var(--menu-content-delay), var(--menu-content-delay);
}

.site-menu-overlay__nav {
  grid-area: nav;
  display: grid;
  width: min(410px, 100%);
  justify-self: start;
  justify-items: start;
  gap: 20px;
  align-content: start;
}

.site-menu-overlay__nav a {
  --menu-item-delay: 0ms;
  font-family: 'Aura', Arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: normal;
  color: #fff;
  opacity: 0;
  transform: translate3d(0, -100px, 0);
  transition-delay: 0ms, 0ms, 0ms;
  transition:
    opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.26s ease;
}

.site-menu-overlay.is-open .site-menu-overlay__nav a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay:
    calc(var(--menu-content-delay) + var(--menu-item-delay)),
    calc(var(--menu-content-delay) + var(--menu-item-delay)),
    0ms;
}

.site-menu-overlay__nav a:nth-child(1) {
  --menu-item-delay: 40ms;
}

.site-menu-overlay__nav a:nth-child(2) {
  --menu-item-delay: 80ms;
}

.site-menu-overlay__nav a:nth-child(3) {
  --menu-item-delay: 120ms;
}

.site-menu-overlay__nav a:nth-child(4) {
  --menu-item-delay: 160ms;
}

.site-menu-overlay__nav a:nth-child(5) {
  --menu-item-delay: 200ms;
}

.site-menu-overlay__nav a:nth-child(6) {
  --menu-item-delay: 240ms;
}

.site-menu-overlay__nav a:nth-child(7) {
  --menu-item-delay: 280ms;
}

.site-menu-overlay__nav a:nth-child(8) {
  --menu-item-delay: 320ms;
}

.site-menu-overlay__nav a:nth-child(9) {
  --menu-item-delay: 360ms;
}

.site-menu-overlay__nav a:nth-child(10) {
  --menu-item-delay: 400ms;
}

.site-menu-overlay__nav a:hover,
.site-menu-overlay__nav a:focus-visible {
  color: #a7a7a7;
  transform: none;
  text-shadow: none;
}

.site-menu-overlay__meta {
  grid-area: bottom;
  align-self: end;
  justify-self: start;
  margin-left: min(332px, calc(100% - 370px));
  display: grid;
  gap: 6px;
  min-width: 250px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.31;
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition-delay: 0ms, 0ms;
  transition:
    opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-menu-overlay__meta p:first-child {
  font-size: 17px;
  line-height: 22px;
}

.site-menu-overlay__meta p:last-child {
  font-size: 13px;
  line-height: 17px;
}

.site-menu-overlay.is-open .site-menu-overlay__meta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay:
    calc(var(--menu-content-delay) + 260ms),
    calc(var(--menu-content-delay) + 260ms);
}

.site-menu-overlay__actions {
  grid-area: bottom;
  align-self: end;
  justify-self: start;
  display: grid;
  grid-template-columns: clamp(280px, 17.8vw, 320px) clamp(250px, 15.7vw, 286px);
  grid-template-areas:
    "cta phone"
    "socials socials";
  align-items: center;
  gap: 22px 16px;
  max-width: clamp(546px, 34vw, 606px);
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition-delay: 0ms, 0ms;
  transition:
    opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-menu-overlay.is-open .site-menu-overlay__actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay:
    calc(var(--menu-content-delay) + 240ms),
    calc(var(--menu-content-delay) + 240ms);
}

.site-menu-overlay__actions > .button--primary {
  grid-area: cta;
  width: clamp(280px, 17.8vw, 320px);
  min-height: clamp(82px, 5.4vw, 94px);
  padding: 0 26px;
  font-size: clamp(14px, 0.9vw, 15px);
}

.site-menu-overlay__phone {
  grid-area: phone;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(250px, 15.7vw, 286px);
  min-height: clamp(82px, 5.4vw, 94px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: 'Aura', Arial, sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(14px, 0.9vw, 15px);
  line-height: 1.55;
  white-space: nowrap;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}

.site-menu-overlay__phone:hover,
.site-menu-overlay__phone:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.site-menu-overlay__socials {
  grid-area: socials;
  display: flex;
  gap: 14px;
}

.site-menu-overlay__socials a {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  opacity: 0.92;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.site-menu-overlay__socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.site-menu-overlay__social-link--instagram::before {
  background-image: url('/images/tild6566-3236-4938-b233-396530646330__social.svg');
}

.site-menu-overlay__social-link--whatsapp::before {
  background-image: url('/images/tild3136-3630-4238-a565-643861316164__whatsapp.svg');
}

.site-menu-overlay__social-link--telegram::before {
  background-image: url('/images/tild3437-6364-4666-b162-313864626261__telegram_1.svg');
}

.site-menu-overlay__socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.56);
  background-color: rgba(255, 255, 255, 0.05);
}

@media (min-width: 960px) and (max-height: 780px) {
  .site-menu-overlay {
    padding-top: 64px;
  }

  .site-menu-overlay__inner {
    top: 48px;
    height: calc(100svh - 76px);
    grid-template-rows: auto minmax(18px, 1fr) auto;
  }

  .site-menu-overlay__nav {
    gap: clamp(12px, 2.2svh, 18px);
  }

  .site-menu-overlay__nav a {
    font-size: clamp(18px, 2.85svh, 22px);
    line-height: 1.3;
  }

  .site-menu-overlay__actions {
    gap: 16px 14px;
  }

  .site-menu-overlay__actions > .button--primary,
  .site-menu-overlay__phone {
    min-height: 72px;
  }

  .site-menu-overlay__socials a {
    width: 56px;
    height: 56px;
  }
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  max-width: 100%;
  min-height: 60px;
  min-width: 0;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background-image: var(--gradient);
  box-shadow: 0 16px 40px rgba(90, 72, 170, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background-image: var(--gradient-hover);
}

.button--ghost {
  border-color: var(--stroke-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
}

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

.main-site-booking-form__submit,
.booking-form__actions .button {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0;
}

.button--header-cta {
  min-height: 70px;
  width: 260px;
  min-width: 0;
  max-width: calc(100vw - 40px);
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-family: 'Aura', Arial, sans-serif;
  font-weight: 300;
  background: linear-gradient(90deg, #ea5246 0%, #3d62da 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  animation: header-cta-gradient-shift 3s linear infinite;
  -webkit-backface-visibility: hidden;
  will-change: background-position;
  isolation: isolate;
}

.button--header-cta > span {
  position: relative;
  z-index: 3;
  display: block;
  max-width: 100%;
  font-weight: 300;
  text-align: center;
}

.button--header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(234, 82, 70, 0.95) 0%, rgba(61, 98, 218, 0.95) 100%);
  background-size: 200% 100%;
  animation: header-cta-gradient-shift 3s linear infinite;
  filter: blur(14px);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.button--header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0);
  transition: background-color 220ms ease;
  pointer-events: none;
}

.button--header-cta:hover::before,
.button--header-cta:focus-visible::before {
  opacity: 0.85;
  transform: scale(1.02);
}

.button--header-cta:hover::after,
.button--header-cta:focus-visible::after {
  background: rgba(0, 0, 0, 0.28);
}

@keyframes header-cta-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button--header-cta,
  .button--header-cta::before {
    animation: none !important;
    transition: none !important;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 132px 0 62px;
}

.hero__backdrop,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  display: none;
}

.hero__backdrop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 1;
}

.hero__overlay {
  background:
    radial-gradient(circle at 14% 18%, rgba(69, 90, 190, 0.22), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(199, 83, 76, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.76) 56%, rgba(0, 0, 0, 0.88) 100%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.hero__copy {
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero__home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Aura', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.2s ease;
}

.hero__home-link-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero__home-link-text {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hero__home-link:hover,
.hero__home-link:focus-visible {
  color: #fff;
}

.hero__home-link:hover .hero__home-link-mark,
.hero__home-link:focus-visible .hero__home-link-mark {
  border-color: rgba(255, 255, 255, 0.46);
  transform: translateX(-2px);
}

.hero__home-link:hover .hero__home-link-text,
.hero__home-link:focus-visible .hero__home-link-text {
  border-color: rgba(255, 255, 255, 0.64);
}

.hero__title {
  font-size: clamp(52px, 6.8vw, 98px);
  line-height: 0.91;
  text-wrap: balance;
  color: #fff;
}

.hero__subtitle {
  max-width: min(690px, 96%);
  margin-top: 34px;
  font-size: clamp(24px, 1.95vw, 30px);
  line-height: 1.24;
  color: #fff;
  letter-spacing: -0.005em;
}

.hero__lead {
  margin-top: 24px;
  max-width: 620px;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.34;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 54px;
  align-items: center;
}

.hero__actions .button {
  min-width: 220px;
  font-size: clamp(15px, 1.1vw, 18px);
  letter-spacing: 0;
}

.hero__actions > * {
  min-width: 0;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li,
.booking-sidecard {
  padding: 18px 20px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero__facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__facts strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}

.hero__aside {
  display: grid;
  align-content: center;
  justify-self: end;
  width: min(100%, 760px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hero-card--main {
  width: 100%;
  border-radius: 36px;
  aspect-ratio: 1.08;
}

.hero-card--main .media-fit {
  object-position: center 30%;
}

.gallery-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.gallery-hint {
  color: var(--muted-soft);
  font-size: 14px;
}

.gallery-nav {
  display: flex;
  gap: 10px;
}

.gallery-nav__button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 22px;
}

.gallery-strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
  scroll-padding-left: 2px;
  scrollbar-width: thin;
}

.gallery-strip::-webkit-scrollbar {
  height: 8px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.gallery-card {
  position: relative;
  flex: 0 0 clamp(320px, 30vw, 420px);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.gallery-card .media-fit {
  height: clamp(340px, 34vw, 460px);
  aspect-ratio: auto;
  object-position: center center;
}

.gallery-card--compact {
  flex-basis: clamp(290px, 24vw, 350px);
}

.gallery-card--medium {
  flex-basis: clamp(360px, 33vw, 500px);
}

.gallery-card--wide {
  flex-basis: clamp(470px, 40vw, 620px);
}

.gallery-card--panorama {
  flex-basis: clamp(590px, 50vw, 780px);
}

.gallery-card--portrait {
  flex-basis: clamp(290px, 24vw, 360px);
}

.gallery-card--portrait .media-fit {
  height: clamp(420px, 40vw, 540px);
  object-position: center 36%;
}

.gallery-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.48);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.3;
  backdrop-filter: blur(8px);
}

.space-layout {
  display: grid;
  gap: clamp(62px, 7vw, 92px);
}

.space-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
}

.space-column {
  position: relative;
  will-change: transform;
}

.space-column--right {
  padding-top: 30px;
}

.space-intro {
  max-width: 430px;
  margin: clamp(40px, 5vw, 88px) 0 clamp(78px, 8vw, 118px);
  display: grid;
  gap: 16px;
}

.space-intro h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.space-intro p {
  max-width: 285px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.3;
}

.space-module {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(430px, 50vw, 600px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  --space-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 30%, rgba(0, 0, 0, 0.88) 92%);
}

.space-column .space-module + .space-module {
  margin-top: 24px;
}

.space-column--left .space-module--portal {
  margin-bottom: clamp(-144px, -11vw, -92px);
}

.space-module__media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.space-module__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--space-overlay);
  pointer-events: none;
}

.space-module__media .media-fit {
  height: 100%;
  object-position: center center;
}

.space-module__media--stack {
  overflow: hidden;
}

.space-portal-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: space-portal-cycle 9s linear infinite;
}

.space-portal-frame--1 {
  opacity: 1;
  animation-delay: 0s;
}

.space-portal-frame--2 {
  animation-delay: 3s;
}

.space-portal-frame--3 {
  animation-delay: 6s;
}

.space-module__copy {
  position: relative;
  z-index: 1;
  width: min(90%, 320px);
  margin-top: auto;
  padding: 0 28px 28px;
  display: grid;
  gap: 12px;
}

.space-module--smart {
  --space-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 14%, rgba(0, 0, 0, 0.9) 92%);
}

.space-module--portal {
  --space-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.9) 90%);
}

.space-module--shower {
  --space-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 16%, rgba(0, 0, 0, 0.92) 92%);
}

.space-module--terrace {
  --space-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.88) 92%);
}

.space-module__copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.space-module__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.3;
}

.space-room {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: clamp(520px, 70vw, 800px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.space-room__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.space-room__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.space-room__copy {
  position: relative;
  z-index: 1;
  width: min(90%, 320px);
  margin: clamp(46px, 6vw, 76px) clamp(20px, 4vw, 72px) 0 0;
  display: grid;
  gap: 12px;
}

.space-room__copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.space-room__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.3;
}

@keyframes space-portal-cycle {
  0%,
  25% {
    opacity: 1;
  }
  33%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .space-portal-frame {
    animation: none;
    opacity: 0;
  }

  .space-portal-frame--1 {
    opacity: 1;
  }
}

.section--stages {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(198, 78, 78, 0.16), transparent 28%),
    radial-gradient(circle at 86% 34%, rgba(73, 97, 193, 0.14), transparent 30%),
    linear-gradient(180deg, #000 0%, #050403 46%, #000 100%);
}

.section--stages::before,
.section--stages::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section--stages::before {
  inset: 6% auto auto 50%;
  width: min(920px, 92vw);
  height: min(920px, 92vw);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: 0.7;
}

.section--stages::after {
  right: -14vw;
  bottom: 8%;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(198, 78, 78, 0.16), transparent 64%);
  filter: blur(4px);
}

.dramaturgy-head,
.dramaturgy-flow {
  position: relative;
  z-index: 1;
}

.dramaturgy-head {
  max-width: 1040px;
  margin-bottom: 46px;
}

.dramaturgy-head h2 {
  max-width: 980px;
  font-size: clamp(44px, 5.7vw, 82px);
  line-height: 0.92;
  text-wrap: balance;
}

.dramaturgy-flow {
  display: grid;
  gap: 28px;
  counter-reset: dramaturgy;
}

.dramaturgy-flow::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 34px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.26) 18%, rgba(198, 78, 78, 0.38) 50%, rgba(73, 97, 193, 0.34) 82%, transparent 100%);
  opacity: 0.58;
}

.dramaturgy-card {
  --stage-glow-x: 14%;
  --stage-glow-y: 10%;
  --stage-glow: rgba(198, 78, 78, 0.2);
  --stage-line: rgba(198, 78, 78, 0.54);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  min-height: 520px;
  padding: clamp(22px, 3.4vw, 42px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(6, 6, 6, 0.9);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  counter-increment: dramaturgy;
}

.dramaturgy-card::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  background:
    radial-gradient(circle at var(--stage-glow-x) var(--stage-glow-y), var(--stage-glow), transparent 36%),
    radial-gradient(circle at 92% 92%, rgba(255, 255, 255, 0.055), transparent 28%);
  opacity: 0.9;
  animation: dramaturgy-breathe 8s ease-in-out infinite;
}

.dramaturgy-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 30px;
  pointer-events: none;
}

.dramaturgy-card--honeymoon {
  --stage-glow-x: 78%;
  --stage-glow-y: 18%;
  --stage-glow: rgba(73, 97, 193, 0.2);
  --stage-line: rgba(73, 97, 193, 0.56);
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 0.9fr);
}

.dramaturgy-card--honeymoon .dramaturgy-card__media {
  order: -1;
}

.dramaturgy-card--renewal {
  --stage-glow-x: 18%;
  --stage-glow-y: 86%;
  --stage-glow: rgba(218, 150, 75, 0.18);
  --stage-line: rgba(218, 150, 75, 0.52);
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.98fr);
}

.dramaturgy-card__content,
.dramaturgy-card__media {
  position: relative;
  z-index: 1;
}

.dramaturgy-card__content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.dramaturgy-card__content::before {
  content: counter(dramaturgy, decimal-leading-zero);
  position: absolute;
  right: 0;
  top: -0.18em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  font-size: clamp(86px, 12vw, 174px);
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.dramaturgy-card__eyebrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 auto;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dramaturgy-card__eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.dramaturgy-card__eyebrow span:first-child {
  color: #fff;
  border-color: var(--stage-line);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.04), 0 0 26px var(--stage-line);
}

.dramaturgy-card h3 {
  max-width: 680px;
  margin-top: clamp(72px, 12vw, 168px);
  color: #ffffff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
  text-wrap: balance;
}

body[data-stage-title-glow="v1"] .dramaturgy-card {
  --stage-title-line: rgba(218, 82, 82, 0.94);
  --stage-title-line-soft: rgba(218, 82, 82, 0.46);
  --stage-title-fill: rgba(198, 78, 78, 0.2);
  --stage-title-fill-strong: rgba(218, 82, 82, 0.34);
  --stage-title-aura: rgba(218, 82, 82, 0.56);
}

body[data-stage-title-glow="v1"] .dramaturgy-card--honeymoon {
  --stage-title-line: rgba(112, 142, 255, 0.94);
  --stage-title-line-soft: rgba(112, 142, 255, 0.48);
  --stage-title-fill: rgba(73, 97, 193, 0.22);
  --stage-title-fill-strong: rgba(112, 142, 255, 0.36);
  --stage-title-aura: rgba(92, 122, 255, 0.58);
}

body[data-stage-title-glow="v1"] .dramaturgy-card--renewal {
  --stage-title-line: rgba(242, 170, 82, 0.95);
  --stage-title-line-soft: rgba(242, 170, 82, 0.48);
  --stage-title-fill: rgba(218, 150, 75, 0.22);
  --stage-title-fill-strong: rgba(242, 170, 82, 0.36);
  --stage-title-aura: rgba(242, 170, 82, 0.56);
}

body[data-stage-title-glow="v1"] .dramaturgy-card h3 {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  max-width: min(760px, 100%);
  padding: 0.1em 0.05em 0.18em;
  isolation: isolate;
  text-shadow:
    0 0 22px var(--stage-title-aura),
    0 0 68px var(--stage-title-aura),
    0 16px 42px rgba(0, 0, 0, 0.72);
}

body[data-stage-title-glow="v1"] .dramaturgy-card h3::before {
  content: "";
  position: absolute;
  inset: -0.22em -0.18em -0.12em;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 24% 50%, var(--stage-title-fill-strong), transparent 60%),
    radial-gradient(ellipse at 66% 55%, var(--stage-title-fill), transparent 72%);
  filter: blur(13px);
  opacity: 1;
  pointer-events: none;
}

body[data-stage-title-glow="v1"] .dramaturgy-card h3::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 14%;
  bottom: 0.05em;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--stage-title-line), rgba(255, 255, 255, 0.28), transparent);
  box-shadow: 0 0 34px var(--stage-title-line-soft);
  pointer-events: none;
}

body[data-stage-title-glow="v1"] .dramaturgy-card__eyebrow span:first-child {
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.dramaturgy-card__content > p:last-child {
  max-width: 710px;
  margin-top: 26px;
  color: #ffffff;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.38;
}

.dramaturgy-card__media {
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 22px 70px rgba(0, 0, 0, 0.42);
}

.dramaturgy-card--meeting .dramaturgy-card__media {
  align-self: end;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.dramaturgy-card--renewal .dramaturgy-card__media {
  align-self: center;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.dramaturgy-card__media::before,
.dramaturgy-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dramaturgy-card__media::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 46%, rgba(0, 0, 0, 0.52) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 38%);
}

.dramaturgy-card__media::after {
  z-index: 2;
  width: 44%;
  background: linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 100%);
  transform: translateX(-145%) skewX(-12deg);
  animation: dramaturgy-shine 8.5s ease-in-out infinite;
}

.dramaturgy-card__media img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease;
}

.dramaturgy-card--meeting .dramaturgy-card__media img {
  object-position: 50% 50%;
}

.dramaturgy-card--honeymoon .dramaturgy-card__media img {
  object-position: 44% 50%;
}

.dramaturgy-card--renewal .dramaturgy-card__media img {
  object-position: 50% 50%;
}

.dramaturgy-card:hover .dramaturgy-card__media img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.045);
}

@keyframes dramaturgy-breathe {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes dramaturgy-shine {
  0%,
  42% {
    transform: translateX(-145%) skewX(-12deg);
  }

  56%,
  100% {
    transform: translateX(330%) skewX(-12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dramaturgy-card::before,
  .dramaturgy-card__media::after {
    animation: none;
  }

  .dramaturgy-card__media img {
    transition: none;
  }

  .dramaturgy-card:hover .dramaturgy-card__media img {
    transform: none;
  }
}

.section--why-live {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(218, 150, 75, 0.14), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(198, 78, 78, 0.13), transparent 34%),
    linear-gradient(180deg, #000 0%, #080504 48%, #000 100%);
}

.section--why-live::before,
.section--why-live::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section--why-live::before {
  inset: 8% auto auto 58%;
  width: min(760px, 80vw);
  height: min(760px, 80vw);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  transform: translateX(-50%);
}

.section--why-live::after {
  left: -12vw;
  bottom: -18vw;
  width: 36vw;
  height: 36vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(218, 150, 75, 0.18), transparent 66%);
  filter: blur(6px);
}

.why-live {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
}

.why-live__media,
.why-live__copy {
  position: relative;
  z-index: 1;
}

.why-live__media {
  min-height: min(58vw, 620px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.46);
}

.why-live__media::before,
.why-live__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.why-live__media::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, transparent 42%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(circle at 50% 82%, rgba(218, 150, 75, 0.18), transparent 34%);
}

.why-live__media::after {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
}

.why-live__media .media-fit {
  object-position: 50% 52%;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.1s ease;
}

.why-live__media:hover .media-fit {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.035);
}

.why-live__media--mobile {
  display: none;
}

.why-live__copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(6, 6, 6, 0.9);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.why-live__copy::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(198, 78, 78, 0.2), transparent 68%);
  pointer-events: none;
}

.why-live__copy .section-kicker {
  color: #ffffff;
}

.why-live__copy h2 {
  max-width: 720px;
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.93;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.why-live__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-live__list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
}

.why-live__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.why-live__list p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.24;
}

@media (prefers-reduced-motion: reduce) {
  .why-live__media .media-fit {
    transition: none;
  }

  .why-live__media:hover .media-fit {
    transform: none;
  }
}

.section--program-includes {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.94) 100%),
    radial-gradient(circle at 78% 20%, rgba(218, 150, 75, 0.18), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(198, 78, 78, 0.13), transparent 30%),
    linear-gradient(180deg, #000 0%, #100905 52%, #000 100%);
}

.section--program-includes::before,
.section--program-includes::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section--program-includes::before {
  inset: 14% auto auto -16vw;
  width: min(720px, 62vw);
  height: min(720px, 62vw);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
}

.section--program-includes::after {
  right: -12vw;
  bottom: 5%;
  width: min(520px, 44vw);
  height: min(520px, 44vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(218, 150, 75, 0.14), transparent 66%);
  filter: blur(8px);
}

.program-includes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 4.8vw, 72px);
  align-items: center;
}

.program-includes__head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.program-includes__head h2 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.program-includes__head > p {
  max-width: 430px;
  color: #ffffff;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.34;
}

.program-includes__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.78fr);
  grid-template-rows: 270px 170px 210px;
  gap: 16px;
  min-height: 650px;
}

.program-includes__visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% 7% 9%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(218, 150, 75, 0.18), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.program-includes__photo {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.program-includes__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, transparent 48%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 28%);
  pointer-events: none;
}

.program-includes__photo--hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  border-radius: 34px;
}

.program-includes__photo--tea {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  z-index: 3;
  margin: 42px 0 0 8px;
}

.program-includes__photo--brooms {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  z-index: 2;
  margin: 0 28px 22px 38px;
}

.program-includes__photo .media-fit {
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.1s ease;
}

.program-includes__photo--hero .media-fit {
  object-position: 50% 58%;
}

.program-includes__photo--tea .media-fit {
  object-position: 58% 50%;
}

.program-includes__photo--brooms .media-fit {
  object-position: 50% 52%;
}

.program-includes__photo:hover .media-fit {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.035);
}

.program-includes__list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: includes;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.program-includes__list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(16px, 2vw, 24px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.program-includes__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(218, 150, 75, 0.46);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  letter-spacing: 0.12em;
  background: rgba(218, 150, 75, 0.08);
}

.program-includes__list p {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(17px, 1.42vw, 21px);
  line-height: 1.3;
}

@media (prefers-reduced-motion: reduce) {
  .program-includes__photo .media-fit {
    transition: none;
  }

  .program-includes__photo:hover .media-fit {
    transform: none;
  }
}

.section--program-price {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  color: #ffffff;
  background:
    linear-gradient(180deg, #000000 0%, #070301 48%, #000000 100%);
}

.section--program-price * {
  color: #ffffff;
}

.program-price {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: 44px;
  align-items: stretch;
}

.program-price__visual {
  position: relative;
  min-height: 720px;
  height: min(78vw, 760px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #100805;
}

.program-price__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.28) 44%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 46%, rgba(0, 0, 0, 0.46) 100%);
  pointer-events: none;
}

.program-price__visual .media-fit {
  height: 100%;
  object-position: 45% 50%;
  filter: saturate(0.92) contrast(1.06) brightness(0.86);
}

.program-price__infographic {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 62px 68px 54px;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.program-price__title {
  width: max-content;
  max-width: 100%;
  margin: 76px auto 0;
  text-align: left;
}

.program-price__title .section-kicker {
  position: absolute;
  top: 34px;
  left: 42px;
  margin: 0;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.16em;
}

.program-price__title h2 {
  display: grid;
  gap: 8px;
  color: #ffffff;
  line-height: 1.02;
  letter-spacing: 0;
}

.program-price__title-prefix {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.program-price__title-name {
  display: block;
  font-size: 58px;
  line-height: 1;
  white-space: nowrap;
}

.program-price__facts {
  display: grid;
  margin: auto 0 0;
  padding: 0;
}

.program-price__facts div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.44);
}

.program-price__facts div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
}

.program-price__facts dt,
.program-price__facts dd {
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0;
}

.program-price__facts dd {
  text-align: right;
}

.program-price__note {
  max-width: 390px;
  margin: 16px 0 0 auto;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: right;
}

.program-price__booking {
  display: grid;
  align-content: center;
  gap: 32px;
  padding: 48px 0 48px 54px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.program-price__booking-head {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.program-price__booking-head .section-kicker {
  margin: 0;
}

.program-price__booking-head h2 {
  max-width: 520px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
}

.main-site-booking-form {
  display: grid;
  gap: 12px;
  min-width: 0;
  width: min(100%, 430px);
}

.main-site-booking-form__field {
  position: relative;
  display: block;
  min-width: 0;
}

.main-site-booking-form__field > span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.main-site-booking-form__field input {
  box-sizing: border-box !important;
  display: block;
  max-width: 100%;
  width: 100%;
  height: 68px;
  padding: 0 26px;
  border: 1px solid #505050;
  border-radius: 100px;
  color: #ffffff;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 68px;
  letter-spacing: 0;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  appearance: none;
}

.main-site-booking-form__field input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.main-site-booking-form__field input:focus {
  border-color: rgba(255, 255, 255, 0.78);
  background-color: rgba(255, 255, 255, 0.03);
}

.main-site-booking-form__checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 4px 0 14px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.38;
  letter-spacing: 0;
}

.main-site-booking-form__checkbox input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #4961c1;
}

.main-site-booking-form__checkbox a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.main-site-booking-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box !important;
  max-width: 100%;
  width: 290px;
  height: 68px;
  padding: 0 20px;
  border: 0;
  border-radius: 100px;
  color: #ffffff;
  background-image: linear-gradient(0.125turn, rgba(198, 78, 78, 1) 0%, rgba(73, 97, 193, 1) 100%);
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: background-image 0.2s ease, transform 0.2s ease;
}

.main-site-booking-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.main-site-booking-form__submit:hover,
.main-site-booking-form__submit:focus-visible {
  background-image: linear-gradient(0.625turn, rgba(198, 78, 78, 1) 0%, rgba(73, 97, 193, 1) 100%);
  transform: translateY(-1px);
}

.main-site-booking-form__status {
  color: #ffffff;
  min-height: 20px;
}

.section--program-price .booking-form__status,
.section--program-price .booking-form__status.is-error,
.section--program-price .booking-form__status.is-success {
  color: #ffffff;
}

.certificates-grid,
.booking-layout,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.location-grid {
  grid-template-areas: "map copy";
  align-items: stretch;
}

.location-map {
  grid-area: map;
}

.location-copy {
  grid-area: copy;
}

.certificates-panel,
.certificate-card,
.review-card,
.booking-form,
.location-copy,
.location-map,
.booking-sidecard {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.certificates-panel,
.booking-sidecard {
  padding: 22px;
}

.certificates-panel__title {
  margin-bottom: 14px;
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.benefits-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.benefits-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-image: var(--gradient);
}

.benefits-list--compact {
  gap: 10px;
}

.certificates-copy {
  display: grid;
  gap: 18px;
}

.certificates-tagline {
  max-width: 440px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.certificates-actions,
.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.certificate-card {
  overflow: hidden;
}

.certificate-card .media-fit {
  aspect-ratio: 0.92;
}

.certificate-card__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.certificate-card__body span {
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.certificate-card__body strong {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.96;
}

.certificate-card__body p {
  color: var(--muted);
}

.booking-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.booking-sidecard {
  display: grid;
  gap: 10px;
  align-content: start;
}

.booking-sidecard p {
  color: var(--muted-soft);
}

.booking-sidecard a {
  font-size: 22px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.booking-sidecard span {
  color: var(--muted);
}

.booking-form {
  padding: 24px;
}

.booking-form__stack {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
}

.field span {
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.52);
}

.field--full {
  margin-top: 16px;
}

.field--checkbox {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 18px;
}

.field--checkbox input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  border-radius: 6px;
  accent-color: #7d8edc;
}

.field--checkbox span {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.field--checkbox a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-form__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.booking-form__status {
  color: var(--muted-soft);
  font-size: 14px;
}

.booking-form__status.is-error {
  color: #f1a1a1;
}

.booking-form__status.is-success {
  color: #a9d7b8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.review-card__source {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted-soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--stroke);
}

.review-card__text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.review-card__author {
  font-size: 22px;
  line-height: 1.04;
}

.reviews-actions {
  margin-top: 24px;
}

.native-tilda-blocks--reviews .tn-elem[data-field-filewidth-value="1902"][data-field-fileheight-value="334"] .tn-atom {
  background-image: url('/images/tild6162-3331-4133-a532-333239326239__group_2087328992.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.native-tilda-blocks--reviews .tn-elem[data-field-filewidth-value="1902"][data-field-fileheight-value="334"] .tn-atom__img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  visibility: visible;
}

.location-map {
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.location-copy {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.location-meta {
  display: grid;
  gap: 8px;
}

.location-meta p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.location-meta a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 12px 0 40px;
}

.site-footer--tilda {
  padding: 0;
  background: #000;
}

.site-footer--tilda .r {
  overflow: visible;
}

.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276189683480"] .tn-atom,
.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276192418570"] .tn-atom,
.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276194914280"] .tn-atom {
  position: relative;
  overflow: hidden;
  color: transparent !important;
}

.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276189683480"] .tn-atom::before,
.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276192418570"] .tn-atom::before,
.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276194914280"] .tn-atom::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276189683480"] .tn-atom::before {
  background-image: url('/images/tild6566-3236-4938-b233-396530646330__social.svg');
}

.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276192418570"] .tn-atom::before {
  width: 22px;
  height: 22px;
  background-image: url('/images/tild3136-3630-4238-a565-643861316164__whatsapp.svg');
}

.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276194914280"] .tn-atom::before {
  background-image: url('/images/tild3437-6364-4666-b162-313864626261__telegram_1.svg');
}

.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276190721190"],
.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276193415630"],
.site-footer--tilda #rec1899412941 .tn-elem[data-elem-id="176051276195792800"] {
  display: none !important;
}

.footer-links,
.footer-bottom div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid var(--stroke);
  color: var(--muted-soft);
  font-size: 14px;
  padding: 22px 0;
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.js-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

[data-space-parallax] {
  transform: translate3d(0, var(--space-parallax-shift, 0px), 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-enhanced .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-space-parallax] {
    transform: none !important;
  }
}

@media (max-width: 1199px) {
  .header-pill--nav {
    width: clamp(366px, 38vw, 420px);
    min-width: 0;
  }

  .header-nav-link {
    height: 58px;
    font-size: 13px;
    line-height: 1.1;
  }

  .header-pill--nav > .header-nav-link:nth-of-type(1),
  .header-pill--nav > .header-nav-link:nth-of-type(2) {
    flex: 0.9 1 0;
    min-width: 64px;
    width: auto;
  }

  .header-pill--nav > .header-nav-link:nth-of-type(3) {
    flex: 0.75 1 0;
    min-width: 54px;
    width: auto;
  }

  .header-pill--nav > .header-nav-link:nth-of-type(4) {
    flex: 1.45 1 0;
    min-width: 102px;
    width: auto;
  }

  .header-menu-toggle {
    flex: 0 0 78px;
    width: 78px;
  }

  .header-menu-toggle span {
    left: 24px;
    right: 24px;
  }

  .brand-link {
    top: 42px;
    width: 146px;
    height: 37px;
  }

  .brand-link__dot {
    top: -12px;
    left: 68px;
    width: 28px;
    height: 28px;
  }

  .button--header-cta {
    width: 250px;
    padding: 0 22px;
    font-size: 13px;
  }

  .section-head,
  .certificates-grid,
  .booking-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-areas:
      "copy"
      "map";
    align-items: start;
  }

  .location-map {
    min-height: 420px;
    height: 420px;
  }

  .location-map iframe {
    min-height: 420px;
    height: 420px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 24px;
  }

  .hero__aside {
    width: min(100%, 620px);
  }

  .program-price {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 28px;
  }

  .program-price__visual {
    min-height: 620px;
    height: 640px;
  }

  .program-price__booking {
    padding: 34px 0 34px 32px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .program-price__booking-head h2 {
    font-size: 44px;
  }

  .program-price__title-prefix {
    font-size: 34px;
  }

  .program-price__title-name {
    font-size: 52px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    position: static;
    width: var(--container);
    min-height: auto;
    margin: 0 auto;
    padding: 0;
    grid-template-columns: 1fr auto;
    display: grid;
    align-items: center;
  }

  .brand-link {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    justify-self: start;
    width: 146px;
    height: 36px;
    line-height: 0;
    transform: none;
  }

  .brand-link__dot {
    top: -12px;
    left: 58px;
    width: 26px;
    height: 26px;
  }

  :root[data-hero-version="v2"] .brand-link__dot {
    left: 58px;
  }

  .mobile-menu-toggle {
    position: relative;
    grid-column: 2;
    justify-self: end;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background-image: var(--gradient);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    position: absolute;
    left: 16px;
    right: 16px;
    height: 1.3px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-toggle span:first-child {
    top: 23px;
  }

  .mobile-menu-toggle span:last-child {
    top: 31px;
  }

  .mobile-menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-menu-overlay {
    align-items: flex-start;
    justify-content: center;
    padding-top: 72px;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(10px);
  }

  .site-menu-overlay::after {
    display: none;
  }

  .site-menu-overlay__close {
    top: 12px;
    right: 14px;
    font-size: 34px;
  }

  .site-menu-overlay__inner {
    width: var(--container);
    position: static;
    top: auto;
    left: auto;
    margin: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "actions"
      "meta";
    grid-template-rows: auto auto auto;
    gap: 20px;
    min-height: auto;
    height: auto;
    transform: translateY(18px);
  }

  .site-menu-overlay.is-open .site-menu-overlay__inner {
    transform: translateY(0);
  }

  .site-menu-overlay__nav {
    gap: 14px;
  }

  .site-menu-overlay__nav a {
    font-size: clamp(24px, 6.2vw, 32px);
    line-height: 1.06;
  }

  .site-menu-overlay__meta {
    grid-area: meta;
    position: static;
    align-self: auto;
    justify-self: start;
    margin-left: 0;
    min-width: 0;
    max-width: 320px;
  }

  .site-menu-overlay__actions {
    grid-area: actions;
    position: static;
    align-self: auto;
    justify-self: stretch;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "cta"
      "phone"
      "socials";
    gap: 14px;
    max-width: none;
  }

  .site-menu-overlay__actions > .button--primary {
    width: 100%;
    min-height: 62px;
    font-size: 14px;
  }

  .site-menu-overlay__phone {
    width: 100%;
    min-height: 62px;
    font-size: 18px;
  }

  .site-menu-overlay__socials a {
    width: 56px;
    height: 56px;
  }

  .section {
    padding: 72px 0;
  }

  .section--program-price {
    padding: 74px 0 82px;
  }

  .program-price {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .program-price__visual {
    min-height: 610px;
    height: 620px;
  }

  .program-price__infographic {
    padding: 44px 42px 42px;
  }

  .program-price__title {
    margin-top: 64px;
  }

  .program-price__title .section-kicker {
    top: 28px;
    left: 34px;
    font-size: 9px;
  }

  .program-price__title-prefix {
    font-size: 30px;
  }

  .program-price__title-name {
    font-size: 44px;
    line-height: 1.04;
  }

  .program-price__booking {
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .program-price__facts dt,
  .program-price__facts dd {
    font-size: 22px;
  }

  .program-price__note {
    font-size: 19px;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 132px 0 22px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero__backdrop {
    display: block;
  }

  .hero__backdrop-image {
    object-position: center 28%;
    filter: saturate(1) brightness(1);
  }

  .hero__overlay {
    background:
      radial-gradient(circle at 16% 20%, rgba(67, 85, 168, 0.05), transparent 34%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.06) 54%, rgba(0, 0, 0, 0.09) 100%);
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    display: none;
  }

  .hero__copy {
    max-width: min(100%, 760px);
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.42) 100%),
      rgba(8, 8, 8, 0.36);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
  }

  .hero__home-link {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hero__home-link-mark {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .hero__title {
    font-size: clamp(42px, 10.4vw, 74px);
  }

  .hero__subtitle {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.38;
  }

  :root[data-hero-version="v2"] .hero__subtitle {
    font-size: 17px;
    line-height: 1.26;
  }

  .hero__actions {
    margin-top: 18px;
    gap: 12px;
  }

  .hero__actions .button {
    min-height: 54px;
    min-width: 0;
    padding: 0 24px;
    font-size: 15px;
  }

  :root[data-hero-version="v1"] .brand-link {
    width: 146px;
    height: 36px;
  }

  :root[data-hero-version="v1"] .brand-link__dot {
    left: 58px;
    width: 26px;
    height: 26px;
  }

  :root[data-hero-version="v1"] .mobile-menu-toggle {
    width: 56px;
    height: 56px;
  }

  :root[data-hero-version="v1"] .mobile-menu-toggle span {
    left: 16px;
    right: 16px;
  }

  :root[data-hero-version="v1"] .mobile-menu-toggle span:first-child {
    top: 23px;
  }

  :root[data-hero-version="v1"] .mobile-menu-toggle span:last-child {
    top: 31px;
  }

  :root[data-hero-version="v1"] .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 100px 0 30px;
  }

  :root[data-hero-version="v1"] .hero__backdrop-image {
    filter: saturate(0.94) brightness(0.72);
  }

  :root[data-hero-version="v1"] .hero__overlay {
    background:
      radial-gradient(circle at 16% 20%, rgba(67, 85, 168, 0.18), transparent 34%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.52) 54%, rgba(0, 0, 0, 0.68) 100%);
  }

  :root[data-hero-version="v1"] .hero__layout {
    gap: 20px;
  }

  :root[data-hero-version="v1"] .hero__aside {
    display: grid;
    align-content: start;
    justify-self: stretch;
    width: 100%;
  }

  :root[data-hero-version="v1"] .hero__copy {
    padding: 24px 22px;
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.72) 100%),
      rgba(6, 6, 6, 0.72);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(12px);
  }

  :root[data-hero-version="v1"] .hero__title {
    font-size: clamp(44px, 11.6vw, 62px);
  }

  :root[data-hero-version="v1"] .hero__subtitle {
    font-size: clamp(16px, 4.8vw, 21px);
    line-height: 1.1;
  }

  :root[data-hero-version="v1"] .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 24px;
    gap: 14px;
  }

  :root[data-hero-version="v1"] .hero__actions .button {
    width: 100%;
    min-height: 58px;
  }

  :root[data-hero-version="v1"] .hero-card--main {
    width: 100%;
    border-radius: 30px;
    aspect-ratio: 1.02;
  }

  .gallery-strip {
    gap: 6px;
  }

  .gallery-card {
    flex-basis: min(86vw, 400px);
  }

  .gallery-card--compact {
    flex-basis: min(78vw, 330px);
  }

  .gallery-card--panorama {
    flex-basis: min(96vw, 560px);
  }

  .gallery-card--portrait {
    flex-basis: min(76vw, 320px);
  }

  .gallery-card--wide {
    flex-basis: min(92vw, 500px);
  }

  .gallery-card--medium {
    flex-basis: min(86vw, 430px);
  }

  .gallery-card .media-fit {
    height: 350px;
  }

  .gallery-card--portrait .media-fit {
    height: 410px;
  }

  .space-layout {
    gap: 60px;
  }

  .space-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .space-column--right {
    padding-top: 0;
  }

  .space-intro {
    max-width: none;
    margin: 0 0 22px;
  }

  .space-intro h2 {
    font-size: clamp(30px, 6.2vw, 40px);
  }

  .space-intro p {
    max-width: 360px;
  }

  .space-column .space-module + .space-module {
    margin-top: 18px;
  }

  .space-column--left .space-module--portal {
    margin-bottom: 0;
  }

  .space-module {
    min-height: min(78vw, 520px);
  }

  .space-module__copy {
    width: min(92%, 308px);
    padding: 0 18px 18px;
  }

  .space-module__copy h3 {
    font-size: clamp(28px, 6.4vw, 36px);
  }

  .space-module__copy p {
    font-size: 13px;
  }

  .space-room {
    min-height: min(82vw, 620px);
  }

  .space-room__copy {
    width: min(90%, 304px);
    margin: 40px 20px 0 0;
  }

  .space-room__copy h3 {
    font-size: clamp(28px, 6.4vw, 36px);
  }

  .space-room__copy p {
    font-size: 13px;
  }

  .dramaturgy-head {
    margin-bottom: 32px;
  }

  .dramaturgy-head h2 {
    font-size: clamp(38px, 8.4vw, 64px);
  }

  .dramaturgy-flow {
    gap: 20px;
  }

  .dramaturgy-flow::before {
    top: 28px;
    bottom: 28px;
    left: 20px;
  }

  .dramaturgy-card,
  .dramaturgy-card--honeymoon {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
    border-radius: 32px;
  }

  .dramaturgy-card--honeymoon .dramaturgy-card__media {
    order: initial;
  }

  .dramaturgy-card h3 {
    margin-top: 84px;
  }

  .dramaturgy-card__content > p:last-child {
    max-width: none;
  }

  .dramaturgy-card__media {
    height: 360px;
    min-height: 360px;
    border-radius: 24px;
  }

  .dramaturgy-card--meeting .dramaturgy-card__media {
    align-self: initial;
    height: auto;
    min-height: 0;
  }

  .dramaturgy-card--renewal .dramaturgy-card__media {
    align-self: initial;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .section--why-live {
    padding: 72px 0;
  }

  .why-live {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-live__copy {
    order: -1;
    padding: 28px;
    border-radius: 32px;
  }

  .why-live__media--desktop {
    display: none;
  }

  .why-live__media--mobile {
    display: block;
    margin: 0 0 24px;
  }

  .why-live__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 32px;
  }

  .why-live__media::after {
    border-radius: 22px;
  }

  .program-includes {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .program-includes__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .program-includes__head > p {
    max-width: 640px;
  }

  .program-includes__visual {
    min-height: 560px;
    grid-template-rows: 230px 150px 180px;
  }
}

@media (max-width: 639px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100vw - 30px, 1200px);
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .section--stages {
    padding: 64px 0;
  }

  .dramaturgy-head {
    margin-bottom: 24px;
  }

  .dramaturgy-head h2 {
    font-size: 36px;
    line-height: 0.96;
  }

  .dramaturgy-flow {
    gap: 16px;
  }

  .dramaturgy-flow::before {
    display: none;
  }

  .dramaturgy-card,
  .dramaturgy-card--honeymoon {
    gap: 18px;
    padding: 16px;
    border-radius: 26px;
  }

  .dramaturgy-card::after {
    inset: 8px;
    border-radius: 20px;
  }

  .dramaturgy-card__content::before {
    top: -0.12em;
    right: -2px;
    font-size: 94px;
  }

  .dramaturgy-card__eyebrow {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .dramaturgy-card__eyebrow span {
    min-height: 28px;
    padding: 0 9px;
  }

  .dramaturgy-card h3 {
    margin-top: 64px;
    font-size: 34px;
    line-height: 0.96;
  }

  .dramaturgy-card__content > p:last-child {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.42;
  }

  .dramaturgy-card__media {
    height: min(94vw, 350px);
    min-height: min(94vw, 350px);
    border-radius: 20px;
  }

  .dramaturgy-card--meeting .dramaturgy-card__media {
    align-self: initial;
    height: auto;
    min-height: 0;
  }

  .dramaturgy-card--renewal .dramaturgy-card__media {
    align-self: initial;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .section--why-live {
    padding: 64px 0;
  }

  .why-live {
    gap: 16px;
  }

  .why-live__copy {
    padding: 18px;
    border-radius: 26px;
  }

  .why-live__copy h2 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 0.96;
  }

  .why-live__media--mobile {
    margin-bottom: 18px;
  }

  .why-live__list {
    gap: 10px;
  }

  .why-live__list li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .why-live__list span {
    width: 42px;
    height: 42px;
  }

  .why-live__list p {
    font-size: 16px;
    line-height: 1.3;
  }

  .why-live__media {
    border-radius: 24px;
  }

  .why-live__media::after {
    inset: 10px;
    border-radius: 16px;
  }

  .section--program-includes {
    padding: 64px 0;
  }

  .program-includes {
    gap: 24px;
  }

  .program-includes__head {
    gap: 14px;
  }

  .program-includes__head h2 {
    font-size: 36px;
    line-height: 0.96;
  }

  .program-includes__head > p {
    font-size: 15px;
    line-height: 1.42;
  }

  .program-includes__visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 156px 156px;
    gap: 10px;
    min-height: 0;
  }

  .program-includes__photo,
  .program-includes__photo--hero {
    border-radius: 22px;
  }

  .program-includes__photo--hero {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .program-includes__photo--tea {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    margin: 0;
  }

  .program-includes__photo--brooms {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    margin: 0;
  }

  .program-includes__list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
  }

  .program-includes__list span {
    width: 36px;
    height: 36px;
    font-size: 10px;
  }

  .program-includes__list p {
    font-size: 14px;
    line-height: 1.36;
  }

  .section--program-price {
    padding: 64px 0 72px;
  }

  .program-price {
    gap: 26px;
  }

  .program-price__visual {
    min-height: 560px;
    height: 560px;
    border-radius: 4px;
  }

  .program-price__visual .media-fit {
    object-position: 48% 50%;
  }

  .program-price__infographic {
    padding: 30px 20px 28px;
  }

  .program-price__title {
    width: max-content;
    max-width: 270px;
    margin-top: 58px;
  }

  .program-price__title .section-kicker {
    top: 20px;
    left: 18px;
    font-size: 9px;
  }

  .program-price__title-prefix {
    font-size: 24px;
  }

  .program-price__title-name {
    font-size: 34px;
    line-height: 1.06;
  }

  .program-price__facts div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .program-price__facts dt,
  .program-price__facts dd {
    font-size: 18px;
    line-height: 1.18;
  }

  .program-price__facts dd {
    text-align: left;
  }

  .program-price__note {
    max-width: none;
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.24;
    text-align: left;
  }

  .program-price__booking {
    gap: 22px;
    padding-top: 26px;
  }

  .program-price__booking-head h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .main-site-booking-form {
    width: 100%;
  }

  .main-site-booking-form__field input {
    height: 60px;
    padding: 0 22px;
    font-size: 12px;
    line-height: 60px;
  }

  .main-site-booking-form__checkbox {
    gap: 10px;
    margin: 2px 0 12px;
    font-size: 10px;
    line-height: 1.35;
  }

  .main-site-booking-form__checkbox input {
    width: 16px;
    height: 16px;
  }

  .main-site-booking-form__submit {
    height: 60px;
    width: 100%;
    font-size: 15px;
    line-height: 1.1;
  }

  .button {
    width: 100%;
  }

  .booking-form__actions .button {
    font-size: 15px;
    line-height: 1.1;
  }

  :root[data-hero-version="v2"] .site-header {
    padding: 0;
  }

  :root[data-hero-version="v2"] .header-inner {
    position: relative;
    min-height: 65px;
    padding-top: 15px;
    align-items: flex-start;
  }

  :root[data-hero-version="v2"] .brand-link {
    width: 120px;
    height: 30px;
  }

  :root[data-hero-version="v2"] .brand-link__dot {
    top: -8px;
    left: 58px;
    width: 23px;
    height: 23px;
  }

  :root[data-hero-version="v2"] .mobile-menu-toggle {
    width: 50px;
    height: 50px;
  }

  :root[data-hero-version="v2"] .mobile-menu-toggle span {
    left: 13px;
    right: 13px;
  }

  :root[data-hero-version="v2"] .mobile-menu-toggle span:first-child {
    top: 20px;
  }

  :root[data-hero-version="v2"] .mobile-menu-toggle span:last-child {
    top: 28px;
  }

  .hero__actions,
  .certificates-actions,
  .location-actions {
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 122px 0 20px;
  }

  :root[data-hero-version="v2"] .hero {
    padding: 96px 0 10px;
  }

  .hero__copy {
    width: 100%;
    padding: 16px 16px;
    border-radius: 20px;
    box-sizing: border-box;
  }

  .hero__home-link {
    margin-bottom: 10px;
  }

  :root[data-hero-version="v2"] .hero__copy {
    padding: 14px 14px;
  }

  .hero__title {
    font-size: clamp(38px, 11.8vw, 56px);
  }

  .hero__subtitle {
    margin-top: 12px;
    font-size: clamp(11px, 3.5vw, 14px);
    line-height: 1.36;
  }

  :root[data-hero-version="v2"] .hero__subtitle {
    font-size: 17px;
    line-height: 1.18;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 18px;
    min-width: 0;
  }

  :root[data-hero-version="v2"] .hero__actions {
    margin-top: 14px;
    gap: 10px;
  }

  .hero__actions .button {
    min-height: 52px;
    width: 100%;
    max-width: 100%;
    inline-size: 100%;
    max-inline-size: 100%;
    min-width: 0;
    font-size: 15px;
  }

  .hero__actions > .button,
  .certificates-actions > .button,
  .location-actions > .button {
    display: flex;
    width: 100%;
    max-width: 100%;
    inline-size: 100%;
    max-inline-size: 100%;
    min-width: 0;
    align-self: stretch;
    justify-self: stretch;
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
  }

  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .location-copy {
    width: 100%;
    box-sizing: border-box;
  }

  :root[data-hero-version="v2"] .hero__actions .button {
    min-height: 50px;
  }

  :root[data-hero-version="v1"] .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 92px 0 24px;
  }

  :root[data-hero-version="v1"] .hero__copy {
    padding: 18px 16px;
    border-radius: 28px;
  }

  :root[data-hero-version="v1"] .hero__title {
    font-size: clamp(42px, 12.6vw, 56px);
  }

  :root[data-hero-version="v1"] .hero__subtitle {
    font-size: clamp(16px, 4.7vw, 18px);
    line-height: 1.1;
  }

  :root[data-hero-version="v1"] .hero__actions {
    margin-top: 24px;
  }

  :root[data-hero-version="v1"] .hero__actions .button {
    min-height: 56px;
  }

  .gallery-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-card {
    flex-basis: 90vw;
  }

  .gallery-card--compact {
    flex-basis: 80vw;
  }

  .gallery-card--panorama {
    flex-basis: 96vw;
  }

  .gallery-card--portrait {
    flex-basis: 78vw;
  }

  .gallery-card--wide {
    flex-basis: 94vw;
  }

  .gallery-card--medium {
    flex-basis: 88vw;
  }

  .gallery-card .media-fit {
    height: 320px;
  }

  .gallery-card--portrait .media-fit {
    height: 380px;
  }

  .space-layout {
    gap: 50px;
  }

  .space-columns {
    gap: 16px;
  }

  .space-intro {
    gap: 12px;
    margin-bottom: 16px;
  }

  .space-intro h2 {
    font-size: clamp(26px, 8.2vw, 34px);
  }

  .space-intro p {
    max-width: none;
    font-size: 13px;
  }

  .space-column .space-module + .space-module {
    margin-top: 12px;
  }

  .space-module {
    min-height: 350px;
  }

  .space-module__copy {
    width: 100%;
    padding: 0 14px 16px;
    gap: 10px;
  }

  .space-module__copy h3 {
    font-size: clamp(24px, 8.8vw, 30px);
  }

  .space-module__copy p {
    font-size: 13px;
  }

  .space-room {
    align-items: flex-end;
    min-height: 496px;
  }

  .space-room__media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.9) 88%);
  }

  .space-room__copy {
    width: calc(100% - 30px);
    margin: 0 15px 14px;
    gap: 10px;
  }

  .space-room__copy h3 {
    font-size: clamp(24px, 8.8vw, 30px);
  }

  .space-room__copy p {
    font-size: 13px;
  }

  .site-menu-overlay__close {
    width: 36px;
    height: 36px;
    font-size: 32px;
  }

  .site-menu-overlay__nav a {
    font-size: 28px;
  }

  .site-menu-overlay__meta {
    gap: 4px;
  }

  .site-menu-overlay__meta p:first-child {
    font-size: 14px;
    line-height: 18px;
  }

  .site-menu-overlay__meta p:last-child {
    font-size: 12px;
    line-height: 16px;
  }

  .site-menu-overlay__phone {
    min-height: 56px;
    font-size: 18px;
  }

  .site-menu-overlay__socials {
    gap: 10px;
  }

  .site-menu-overlay__socials a {
    width: 50px;
    height: 50px;
  }

  .booking-form,
  .location-copy,
  .review-card {
    padding: 20px;
  }

  .location-map {
    min-height: 320px;
    height: 320px;
  }

  .location-map iframe {
    min-height: 320px;
    height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* par-dlya-par: typography for the space section intro */
.section--space-tilda .tn-elem[data-elem-type="text"] .tn-atom {
  color: #ffffff !important;
  opacity: 1 !important;
}

.aura-gallery-fallback {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b0b0b;
}

.aura-gallery-fallback__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  animation: aura-gallery-fallback-fade 9s infinite;
}

.aura-gallery-fallback__slide:first-child {
  opacity: 1;
}

.aura-gallery-fallback__slide:only-child {
  animation: none;
}

@keyframes aura-gallery-fallback-fade {
  0%,
  28% {
    opacity: 1;
  }

  34%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#rec1899412441 .tn-elem[data-elem-id="175757419364771890"] .tn-atom {
  font-size: 50px !important;
}

#rec1899412441 .tn-elem[data-elem-id="175818375566359090"] .tn-atom {
  font-size: 18px !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

@media screen and (max-width: 639px) {
  :root[data-hero-version="v2"] .hero {
    min-height: 100dvh;
    padding-bottom: max(42px, env(safe-area-inset-bottom));
  }

  :root[data-hero-version="v2"] .hero__layout {
    margin-bottom: clamp(64px, 14svh, 118px);
  }

  #rec1899412441 .tn-elem[data-elem-id="175757419364771890"] {
    top: 14px !important;
    left: 15px !important;
    width: 290px !important;
    height: auto !important;
  }

  #rec1899412441 .tn-elem[data-elem-id="175757419364771890"] .tn-atom {
    display: block !important;
    width: 290px !important;
    max-width: calc(100vw - 30px) !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
  }

  #rec1899412441 .tn-elem[data-elem-id="175818375566359090"] {
    top: 124px !important;
    left: 15px !important;
    width: 290px !important;
    height: auto !important;
  }

  #rec1899412441 .tn-elem[data-elem-id="175818375566359090"] .tn-atom {
    display: block !important;
    width: 290px !important;
    max-width: calc(100vw - 30px) !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  #rec1899412441 .tn-elem[data-elem-id="175818321580240350"] {
    top: 808px !important;
    height: 390px !important;
  }

  #rec1899412441 .tn-elem[data-elem-id="175818314660627590"] {
    top: 1906px !important;
    height: 352px !important;
  }

  #rec1899412441 .tn-elem[data-elem-id="175818325278465940"] {
    top: 258px !important;
    height: 414px !important;
  }

  #rec1899412441 .tn-elem[data-elem-id="175818309879443100"] {
    top: 1370px !important;
    height: 410px !important;
  }

  #rec1899412451 .tn-elem[data-elem-id="175818334552164040"] {
    top: 30px !important;
    height: 350px !important;
  }
}

@media (max-width: 959px) {
  .hero__copy,
  .hero__home-link,
  .hero__title,
  .hero__subtitle,
  .hero__actions .button {
    font-family: var(--font-fast);
  }

  .hero__copy {
    backdrop-filter: none;
  }
}
