:root {
  --bg: #131921;
  --bg-deep: #070a0e;
  --card: #090d12;
  --card-soft: #10151c;
  --gold: #f5d775;
  --gold-muted: #d8bd70;
  --text: #fff;
  --muted: rgba(255, 255, 255, .68);
  --line: rgba(255, 255, 255, .15);
  --container: 1150px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #111;
  background: var(--gold);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.container,
.container-wide {
  width: min(var(--container), calc(100% - 30px));
  margin-inline: auto;
}

.container-wide {
  width: min(1150px, calc(100% - 40px));
}

.section-anchor {
  scroll-margin-top: 24px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #060506;
}

.hero__background {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__background {
  background: url("/assets/images/hero/hero.webp") center 54% / cover no-repeat;
  transform: scale(1.015);
}

.topbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(0, 0, 0, .16);
  justify-self: start;
  width: max-content;
}

.desktop-nav a,
.topbar__socials a {
  transition: color .2s ease, opacity .2s ease;
}

.desktop-nav a {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
}

.desktop-nav a::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 4px;
  background: var(--gold);
  content: "";
  transition: width .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.desktop-nav a:hover,
.topbar__socials a:hover {
  color: var(--gold);
}

.age-note {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  font-weight: 200;
  white-space: nowrap;
}

.topbar__socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.social-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 62px);
  padding: 60px 0 84px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(46px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.16;
}

.hero__lead {
  margin: 0;
  color: var(--gold-muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.37;
  text-transform: uppercase;
}

.hero__location {
  margin: 4px 0 30px;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
}

.hero__copy {
  margin: 0 0 28px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  background: rgba(92, 84, 82, .85);
  font-size: 15px;
  font-weight: 500;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button:hover {
  border-color: var(--gold);
  color: #111;
  background: var(--gold);
  transform: translateY(-2px);
}

.button--card {
  gap: 12px;
  border-color: rgba(245, 215, 117, .35);
  color: #17130a;
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.button--card span {
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}

.button--card:hover span {
  transform: translateX(4px);
}

.button--hero {
  min-width: 158px;
  margin-top: 0;
  border-radius: 999px;
}

.button--hero span {
  margin-left: 10px;
  font-size: 17px;
}

.button--hero-secondary {
  color: var(--gold);
  background: rgba(0, 0, 0, .28);
}

.programs,
.schedule-info,
.master,
.booking,
.gallery,
.contacts,
.footer {
  background: var(--bg);
}

.programs {
  padding: 94px 0 100px;
}

.schedule-info {
  padding: 82px 0 86px;
  background: var(--bg-deep);
}

.schedule-info__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
}

.schedule-info__copy {
  max-width: 650px;
}

.schedule-info h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 51px);
  font-weight: 200;
  line-height: 1.1;
}

.schedule-info__hours {
  margin: 11px 0 20px;
  color: var(--gold);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: .04em;
}

.schedule-info__hours span {
  color: rgba(255, 255, 255, .38);
}

.schedule-info__copy > p:not(.section-kicker):not(.schedule-info__hours):not(.schedule-info__day-off):not(.schedule-info__welcome) {
  max-width: 590px;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.55;
}

.schedule-info__day-off {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
}

.schedule-info__notice {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: rgba(245, 215, 117, .07);
}

.schedule-info__notice p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.45;
}

.schedule-info__notice p:first-child {
  color: var(--gold);
  font-weight: 500;
}

.schedule-info__welcome {
  margin: 25px 0 0;
  color: var(--gold);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .08em;
}

.schedule-info__media {
  overflow: hidden;
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .24);
}

.schedule-info__media img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  margin-bottom: 56px;
  text-align: center;
}

.section-heading h2,
.master h2,
.booking h2,
.gallery h2,
.contacts h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 200;
  line-height: 1.2;
}

.section-heading h2 {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  font-weight: 300;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 50px;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--card);
  cursor: pointer;
}

