/* Generated delivery bundle. Source declarations retain their original order. */

/* Source: components/_buttons.css */
.button {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 16px 24px;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #F4C47B;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition:
          transform 0.3s ease,
          box-shadow 0.3s ease,
          background-color var(--transition-base),
          color var(--transition-base),
          border-color var(--transition-base);
  transition:
          transform 0.3s ease,
          box-shadow 0.3s ease,
          background-color var(--transition-base),
          color var(--transition-base),
          border-color var(--transition-base);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow:
          0 8px 24px rgba(235, 182, 103, 0.2),
          0 0 18px rgba(235, 182, 103, 0.15);
}

.button:active {
  transform: translateY(1px);
  box-shadow:
          0 4px 12px rgba(235, 182, 103, 0.15);
}

.button--gold {
  color: #EBB667;
  background: #0A1B12;
  overflow: hidden;
}

.button--gold::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 3px;
  border: 1px solid rgba(235, 182, 103, 0.90);
}

.button--gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80px;
  height: 100%;
  background: linear-gradient(
          90deg,
          transparent,
          rgba(255,255,255,.2),
          transparent
  );
  transform: skewX(-25deg);
  transition: left .7s ease;
}

.button--gold:hover {
  background: #12271b;
  color: #f5d19b;
  border-color: #f5d19b;
}

.button--gold:hover::after {
  left: 130%;
}

.button--gold svg {
  width: 24px;
  height: 24px;
}

.button--gold-menu {
  background: #140b02;
}

.button--gold:hover {
  background: #140b02;
}

.button--booking {
  background: transparent;
}

.button--booking:hover {
  background: transparent;
}

.button--outline-dark {
  color: #0A1B12;
  background: transparent;
  fill: #0A1B12;
}

.button--outline-dark:hover {
  background: #0A1B12;
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.button--outline-dark:hover svg {
  fill: var(--color-gold-light);
}

.button--outline-dark::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 3px;
  border: 1px solid rgba(235, 182, 103, 0.90);
}

.button--outline {
  position: relative;
  overflow: hidden;
  color: var(--color-gold);
  font-family: var(--font-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid var(--color-gold);
  z-index: 1;
}

.button--outline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--color-gold-light);
  transition: height .35s ease;
  z-index: -1;
}

.button--outline:hover {
  color: #0A1B12;
  border-color: var(--color-gold-light);
}

.button--outline:hover::after {
  height: 100%;
}

.link-arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: var(--font-text);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-gold);
  padding: 12px;
  gap: 10px;
  fill: #fff;
  border-bottom: 1px solid var(--color-gold-light);
  -webkit-transition:
          color var(--transition-base),
          border-color var(--transition-base);
  transition:
          color var(--transition-base),
          border-color var(--transition-base);
}

.link-arrow--gallery {
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.link-arrow svg {
  width: 24px;
  height: 24px;
  transition: transform .3s ease;
}

.link-arrow:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.link-arrow:hover svg {
  transform: translateX(6px);
}

.link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: var(--font-text);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-gold);
  padding: 12px;
  -webkit-transition:
          color var(--transition-base);
  transition:
          color var(--transition-base);
}

.link:hover {
  color: var(--color-gold-light);
}

@media (max-width: 1727px) {
  .button {
    padding-block: 17px;
    font-size: 18px;
  }

  .button--outline {
    font-size: 18px;
    padding: 12px 18px;
  }

  .button--gold svg {
    width: 22px;
    height: 22px;
  }

  .link-arrow {
    padding-block: 8px;
    font-size: 18px;
  }

  .link-arrow svg {
    width: 22px;
    height: 22px;
  }

  .link {
    font-size: 18px;
  }
}