.program-card > img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  background: #080a0d;
}

.program-card--master-photo > img {
  object-position: center top;
}

.program-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 30px 30px;
}

.program-card__label {
  margin-bottom: 9px;
  padding: 4px 9px;
  border: 1px solid rgba(245, 215, 117, .38);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 215, 117, .2);
  color: var(--gold-muted);
  font-size: 22px;
  font-style: italic;
  font-weight: 200;
  line-height: 1.37;
}

.program-card h4 {
  margin: 12px 0 7px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
}

.program-card__intro,
.program-card li,
.program-card__note {
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  font-style: italic;
  font-weight: 200;
  line-height: 1.5;
}

.program-card__intro {
  margin: 0 0 8px;
}

.program-card ul {
  margin: 4px 0 12px;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 13px;
}

.program-card li::before {
  position: absolute;
  left: 0;
  content: "–";
}

.program-card__note {
  margin: 5px 0 17px;
  color: rgba(245, 215, 117, .72);
}

.prices,
.extras-list {
  width: 100%;
  margin: 13px 0 20px;
  border-top: 1px solid var(--line);
}

.prices p,
.extras-list p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.35;
}

.prices strong,
.extras-list strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.button--card {
  min-height: 40px;
  padding: 0 21px;
  border-radius: 5px;
  font-size: 14px;
  margin-top: auto;
}

.program-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
  width: 100%;
  gap: 9px;
  margin-top: auto;
}

.program-card__actions .button--card {
  width: 100%;
  margin: 0;
}

.program-card__details {
  display: grid;
  width: 44px;
  min-height: 44px;
  border: 1px solid rgba(245, 215, 117, .42);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(245, 215, 117, .06);
  font-size: 21px;
  place-items: center;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.program-card__details:hover {
  color: #17130a;
  background: var(--gold);
  transform: translateY(-2px);
}

.master {
  padding: 72px 0 86px;
}

.master__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.master h2 {
  margin-bottom: 20px;
}

.master__portrait {
  width: 200px;
  height: 200px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.85) contrast(1.04);
}

.master h3 {
  margin: 0 0 25px;
  font-size: 22px;
  font-weight: 200;
}

.master__story {
  max-width: 780px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  font-weight: 200;
}

.master__story p {
  margin: 0 0 19px;
}

.master__story ul {
  display: inline-block;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  list-style: none;
}

.master__story li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "•";
}

.master__signature {
  color: var(--gold-muted);
  font-style: italic;
}

.master__socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.master__socials a {
  padding: 8px 13px;
  border: 1px solid var(--line);
  font-size: 13px;
  transition: color .2s ease, border-color .2s ease;
}

.master__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.booking {
  padding: 0;
}

.booking__inner {
  max-width: 1150px;
}

.booking h2 {
  margin-bottom: 13px;
  text-align: left;
}

.booking__inner > p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 19px;
}

.booking__selection {
  min-height: 24px;
  margin-top: 7px !important;
  color: var(--gold-muted) !important;
  font-size: 14px !important;
}

.booking-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.booking-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 13px;
  font-size: 15px;
  font-weight: 400;
  transition: color .2s ease;
}

.booking-links a.booking-link--primary {
  position: relative;
  min-width: min(100%, 300px);
  padding: 11px 14px;
  border: 1px solid rgba(245, 215, 117, .42);
  border-radius: 8px;
  color: #17130a;
  background: var(--gold);
}

.booking-links a.booking-link--primary:hover {
  color: #17130a;
  background: #ffe79a;
}

.booking-link--primary .booking-links__icon {
  border-color: rgba(23, 19, 10, .55);
}

.booking-link--primary strong {
  margin-left: auto;
  color: rgba(23, 19, 10, .62);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-links a:hover {
  color: var(--gold);
}

.contacts__booking {
  margin-bottom: 54px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.booking-steps {
  padding: 78px 0 86px;
  background: var(--bg-deep);
}

.section-heading--compact {
  margin-bottom: 38px;
}

.section-heading--compact h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 200;
  text-transform: none;
}

.section-heading--compact .section-kicker {
  margin-bottom: 9px;
}

.booking-steps__grid {
   display: grid;
   grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
   align-items: stretch;
   gap: 28px;
}

.booking-steps__video {
  min-width: 0;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: #080a0d;
}

.booking-steps__video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

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

.booking-step {
  min-height: 190px;
  padding: 24px 25px 25px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(9, 13, 18, .72);
}

.booking-step > span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .1em;
}

.booking-step h3 {
  margin: 25px 0 9px;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
}

.booking-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contacts__booking > p:not(.section-kicker):not(.booking__selection) {
  max-width: 470px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.anchor-alias {
  position: absolute;
  top: -24px;
}

.booking-links__icon {
  display: grid;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-size: 15px;
  font-weight: 500;
}

.gallery {
  padding: 65px 0 77px;
}

.gallery h2 {
  margin-bottom: 60px;
  text-align: center;
}

.gallery-slider {
  position: relative;
}

.gallery-slider__viewport {
  overflow: hidden;
}

.gallery-slider__track {
  display: flex;
  margin: 0 -12px;
  transition: transform .6s var(--ease);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 50%;
  margin: 0;
  padding: 0 12px;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 563 / 354;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  background: #080a0d;
}

.gallery-slider__arrow {
  position: absolute;
  z-index: 2;
  top: calc(50% - 27px);
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0 0 5px;
  border: 0;
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 255, .92);
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}

.gallery-slider__arrow:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.gallery-slider__arrow--prev {
  left: 16px;
}

.gallery-slider__arrow--next {
  right: 16px;
}

.gallery-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
  margin-top: 20px;
}

.gallery-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
}

.gallery-slider__dots button.is-active {
  background: #fff;
}

.contacts {
  padding: 72px 0 74px;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.contacts__copy {
  position: relative;
}

.contacts h2 {
  margin-bottom: 32px;
  text-align: left;
}

.contacts__lead {
  margin: 0 0 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, .73);
  font-size: 18px;
  font-weight: 200;
}

.contacts dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 0;
}

.contacts dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contacts dt {
  color: #fff;
  font-weight: 400;
}

.contacts dd {
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.contacts dd a:hover {
  color: var(--gold);
}

.contacts__map {
  min-height: 450px;
}

.contacts__map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 14px;
  filter: grayscale(.16) saturate(.75);
}

.contacts__map {
  overflow: hidden;
  border-radius: 14px;
}