@media (max-width: 1439px) {
  .button {
    padding-block: 12px;
    font-size: 14px;
  }

  .button--outline {
    display: none;
  }

  .button--gold svg {
    width: 18px;
    height: 18px;
  }

  .link-arrow {
    padding-block: 10px;
    font-size: 14px;
  }

  .link-arrow svg {
    width: 18px;
    height: 18px;
  }

  .link-arrow--gallery {
    margin-bottom: 24px;
  }

  .link {
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .button {
    padding-block: 17px;
    font-size: 18px;
  }

  .button--gold svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 767px) {
  .button {
    padding-block: 12px;
    font-size: 14px;
  }

  .button--gold svg {
    width: 18px;
    height: 18px;
  }

  .link-arrow {
    padding-block: 10px;
    font-size: 14px;
  }

  .link-arrow svg {
    width: 18px;
    height: 18px;
  }

  .link {
    font-size: 14px;
  }
}

/* Source: components/_burger.css */
.burger {
    position: relative;
    display: none;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.burger:focus-within {
    outline: none;
}

.burger__icon {
    display: inline-flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 12px 8px;
    width: 44px;
    height: 44px;
}

.burger__line,
.burger__icon::before {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: .3s;
}

.burger__icon::after {
    width: 18px;
    height: 3px;
    margin-left: auto;
    background: #fff;
    border-radius: 5px;
    transition: .25s ease-in;
}

.burger__icon::before,
.burger__icon::after {
    content: '';
}

.burger.active .burger__icon::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active .burger__line {
    opacity: 0;
}

.burger.active .burger__icon::after {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 100%;
}

@media (max-width: 1439px) {
    .burger {
        display: flex;
    }
}

/* Source: components/_menu.css */
.menu {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;
    overflow: hidden;
    transition:
            opacity .25s ease,
            visible .25s ease,
            height .25s ease;
}

.menu__footer {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
    gap: 38px;
    position: relative;
    padding-top: 24px;
}

.menu__footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
    height: 1px;
    background: linear-gradient(90deg, #EBB667 0%, rgba(235, 182, 103, 0.00) 100%);
}

.menu__links {
    display: flex;
    flex-flow: column;
    gap: 12px;
}

.menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu__icon {
    width: 24px;
    height: 24px;
}

.menu__link span {
    color: #F5ECDE;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menu__socials {
    display: flex;
    gap: 15px;
}

.menu__social {
    width: 34px;
    height: 34px;
    color: #fff;
}

.menu .button {
    display: none;
}

@media (max-width: 1439px) {
    .menu {
        position: absolute;
        top: 126px;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        opacity: 0;
        padding: 48px;
        gap: 25px;
        visibility: hidden;
        height: 0;
        background: url('../../images/background.png') no-repeat center/cover, #05120B;
        z-index: 10;
    }

    .menu.active {
        height: calc(100vh - 126px);
        opacity: 1;
        visibility: visible;
    }

    .menu .button {
        display: inline-flex;
    }

    .menu__footer {
        display: flex;
    }
}

@media (max-width: 1023px) {
    .menu {
        top: 84px;
    }

    .menu.active {
        height: calc(100vh - 84px);
    }
}

@media (max-width: 767px) {
    .menu {
        top: 80px;
        padding: 40px;
    }

    .menu.active {
        height: calc(100vh - 80px);
    }

    .menu__footer {
        padding-top: 40px;
    }

    .menu__footer::before {
        width: 420px;
        background: linear-gradient(90deg, #EBB667 0%, rgba(235, 182, 103, 0.00) 100%);
    }

    .menu__links {
        gap: 18px;
    }

    .menu__link span {
        font-size: 20px;
    }
}

@media (max-width: 459px) {
    .menu {
        padding: 28px;
    }

    .menu__footer {
        padding-top: 34px;
        gap: 32px;
    }

    .menu__footer::before {
        width: 140px;
        background: linear-gradient(90deg, #EBB667 0%, rgba(235, 182, 103, 0.00) 100%);
    }

    .menu__link span {
        font-size: 14px;
    }
}

/* Source: sections/_hero.css */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 1138px;
  padding-top: 193px;
  overflow: hidden;
}

.hero--menu {
  background: url('../../images/menu-hero-new.png') 50% 50%/cover no-repeat;
}

.hero--about {
  background: url('../../images/hero-about.png') center/cover no-repeat;
}

.hero--program {
  background: url('../../images/program-bg.png') center/cover no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-flow: column;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-block: 101px 54px;
}

.hero__inner--skupiny {
  padding-block: 0;
  margin-bottom: 332px;
}

.hero__inner--gallery {
  padding-block: 90px 54px;
  margin: 0 auto;
}

.hero__inner--program {
  padding-block: 0;
}

.hero__video-wrap {
  position: absolute;
  top: -227px;
  right: -675px;
  width: auto;
  height: 1127px;
  aspect-ratio: 391/220;
  z-index: 0;
  object-fit: cover;
  mask:
          radial-gradient(ellipse 79% 90% at 100% 50%, #000 100%, transparent 0%);
  -webkit-mask:
          radial-gradient(ellipse 79% 90% at 100% 50%, #000 100%, transparent 0%);
  mask-composite: intersect;
}

.hero__video-wrap--gallery {
  top: -350px;
}

.hero__video,
.hero__video-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home .hero__video {
  object-position: 45% 50%;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__content--gallery {
  display: flex;
  flex-flow: column;
  align-items: center;
  max-width: 690px;
  width: 100%;
}

.hero__label {
  display: flex;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 1.2px;
  font-family: var(--font-text);
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 22px;
}

.hero__label--about {
  justify-content: center;
}

.hero__label span {
  display: inline-flex;
  align-items: center;
}

.hero__label span:not(:last-child)::after {
  content: '';
  flex: 0 0 auto;
  margin-inline: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(235, 182, 103, .9);
}

.hero__title {
  font-family: var(--font-title);
  font-size: 76px;
  font-weight: 500;
  color: var(--color-gold);
  line-height: normal;
  letter-spacing: 0.735px;
  margin-bottom: 12px;
  max-width: 595px;
}

.hero__title--menu {
  font-size: 120px;
  font-style: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero__title--skupiny {
  font-size: 74px;
  font-style: normal;
  letter-spacing: 0.74px;
  max-width: 720px;
}

.hero__title--about {
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.60);
  font-size: 70px;
  max-width: 1090px;
  margin: 0 auto 6px;
  text-align: center;
}

.hero__title--gallery {
  position: relative;
  font-size: 74px;
  line-height: 100%;
  letter-spacing: .74px;
  text-align: center;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.hero__title--gallery span {
  display: inline-flex;
  color: var(--color-gold-light);
}

.hero__title--program {
  position: relative;
  font-size: 74px;
  line-height: 100%;
  letter-spacing: .74px;
  color: var(--color-gold);
  margin-bottom: 18px;
  max-width: 635px;
}

.hero__title--program span {
  display: inline-flex;
  color: var(--color-gold-light);
}

.hero__subtitle {
  color: #EBB667;
  font-family: var(--font-title);
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.46px;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 570px;
}

.hero__decor {
  width: 512px;
  height: 35px;
  margin-bottom: 24px;
}

.hero__description {
  font-family: var(--font-text);
  font-size: 24px;
  font-weight: 520;
  color: #DBDBDB;
  line-height: normal;
  margin-bottom: 80px;
  max-width: 520px;
}

.hero__description--about {
  max-width: 862px;
  margin: 0 auto 57px;
  text-align: center;
  font-size: 28px;
  font-style: normal;
}

.hero__description--skupiny {
  max-width: 690px;
  margin-bottom: 62px;
}

.hero__description--gallery {
  text-align: center;
  margin-bottom: 68px;
}

.hero__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 38px;
  margin-bottom: 220px;
}

.hero__actions--skupiny {
  margin-bottom: 184px;
}

.hero__actions--about {
  justify-content: center;
}

.hero__underline {
  display: inline-flex;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid rgba(209, 155, 73, .4);
  backdrop-filter: blur(3px);
}

.hero__underline img {
  width: 26px;
  height: 28px;
}

.hero__underline span {
  display: inline-flex;
  align-items: center;
  color: var(--color-gold);
  font-family: var(--font-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.54px;
}

.hero__underline span:not(:last-child)::after {
  content: '';
  flex: 0 0 auto;
  margin-inline: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(235, 182, 103, .9);
}

.hero__blocks {
  display: flex;
  align-items: center;
  gap: 79px;
}

.hero__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__item--program {
  gap: 18px;
}

.hero__item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 0;
  right: -39px;
  width: 1px;
  height: 100%;
  background: #D19B49;
}

.hero__item img {
  width: auto;
  height: 64px;
  object-fit: contain;
}

.hero__item--program img {
  height: 57px;
}

.hero__item span {
  color: var(--color-gold);
  font-family: var(--font-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.hero__item--program span {
  color: var(--color-gold-light);
  max-width: 225px;
}

.hero__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid transparent;
  background:
          linear-gradient(#0000, #0000) padding-box,
          linear-gradient(180deg, rgba(245,236,222,0) 36.67%, #F5ECDE 100%) border-box;
}

.hero__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #091810;
  z-index: 1;
}

.hero__button img {
  position: relative;
  width: 32px;
  aspect-ratio: 1;
  z-index: 2;
}

@media (max-width: 1727px) {
  .hero {
    min-height: 900px;
    padding-top: 126px;
  }

  .hero__inner {
    padding-block: 124px 32px;
  }

  .hero__video-wrap {
    top: -126px;
    right: -420px;
    height: 900px;
  }

  .hero__label {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: 64px;
    max-width: 530px;
  }

  .hero__title--menu {
    font-size: 90px;
  }

  .hero__subtitle {
    font-size: 38px;
    max-width: 480px;
  }

  .hero__decor {
    width: 465px;
    height: auto;
    object-fit: cover;
  }

  .hero__description {
    font-size: 20px;
    max-width: 500px;
    margin-bottom: 64px;
  }

  .hero__actions {
    gap: 32px;
    margin-bottom: 184px;
  }

  .hero__underline img {
    width: 24px;
    height: 26px;
  }

  .hero__underline span {
    font-size: 16px;
  }

  .hero__title--skupiny {
    font-size: 54px;
  }

  .hero__inner--skupiny {
    padding-block: 30px 0;
    margin-bottom: 270px;
  }

  .hero__description--skupiny {
    margin-bottom: 36px;
  }

  .hero__blocks {
    gap: 53px;
  }

  .hero__item:not(:last-child)::before {
    right: -26px;
  }

  .hero__title--about {
    font-size: 60px;
    max-width: 945px;
  }

  .hero__description--about {
    max-width: 580px;
  }

  .hero__content--gallery {
    max-width: 530px;
  }

  .hero__inner--gallery {
    padding-block: 32px;
  }

  .hero__video-wrap--gallery {
    top: -270px;
  }

  .hero__title--program {
    max-width: 565px;
  }

  .hero__inner--program {
    padding-block: 0;
  }
}

@media (max-width: 1439px) {
  .hero {
    min-height: 100vh;
  }

  .hero__video-wrap {
    right: 0;
    left: 210px;
    height: 768px;
  }

  .hero__label {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .hero__title {
    font-size: 52px;
    margin-bottom: 4px;
    max-width: 415px;
  }

  .hero__title--menu {
    font-size: 78px;
  }

  .hero__subtitle {
    font-size: 32px;
    max-width: 410px;
    margin-bottom: 18px;
  }

  .hero__decor {
    width: 400px;
    margin-bottom: 18px;
  }

  .hero__description {
    font-size: 18px;
    max-width: 440px;
    margin-bottom: 36px;
  }

  .hero__actions {
    gap: 28px;
    margin-bottom: 140px;
  }

  .hero__underline {
    padding-block: 8px;
  }

  .hero__underline span {
    font-size: 12px;
  }

  .hero__title--skupiny {
    font-size: 42px;
  }

  .hero__blocks {
    gap: 37px;
  }

  .hero__item:not(:last-child)::before {
    right: -18px;
  }

  .hero__item img {
    height: 42px;
  }

  .hero__item span {
    font-size: 16px;
    line-height: 22px;
  }

  .hero__inner--skupiny {
    margin-bottom: 140px;
  }

  .hero__title--about {
    font-size: 48px;
    max-width: 760px;
  }

  .hero__description--about {
    max-width: 515px;
  }

  .hero__content--gallery {
    max-width: 440px;
  }

  .hero__title--program {
    max-width: 460px;
  }

  .hero__item--program span {
    max-width: 180px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  body.home .hero__content {
    width: 100%;
    text-align: center;
  }

  body.home .hero__video-wrap {
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 630px;
    aspect-ratio: 139/80;
    mask:
        radial-gradient(ellipse 130% 149% at 50% 100%, #000 67%, transparent 20%);
    -webkit-mask:
        radial-gradient(ellipse 130% 149% at 50% 100%, #000 67%, transparent 20%);
  }

  body.home .hero__video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.00) 63.66%, rgba(7, 8, 7, 0.50) 79.8%, #08160E 98.62%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.20) 16.38%, rgba(0, 0, 0, 0.00) 37.65%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
  }

  body.home .hero__inner {
    padding-block: 52px 46px;
  }

  body.home .hero__label {
    justify-content: center;
  }

  body.home .hero__title {
    margin: 0 auto 4px;
  }

  body.home .hero__description {
    margin: 0 auto 36px;
  }

  body.home .hero__actions {
    flex-flow: column;
    margin-bottom: 40px;
  }

  body.home .hero__underline {
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 1023px) {
  .hero__content {
    width: 100%;
    text-align: center;
  }

  .hero__video-wrap {
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 630px;
    aspect-ratio: 139/80;
    mask:
        radial-gradient(ellipse 130% 149% at 50% 100%, #000 67%, transparent 20%);
    -webkit-mask:
        radial-gradient(ellipse 130% 149% at 50% 100%, #000 67%, transparent 20%);
  }

  .hero__video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.00) 63.66%, rgba(7, 8, 7, 0.50) 79.8%, #08160E 98.62%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.20) 16.38%, rgba(0, 0, 0, 0.00) 37.65%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
  }

  .hero__inner {
    padding-block: 52px 46px;
  }

  .hero__label {
    justify-content: center;
    font-size: 12px;
    margin-bottom: 8px;
  }

  .hero__title {
    font-size: 50px;
    max-width: 436px;
    margin: 0 auto 4px;
  }

  .hero__title--menu {
    font-size: 48px;
  }

  .hero__subtitle {
    font-size: 28px;
    margin: 0 auto 12px;
  }

  .hero__decor {
    margin: 0 auto 12px;
  }

  .hero__description {
    font-size: 20px;
    max-width: 500px;
    margin: 0 auto 36px;
  }

  .hero__actions {
    flex-flow: column;
    margin-bottom: 40px;
  }

  .hero__underline {
    margin: 0 auto;
    text-align: center;
  }

  .hero__underline span {
    font-size: 14px;
  }

  .hero__inner--skupiny {
    position: static;
  }

  .hero__title--skupiny {
    font-size: 38px;
  }

  .hero__video-wrap img {
    opacity: .4;
  }

  .hero__blocks {
    margin: 0 auto;
  }

  .hero__title--about {
    font-size: 38px;
    max-width: 615px;
  }

  .hero__description--about {
    max-width: 575px;
  }

  .hero__button {
    width: 48px;
    height: 48px;
  }

  .hero__button img {
    width: 24px;
  }

  .hero__content--gallery {
    margin: 0 auto;
  }

  .hero__inner--gallery {
    position: static;
  }

  .hero--program::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.00) 63.66%, rgba(7, 8, 7, 0.50) 79.8%, #08160E 98.62%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.20) 16.38%, rgba(0, 0, 0, 0.00) 37.65%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
  }
}

@media (max-width: 767px) {
  /* Reserve the geometry produced by the loaded Hero fonts. */
  body.home .hero__inner {
    min-height: 478.2px;
  }

  body.home .hero__content {
    min-height: 307px;
  }

  body.home .hero__label {
    min-height: 14px;
  }

  body.home .hero__title {
    min-height: 98px;
  }

  body.home .hero__description {
    min-height: 38px;
  }

  body.home .hero__actions {
    min-height: 101px;
  }

  body.home .hero__underline {
    min-height: 69.2px;
  }

  body.home .hero__video-wrap {
    background-image: url("../../images/a10/gallery-hero-20260916.webp");
    background-position: 45% 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  body.home .hero__video {
    opacity: 1;
    transition: opacity 180ms ease;
  }

  body.home .hero__video.is-ready {
    opacity: 1;
  }

  .hero__inner {
    padding-block: 38px 64px;
  }

  .hero__video-wrap {
    height: 490px;
  }

  .hero__label {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .hero__title {
    font-size: 38px;
    margin-bottom: 2px;
    max-width: 310px;
  }

  .hero__description {
    font-size: 14px;
    margin: 0 auto 28px;
  }

  .hero__actions {
    gap: 14px;
    margin-bottom: 20px;
  }

  .hero__underline span {
    font-size: 12px;
  }

  .hero__blocks {
    flex-flow: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero__item:not(:last-child)::before {
    display: none;
  }

  .hero__item img {
    height: 26px;
  }

  .hero__item span {
    font-size: 12px;
    line-height: 16px;
  }

  .hero__title--about {
    font-size: 32px;
    max-width: 560px;
  }

  .hero__title--program {
    max-width: 350px;
  }

  .hero__item--program span {
    max-width: 130px;
  }
}

@media (max-width: 345px) {
  body.home .hero__inner {
    min-height: 491.6px;
  }

  body.home .hero__underline {
    min-height: 82.6px;
  }
}

@media (max-width: 341px) {
  body.home .hero__inner {
    min-height: 510.6px;
  }

  body.home .hero__content {
    min-height: 326px;
  }

  body.home .hero__description {
    min-height: 57px;
  }
}

@media (max-width: 331px) {
  body.home .hero__inner {
    min-height: 559.6px;
  }

  body.home .hero__content {
    min-height: 375px;
  }

  body.home .hero__title {
    min-height: 147px;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  body.home .hero__video {
    transition: none;
  }
}

/* Critical delivery guard copied from sections/_home-reservation-widget.css. */
body.home .section--reservation[data-deferred-background] {
  background-image: none;
}



/* Home only: full-bleed film, a broad green dissolve and local feathered blur. */
body.home .hero {
  isolation: isolate;
  min-height: clamp(780px, 100svh, 1040px);
  padding-top: 0;
  background: #08160e;
}

body.home .hero__inner {
  position: static;
  z-index: auto;
  min-height: inherit;
  max-width: 1740px;
  align-items: flex-start;
  justify-content: center;
  gap: 72px;
  padding-block: 180px 84px;
  padding-inline: clamp(30px, 6.7vw, 100px);
}

body.home .hero__video-wrap {
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  transform: none;
  border-radius: 0;
  mask: none;
  -webkit-mask: none;
  overflow: hidden;
  pointer-events: none;
  background-position: 60% 50%;
}

body.home .hero__video {
  display: block;
  object-fit: cover;
  object-position: 60% 50%;
  filter: none;
}

body.home .hero__video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 18, 11, .7) 0%, rgba(5, 18, 11, .08) 25%, transparent 55%, rgba(8, 22, 14, .28) 78%, #08160e 100%),
    linear-gradient(90deg, #05120b 0%, rgba(5, 18, 11, .99) 16%, rgba(5, 18, 11, .94) 30%, rgba(5, 18, 11, .79) 42%, rgba(5, 18, 11, .42) 55%, rgba(5, 18, 11, .1) 70%, transparent 85%),
    linear-gradient(270deg, rgba(5, 18, 11, .22), transparent 18%);
}

body.home .hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0 36% 0 18%;
  z-index: 2;
  pointer-events: none;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, .5) 28%, rgba(0, 0, 0, .75) 45%, rgba(0, 0, 0, .28) 70%, transparent);
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, .5) 28%, rgba(0, 0, 0, .75) 45%, rgba(0, 0, 0, .28) 70%, transparent);
}

body.home .hero__content {
  z-index: 3;
  width: min(100%, 620px);
  text-align: left;
}

body.home .hero__label {
  justify-content: flex-start;
  margin-bottom: 22px;
}

body.home .hero__title {
  margin: 0 0 20px;
  line-height: 1.12;
}

body.home .hero__description {
  margin: 0 0 38px;
  line-height: 1.55;
  font-weight: 400;
  color: #d5d9d0;
}

body.home .hero__actions {
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 0;
}

body.home .hero__underline {
  position: relative;
  z-index: 3;
  max-width: 100%;
  margin: 0;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}

body.home .hero__underline span {
  font-size: 14px;
  letter-spacing: .12px;
  color: #c5cbbc;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  body.home .hero__content {
    width: 52%;
  }

  body.home .hero__underline {
    max-width: 55%;
  }

  body.home .hero__underline span {
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  body.home .hero {
    min-height: max(820px, 100svh);
  }

  body.home .hero__inner {
    justify-content: flex-end;
    gap: 44px;
    padding-block: 260px 72px;
  }

  body.home .hero__video,
  body.home .hero__video-wrap {
    object-position: 64% 40%;
    background-position: 64% 40%;
  }

  body.home .hero__video-wrap::before {
    background:
      linear-gradient(180deg, rgba(5, 18, 11, .77) 0%, rgba(5, 18, 11, .08) 20%, rgba(5, 18, 11, .24) 34%, rgba(5, 18, 11, .75) 53%, rgba(5, 18, 11, .96) 77%, #08160e 100%),
      linear-gradient(110deg, rgba(5, 18, 11, .42), transparent 75%);
  }

  body.home .hero__video-wrap::after {
    inset: 28% 0 20%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-mask-image: linear-gradient(transparent, rgba(0, 0, 0, .45) 48%, transparent);
    mask-image: linear-gradient(transparent, rgba(0, 0, 0, .45) 48%, transparent);
  }

  body.home .hero__content {
    width: 100%;
    max-width: 620px;
  }

  body.home .hero__title {
    max-width: 520px;
  }

  body.home .hero__description {
    max-width: 530px;
  }
}

@media (max-width: 767px) {
  body.home .hero {
    min-height: max(760px, 100svh);
  }

  body.home .hero__inner {
    min-height: inherit;
    gap: 36px;
    padding: 290px 24px 44px;
  }

  body.home .hero__video-wrap {
    bottom: auto;
    height: 76%;
  }

  body.home .hero__content {
    min-height: 0;
  }

  body.home .hero__label {
    min-height: 14px;
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: .55px;
  }

  body.home .hero__title {
    min-height: 0;
    max-width: 350px;
    margin-bottom: 18px;
    font-size: clamp(34px, 8.9vw, 40px);
    line-height: 1.13;
    letter-spacing: .15px;
  }

  body.home .hero__description {
    min-height: 0;
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.55;
  }

  body.home .hero__actions {
    min-height: 0;
    gap: 18px 26px;
  }

  body.home .hero__underline {
    gap: 10px;
    align-items: flex-start;
  }

  body.home .hero__underline span {
    font-size: 11px;
    line-height: 1.8;
  }

  body.home .hero__underline img {
    width: 21px;
    height: 23px;
    margin-top: 3px;
  }
}

@media (max-width: 374px) {
  body.home .hero__inner {
    padding-inline: 20px;
  }

  body.home .hero__actions {
    gap: 18px;
  }
}

/* Keep the existing dissolve; centre the pair within the right-hand film zone. */
body.home .hero__video-wrap {
  --hero-film-height: 39.472222vw;
  background-image: none;
}

body.home .hero__video {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 70%;
  height: var(--hero-film-height);
  transform: translateY(-50%);
  object-position: 0% 50%;
  /* Preserve the native poster and the mobile playback fix. */
  opacity: 1;
}

body.home .hero__video-wrap::before {
  background:
    linear-gradient(180deg, #08160e 0%, #08160e calc(50% - var(--hero-film-height) / 2), rgba(5, 18, 11, .6) calc(50% - var(--hero-film-height) * .36), transparent calc(50% - var(--hero-film-height) * .14), transparent calc(50% + var(--hero-film-height) * .12), #08160e calc(50% + var(--hero-film-height) / 2)),
    linear-gradient(90deg, #05120b 0%, #05120b 40%, rgba(5, 18, 11, .95) 44%, rgba(5, 18, 11, .72) 49%, rgba(5, 18, 11, .38) 57%, rgba(5, 18, 11, .1) 68%, transparent 82%),
    linear-gradient(270deg, rgba(5, 18, 11, .22), transparent 18%);
}

@media (max-width: 1023px) {
  body.home .hero__video {
    top: 10%;
    left: 0;
    width: 100%;
    height: 60%;
    transform: none;
    object-position: 37% 40%;
  }

  body.home .hero__video-wrap::before {
    background:
      linear-gradient(180deg, #08160e 0%, #08160e 10%, rgba(5, 18, 11, .08) 24%, rgba(5, 18, 11, .24) 38%, rgba(5, 18, 11, .75) 54%, #08160e 70%),
      linear-gradient(110deg, rgba(5, 18, 11, .42), transparent 75%);
  }
}