.footer {
  padding: 28px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.footer nav {
  display: flex;
  gap: 20px;
}

.footer a:hover {
  color: var(--gold);
}

.footer__phone {
  font-size: 16px;
}

.footer p {
  margin: 0;
  text-align: right;
}

.mobile-menu {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 48px 20px 18px;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 23px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 44px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu__links {
  display: grid;
  gap: 13px;
}

.mobile-menu__links a {
  width: fit-content;
  font-size: 17px;
}

.mobile-menu__socials {
  display: flex;
  gap: 16px;
  margin-top: auto;
  font-size: 13px;
}

.section-dots {
  position: fixed;
  z-index: 20;
  top: 50%;
  right: 24px;
  display: grid;
  gap: 11px;
  transform: translateY(-50%);
}

.section-dots a {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  transition: background .2s ease, transform .2s ease;
}

.section-dots a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 5px;
  color: #fff;
  background: rgba(7, 10, 14, .9);
  content: attr(aria-label);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(4px);
  white-space: nowrap;
  transition: opacity .2s ease, transform .2s ease;
}

.section-dots a.show-label::after {
  opacity: 1;
  transform: translateY(-50%);
}

.section-dots a.is-active {
  background: #fff;
  transform: scale(1.05);
}

.age-gate[hidden] {
  display: none;
}

.age-gate {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(8px);
}

.age-gate__panel {
  width: min(100%, 460px);
  padding: 42px 38px 38px;
  border: 1px solid rgba(245, 215, 117, .32);
  border-radius: 16px;
  text-align: center;
  background: #0a0d12;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
}

.age-gate__mark {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.age-gate h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
}

.age-gate__panel > p:not(.age-gate__mark) {
  margin: 0;
  color: var(--muted);
}

.age-gate__actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.button--age-confirm,
.button--age-leave {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

.button--age-confirm {
  color: #17130a;
  background: var(--gold);
}

.button--age-leave {
  color: rgba(255, 255, 255, .72);
  background: transparent;
}

body.age-gate-open {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(245, 215, 117, .09), transparent 32%),
    #070a0e;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s var(--ease), visibility .55s ease;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .site-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-loader__inner {
  display: grid;
  justify-items: center;
  width: min(280px, calc(100vw - 48px));
}

.site-loader__mark {
  display: grid;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(245, 215, 117, .45);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 38px;
  font-style: italic;
  place-items: center;
  animation: loader-breathe 1.4s ease-in-out infinite;
}

.site-loader__line {
  position: relative;
  width: 150px;
  height: 1px;
  margin: 25px 0 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.site-loader__line::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  transform: translateX(-100%);
  animation: loader-line 1.35s ease-in-out infinite;
}

.site-loader__caption {
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

@keyframes loader-breathe {
  50% { box-shadow: 0 0 36px rgba(245, 215, 117, .13); transform: scale(1.04); }
}

@keyframes loader-line {
  60%, 100% { transform: translateX(100%); }
}

.program-page {
  min-height: 100svh;
  background: var(--bg-deep);
}

.program-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 10, 14, .86);
  backdrop-filter: blur(18px);
}

.program-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.program-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.program-header__brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .04em;
}

.program-header__monogram {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 215, 117, .42);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  place-items: center;
}

.program-header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.program-header__nav a,
.program-header__telegram {
  transition: color .2s ease;
}

.program-header__nav a:hover,
.program-header__telegram:hover {
  color: var(--gold);
}

.program-header__telegram {
  padding: 9px 13px;
  border: 1px solid rgba(245, 215, 117, .3);
  border-radius: 7px;
  color: var(--gold);
  font-size: 13px;
}

.program-hero {
  min-height: calc(100svh - 76px);
  padding: 34px 0 70px;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 215, 117, .07), transparent 28%),
    var(--bg-deep);
}

.program-hero__loading,
.program-error {
  padding-top: 80px;
  color: var(--muted);
}

.program-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: start;
  gap: clamp(38px, 6vw, 82px);
}

.program-hero__media {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--card);
}

.program-hero__media img {
  width: 100%;
  min-height: 610px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.program-hero__copy {
  padding: 22px 0 0;
}

.program-hero__back {
  display: inline-block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.program-hero__back:hover {
  color: var(--gold);
}

.program-hero h1 {
  margin: 12px 0 23px;
  color: #fff;
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 200;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.program-hero__description {
  color: rgba(255, 255, 255, .69);
  font-size: 16px;
  font-weight: 300;
}

.program-hero__description h3,
.program-hero__description .program-card__label,
.program-hero__description .button--card {
  display: none;
}

.program-hero__description h4 {
  margin: 24px 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.program-hero__description p {
  margin: 0 0 14px;
}

.program-hero__description ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-hero__description li {
  position: relative;
  padding-left: 17px;
}

.program-hero__description li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "—";
}

.program-hero__prices .prices,
.program-hero__prices .extras-list {
  margin: 27px 0 23px;
}

.program-hero__prices :is(.prices, .extras-list) p {
  font-size: 14px;
}

.program-hero__prices :is(.prices, .extras-list) strong {
  font-size: 16px;
}

.program-hero__telegram,
.program-contact__telegram {
  border-color: var(--gold);
  border-radius: 8px;
  color: #17130a;
  background: var(--gold);
}

.program-hero__telegram:hover,
.program-contact__telegram:hover {
  color: #17130a;
  background: #ffe79a;
}

.program-hero__schedule {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .43);
  font-size: 12px;
}

.program-contact {
  padding: 74px 0;
  background: var(--bg);
}

.program-contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: center;
  gap: 60px;
  padding: 46px 50px;
  border: 1px solid rgba(245, 215, 117, .17);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 215, 117, .055), rgba(9, 13, 18, .8));
}

.program-contact h2,
.program-recommendations h2 {
  margin: 10px 0 14px;
  font-size: 38px;
  font-weight: 200;
  line-height: 1.13;
}

.program-contact__panel > div > p:last-child {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.program-contact__actions {
  display: grid;
  justify-items: start;
  gap: 13px;
  color: rgba(255, 255, 255, .72);
}

.program-contact__actions p {
  margin: 0;
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
}

.program-recommendations {
  padding: 82px 0 96px;
  background: var(--bg-deep);
}

.program-recommendations__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.program-recommendations__heading > a {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 13px;
}

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

.program-recommendation {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 13px;
  background: var(--card);
  transition: border-color .25s ease, transform .25s ease;
}

.program-recommendation:hover {
  border-color: rgba(245, 215, 117, .35);
  transform: translateY(-4px);
}

.program-recommendation img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  object-position: center top;
}

.program-recommendation > span {
  display: flex;
  min-height: 155px;
  padding: 20px 21px;
  flex-direction: column;
}

.program-recommendation small {
  color: var(--gold);
  font-size: 12px;
}

.program-recommendation strong {
  margin-top: 9px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.25;
}

.program-recommendation em {
  margin-top: auto;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-style: normal;
}

.program-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .45);
  background: var(--bg-deep);
  font-size: 12px;
}

.program-footer .container {
  display: flex;
  justify-content: space-between;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

.program-card--extras {
  grid-column: auto;
}
}

@media (max-width: 767px) {
  .container,
  .container-wide {
    width: calc(100% - 30px);
  }

  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .desktop-nav,
  .topbar__socials {
    display: none;
  }

  .age-note {
    grid-column: 1;
    justify-self: start;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }

  .menu-toggle {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 4px 0;
    background: #fff;
  }

  .hero__background {
    background-position: calc(51% - 100px) 50%;
  }

  .hero__content {
    min-height: calc(100svh - 76px);
    padding: 30px 0 58px;
  }

  .hero h1 {
    max-width: 350px;
    margin-bottom: 24px;
    font-size: 38px;
    line-height: 1.17;
  }

  .hero__lead {
    max-width: 320px;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.45;
  }

  .hero__location {
    margin: 1px 0 29px;
    font-size: 21px;
    font-weight: 400;
  }

  .hero__copy {
    margin-bottom: 27px;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.48;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .button--hero {
    margin-top: 6px;
  }

  .programs {
    padding: 75px 0 72px;
  }

  .section-heading {
    margin-bottom: 60px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .section-heading p {
    max-width: 340px;
    margin: 22px auto 0;
    font-size: 20px;
    line-height: 1.48;
  }

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

  .program-card__body {
    padding: 26px 29px 30px;
  }

  .program-card {
    border-radius: 12px;
  }

  .program-card h3 {
    font-size: 22px;
  }

  .program-card__intro,
  .program-card li,
  .program-card__note {
    font-size: 16px;
  }

  .button--card {
    min-height: 46px;
  }

  .master {
    padding: 70px 0 74px;
  }

  .master h2,
  .booking h2,
  .gallery h2,
  .contacts h2 {
    font-size: 39px;
  }

  .master__portrait {
    width: 190px;
    height: 190px;
  }

  .master__story {
    font-size: 16px;
  }

  .master__story ul {
    text-align: center;
  }

  .master__story li::before {
    display: none;
  }

  .master__socials {
    flex-wrap: wrap;
    justify-content: center;
  }

  .booking {
    padding: 62px 0 72px;
  }

  .booking__inner > p {
    font-size: 18px;
  }

  .gallery {
    padding: 64px 0 68px;
  }

  .gallery h2 {
    margin-bottom: 45px;
  }

  .gallery-slider__track {
    margin: 0;
  }

  .gallery-slide {
    flex-basis: 100%;
    padding: 0;
  }

  .gallery-slide img {
    object-position: center top;
  }

  .gallery-slider__arrow {
    width: 44px;
    height: 44px;
  }

  .gallery-slider__arrow--prev {
    left: 11px;
  }

  .gallery-slider__arrow--next {
    right: 11px;
  }

  .contacts {
    padding: 65px 0 62px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .booking-steps {
    padding: 60px 0 65px;
  }

  .section-heading--compact h2 {
    font-size: 34px;
  }

  .booking-steps__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-steps__video {
    min-height: 0;
  }

  .booking-steps__video video {
    height: auto;
    min-height: 0;
    aspect-ratio: 540 / 783;
  }

  .booking-steps__list {
    gap: 12px;
  }

  .booking-step {
    min-height: 0;
  }

  .contacts__lead {
    font-size: 17px;
  }

  .contacts dl > div {
    grid-template-columns: 82px 1fr;
    font-size: 14px;
  }

  .contacts dl {
    grid-template-columns: 1fr;
  }

  .contacts__map,
  .contacts__map iframe {
    min-height: 360px;
    height: 360px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .footer nav {
    flex-wrap: wrap;
  }

  .footer p {
    text-align: left;
  }

  .section-dots {
    right: 10px;
  }

  .section-dots a::after {
    display: none;
  }

  .booking-links a.booking-link--primary {
    width: 100%;
  }

  .booking-link--primary strong {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero__lead,
  .hero__location {
    font-size: 18px;
    font-weight: 400;
  }

  .hero__copy {
    font-size: 17px;
    font-weight: 400;
  }

  .program-card__body {
    padding-inline: 22px;
  }

  .prices p,
  .extras-list p {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

@media (max-width: 767px) {
  .schedule-info {
    padding: 61px 0 66px;
  }

  .schedule-info__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .schedule-info__media {
    order: -1;
    border-radius: 13px;
  }

  .schedule-info__copy > p:not(.section-kicker):not(.schedule-info__hours):not(.schedule-info__day-off):not(.schedule-info__welcome) {
    font-size: 15px;
  }

  .schedule-info__notice {
    padding: 16px;
  }

  .site-loader__mark {
    width: 64px;
    height: 64px;
    font-size: 34px;
  }

  .program-header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .program-header__brand > span:last-child,
  .program-header__nav {
    display: none;
  }

  .program-header__telegram {
    margin-left: auto;
  }

  .program-hero {
    min-height: 0;
    padding: 16px 0 56px;
  }

  .program-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .program-hero__media {
    position: static;
    border-radius: 13px;
  }

  .program-hero__media img {
    min-height: 0;
    aspect-ratio: 10 / 7;
  }

  .program-hero__copy {
    padding-top: 27px;
  }

  .program-hero__back {
    margin-bottom: 38px;
  }

  .program-hero h1 {
    font-size: 38px;
  }

  .program-hero__telegram {
    width: 100%;
  }

  .program-contact {
    padding: 55px 0;
  }

  .program-contact__panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 31px 24px;
    border-radius: 13px;
  }

  .program-contact h2,
  .program-recommendations h2 {
    font-size: 32px;
  }

  .program-contact__telegram {
    width: 100%;
  }

  .program-recommendations {
    padding: 62px 0 70px;
  }

  .program-recommendations__heading {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .program-recommendations__heading > a {
    margin: 0;
  }

  .program-recommendations__grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .program-recommendation {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .program-recommendation img {
    height: 100%;
    aspect-ratio: auto;
  }

  .program-recommendation > span {
    min-height: 138px;
    padding: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
