:root {
  --color-olive: #50571a;
  --color-olive-dark: #626a29;
  --color-orange: #ff902c;
  --color-cream: #fff3ce;
  --color-warm: #ffe6ac;
  --color-slate: #68828b;
  --color-slate-light: #78939c;
  --color-black: #000;
  --color-ink: #2e2e30;
  --color-gray: #ebebeb;
  --color-white: #fff;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, .12);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, .14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Mulish", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-black);
  background: var(--color-cream);
}

body[data-theme="winter"] {
  --color-olive: #36515d;
  --color-olive-dark: #243b46;
  --color-orange: #c68142;
  --color-cream: #eef4f6;
  --color-warm: #dfeaf0;
  --color-slate: #7d9fb0;
  --color-slate-light: #a8c2cd;
  --color-gray: #d7e2e6;
}

body[data-theme="winter"] .hero__shade,
body[data-theme="winter"] .page-hero__shade {
  background: linear-gradient(90deg, rgba(11, 23, 31, .78), rgba(33, 58, 68, .42) 58%, rgba(33, 58, 68, .25));
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 40px, 1506px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--color-white);
  transition: background .35s ease, box-shadow .35s ease, color .35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--color-black);
  background: rgba(255, 243, 206, .97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.site-header.is-scrolled .topbar,
.site-header.is-open .topbar {
  border-bottom-color: rgba(0, 0, 0, .1);
}

.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  gap: 24px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__right {
  justify-content: flex-end;
}

.language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: currentColor;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.phone,
.address,
.main-nav a,
.footer a {
  transition: color .25s ease;
}

.phone:hover,
.address:hover,
.main-nav a:hover,
.footer a:hover {
  color: var(--color-orange);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.brand--logo {
  gap: 0;
  text-transform: none;
  letter-spacing: 0;
}

.brand__logo-wrap {
  position: relative;
  display: block;
  width: min(360px, 32vw);
  height: 72px;
}

.brand__logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 9px rgba(0, 0, 0, .38));
  transition: opacity .35s ease;
}

.brand__logo--dark {
  opacity: 0;
}

.site-header.is-scrolled .brand__logo--light,
.site-header.is-open .brand__logo--light {
  opacity: 0;
}

.site-header.is-scrolled .brand__logo--dark,
.site-header.is-open .brand__logo--dark {
  opacity: 1;
}

.brand__fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  font-family: "Forum", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  color: var(--color-white);
  background: var(--color-olive);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
}

.brand__mark--image {
  overflow: hidden;
  color: transparent;
}

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

.brand__text {
  display: grid;
  font-family: "Forum", Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.address {
  max-width: 250px;
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
  border-radius: 4px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.button--small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 14px;
}

.button--ghost {
  color: var(--color-white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
}

.button--ghost:hover {
  color: var(--color-black);
  background: var(--color-white);
  border-color: var(--color-white);
}

.button--dark {
  background: var(--color-olive);
  border-color: var(--color-olive);
}

.button--dark:hover {
  background: var(--color-olive-dark);
  border-color: var(--color-olive-dark);
}

.button--outline {
  min-height: 46px;
  color: var(--color-olive);
  background: transparent;
  border-color: var(--color-olive);
}

.button--outline:hover {
  color: var(--color-white);
  background: var(--color-olive);
  border-color: var(--color-olive);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span:not(.menu-toggle__text) {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle__text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.menu-toggle.is-active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.main-nav {
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.site-header.is-scrolled .main-nav,
.site-header.is-open .main-nav {
  border-bottom-color: rgba(0, 0, 0, .1);
}

.main-nav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 52px;
  column-gap: 42px;
  row-gap: 0;
}

.main-nav a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.main-nav a.is-active {
  color: var(--color-orange);
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.club-strip__image,
.page-hero__media {
  background-position: center;
  background-size: cover;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(80, 87, 26, .62), rgba(104, 130, 139, .36)),
    var(--color-olive-dark);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .3) 52%, rgba(0, 0, 0, .18));
}

.hero__content {
  display: flex;
  min-height: 82vh;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 90px;
  color: var(--color-white);
}

.eyebrow,
.section__kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--color-orange);
}

.eyebrow::before,
.section__kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Forum", Georgia, serif;
  font-weight: 400;
  line-height: .98;
  text-transform: uppercase;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  margin-top: 18px;
  font-size: clamp(64px, 8vw, 138px);
}

h2 {
  max-width: 900px;
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 76px);
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.hero__lead {
  max-width: 710px;
  margin-top: 28px;
  font-size: 20px;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.page-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero__media,
.page-hero__shade {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(80, 87, 26, .62), rgba(104, 130, 139, .36)),
    var(--color-olive-dark);
}

.hero__media.has-hero-media,
.page-hero__media.has-hero-media {
  background-color: transparent;
}

.hero__media,
.page-hero__media {
  overflow: hidden;
  contain: paint;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-origin: border-box;
  background-clip: border-box;
}

.hero__media img,
.page-hero__media img,
.hero__media video,
.page-hero__media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .38) 56%, rgba(0, 0, 0, .2));
}

.hero__media.has-hero-media + .hero__shade,
.page-hero__media.has-hero-media + .page-hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .28) 56%, rgba(0, 0, 0, .12));
}

.page-hero__content {
  display: grid;
  align-content: center;
  min-height: 560px;
  padding-top: 150px;
  padding-bottom: 74px;
  color: var(--color-white);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero--room h1 {
  max-width: 1120px;
  text-wrap: normal;
}

.page-hero--about {
  min-height: 560px;
}

.page-hero--about .page-hero__content {
  min-height: 560px;
  padding-bottom: 52px;
}

.page-hero--not-found .page-hero__media {
  background-image:
    linear-gradient(135deg, rgba(80, 87, 26, .58), rgba(104, 130, 139, .26)),
    url("/uploads/gallery/summer/gallery-hero-01.webp");
}

body[data-theme="winter"] .page-hero--not-found .page-hero__media {
  background-image:
    linear-gradient(135deg, rgba(36, 59, 70, .64), rgba(125, 159, 176, .24)),
    url("/uploads/about/winter/about-hero.webp");
}

.hero h1,
.page-hero h1,
.inner-title h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.page-hero__lead {
  max-width: 780px;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

.breadcrumbs a {
  transition: color .25s ease;
}

.breadcrumbs a:hover {
  color: var(--color-orange);
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, .45);
}

.inner-title {
  padding-top: 178px;
  padding-bottom: 42px;
}

.inner-title h1 {
  margin-top: 22px;
  color: var(--color-black);
}

.breadcrumbs--inner {
  color: rgba(0, 0, 0, .62);
}

.breadcrumbs--inner span::before {
  color: rgba(0, 0, 0, .34);
}

.not-found-guide {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

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

.not-found-links a {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 24px;
  color: var(--color-black);
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.not-found-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .68);
  border-color: rgba(255, 144, 44, .54);
}

.not-found-links span {
  margin-bottom: 12px;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.not-found-links strong {
  max-width: 260px;
  font-size: 20px;
  line-height: 1.25;
}

.booking {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding: 24px;
  background: var(--color-warm);
  box-shadow: var(--shadow-soft);
}

.booking__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 16px;
  align-items: end;
}

.booking label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.booking span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-olive);
}

.booking input,
.booking select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--color-black);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 4px;
}

.booking input:focus,
.booking select:focus {
  outline: 2px solid rgba(255, 144, 44, .55);
  outline-offset: 2px;
}

.booking__status {
  min-height: 24px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-olive);
}

.section {
  padding-block: 92px;
}

body[data-page="about"] .gallery-story {
  padding-top: 58px;
}

body[data-page="about"] .gallery-blocks {
  margin-top: 24px;
}

.section__intro {
  display: grid;
  justify-items: start;
}

.section__intro--center {
  justify-items: center;
  text-align: center;
}

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

.link-more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 18px;
  font-weight: 800;
  color: var(--color-olive);
  border: 1px solid currentColor;
  border-radius: 4px;
  transition: background .25s ease, color .25s ease;
}

.link-more:hover {
  color: var(--color-white);
  background: var(--color-olive);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  gap: 60px;
  align-items: start;
  margin-top: 34px;
}

.about__grid p {
  max-width: 760px;
  font-size: 20px;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.about__facts span {
  display: grid;
  gap: 6px;
  min-height: 136px;
  align-content: center;
  padding: 18px;
  text-align: center;
  border-right: 1px solid var(--color-gray);
}

.about__facts span:last-child {
  border-right: 0;
}

.about__facts strong {
  font-family: "Forum", Georgia, serif;
  font-size: 54px;
  line-height: 1;
  color: var(--color-orange);
}

.gallery-blocks {
  display: grid;
  gap: 34px;
  margin-top: 42px;
}

.gallery-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.gallery-block__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.gallery-block__content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
}

.gallery-block--text-only .gallery-block__content {
  grid-column: 1 / -1;
}

.gallery-block__head span {
  font-family: "Forum", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--color-orange);
}

.carousel-placeholder {
  position: relative;
  display: block;
  min-height: 330px;
  overflow: hidden;
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 6px;
}

.carousel-placeholder button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 18px;
  width: 48px;
  height: 48px;
  margin: 0;
  color: var(--color-olive);
  background: var(--color-warm);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-placeholder button:last-child {
  right: 18px;
  left: auto;
}

.carousel-placeholder button:disabled {
  opacity: .42;
  cursor: default;
}

.carousel-placeholder.is-static button {
  display: none;
}

.carousel-placeholder button::before {
  content: "";
  position: absolute;
  inset: 17px 15px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.carousel-placeholder button:last-child::before {
  transform: rotate(135deg);
}

.carousel-placeholder__track {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0;
  padding: 0;
  transition: transform .55s ease;
  will-change: transform;
}

.placeholder-slide {
  display: grid;
  flex: 0 0 100%;
  min-height: 100%;
  place-items: center;
  color: rgba(0, 0, 0, .44);
  background:
    linear-gradient(135deg, rgba(80, 87, 26, .08), rgba(255, 144, 44, .12)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, .04) 0 1px, transparent 1px 18px);
  border: 1px dashed rgba(80, 87, 26, .35);
  border-radius: 6px;
}

.carousel-placeholder.is-filled .carousel-placeholder__track {
  grid-template-columns: none;
}

.placeholder-slide--image {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-style: solid;
}

.about-photo-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  cursor: zoom-in;
}

.placeholder-slide--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

body[data-page="about"] .gallery-story .carousel-placeholder button {
  background: rgba(255, 255, 255, .28);
  border-color: rgba(255, 255, 255, .74);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

.placeholder-slide span,
.placeholder-grid span,
.room-photo-stage span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.description-placeholder {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 32px;
  background: var(--color-warm);
  border-radius: 6px;
}

.description-placeholder p {
  color: rgba(0, 0, 0, .64);
  white-space: pre-line;
}

.gallery-story .carousel-placeholder {
  align-self: start;
  width: 100%;
  min-height: 0;
  background: var(--color-white);
}

.gallery-block--dynamic-media {
  --about-copy-column-ratio: .55;
  --about-copy-min-width: 320px;
  --about-media-min-width: 280px;
  grid-template-columns:
    minmax(0, var(--about-media-width, 1fr))
    minmax(var(--about-copy-min-width), var(--about-copy-column-size, .55fr));
  transition: grid-template-columns .6s cubic-bezier(.4, 0, .2, 1);
}

.gallery-block--dynamic-media.is-layout-instant {
  transition: none;
}

.gallery-story .carousel-placeholder--dynamic {
  transition: height .6s cubic-bezier(.4, 0, .2, 1);
}

.gallery-story .carousel-placeholder--dynamic.is-height-instant {
  transition: none;
}

.gallery-story .carousel-placeholder--dynamic .carousel-placeholder__track {
  position: absolute;
  inset: 0;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.gallery-story .placeholder-slide {
  min-height: 0;
}

.gallery-story .placeholder-slide--image {
  background: var(--color-white);
}

.gallery-story .about-photo-link {
  display: grid;
  place-items: center;
}

.gallery-story .placeholder-slide--image img {
  position: absolute;
  inset: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto;
  min-height: 0;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-block--dynamic-media,
  .gallery-story .carousel-placeholder--dynamic,
  .gallery-story .carousel-placeholder--dynamic .carousel-placeholder__track {
    transition: none;
  }
}

.gallery-story .gallery-block__content {
  min-height: 0;
}

.gallery-story .gallery-block__head {
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}

.gallery-story .gallery-block__content .description-placeholder {
  min-height: 0;
  align-content: center;
  justify-items: stretch;
  text-align: left;
}

.gallery-story .gallery-block__content .description-placeholder p {
  width: min(100%, 720px);
  margin-inline: 0;
}

.section--warm {
  background: var(--color-white);
}

.advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  margin-top: 38px;
}

.advantage {
  flex: 1 1 calc(33.333% - 12px);
  max-width: calc(33.333% - 12px);
  padding: 34px 26px 30px;
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 6px;
}

.advantages--count-1 .advantage {
  max-width: 430px;
}

.advantages--count-2 .advantage,
.advantages--count-4 .advantage {
  max-width: min(430px, calc(50% - 9px));
}

.advantage__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  color: var(--color-olive);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.advantage svg {
  display: block;
  width: 30px;
  height: 30px;
  overflow: visible;
}

.advantage svg:not(.svg-has-fill) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage p {
  margin-top: 12px;
  color: rgba(0, 0, 0, .7);
}

.room-grid,
.offer-grid,
.review-grid {
  display: grid;
  gap: 22px;
}

.room-grid {
  grid-template-columns: repeat(3, 1fr);
}

.room-grid--single {
  grid-template-columns: 1fr;
}

.room-card {
  overflow: hidden;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.room-card img,
.room-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(80, 87, 26, .12), rgba(255, 144, 44, .14)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, .035) 0 1px, transparent 1px 18px),
    var(--color-cream);
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.room-card__media {
  position: relative;
  overflow: hidden;
}

.room-card__media > img,
.home-room-carousel,
.home-room-carousel__track,
.home-room-carousel__slide {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.room-card__media > img,
.home-room-carousel__slide img {
  display: block;
  object-fit: cover;
}

.home-room-carousel {
  position: relative;
}

.home-room-carousel__track {
  display: flex;
  transition: transform .42s ease;
  will-change: transform;
}

.home-room-carousel__slide {
  flex: 0 0 100%;
}

.home-room-carousel__slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
}

.home-room-carousel__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  flex: 0 0 44px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--color-white);
  font-size: 34px;
  line-height: 1;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.home-room-carousel__nav:hover,
.home-room-carousel__nav:focus-visible {
  background: rgba(0, 0, 0, .34);
}

.home-room-carousel__nav--prev {
  left: 18px;
}

.home-room-carousel__nav--next {
  right: 18px;
}

.room-card--featured {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .7fr);
}

.room-card--featured img,
.room-card--featured .room-card__media {
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
}

.room-card__body {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.room-card__meta span,
.offer__label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-olive);
  background: var(--color-warm);
  border-radius: 3px;
}

.room-detail {
  padding-bottom: 40px;
}

.room-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .42fr);
  gap: 24px;
  align-items: stretch;
}

.room-photo-stage {
  display: grid;
  min-height: 560px;
  align-content: end;
  padding: 28px;
  color: rgba(0, 0, 0, .5);
  background:
    linear-gradient(135deg, rgba(80, 87, 26, .08), rgba(255, 144, 44, .12)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, .04) 0 1px, transparent 1px 22px),
    var(--color-white);
  border: 1px dashed rgba(80, 87, 26, .35);
  border-radius: 6px;
}

.room-photo-stage.room-photo-carousel {
  display: block;
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--color-cream);
  border-style: solid;
}

.room-photo-carousel .carousel-placeholder__track {
  min-height: 100%;
}

.room-photo-carousel .placeholder-slide,
.room-photo-carousel .placeholder-slide--image img {
  min-height: 560px;
}

.room-photo-stage > span {
  place-self: center;
  color: rgba(0, 0, 0, .45);
}

.room-photo-stage__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.room-photo-stage__thumbs i {
  min-height: 84px;
  background: rgba(255, 255, 255, .58);
  border: 1px dashed rgba(80, 87, 26, .35);
  border-radius: 4px;
}

.room-summary,
.info-panel,
.amenities-grid article {
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.room-summary {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 34px;
}

.room-summary h2 {
  font-size: clamp(34px, 3.2vw, 54px);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--color-gray);
  border-radius: 4px;
}

.summary-grid span {
  display: grid;
  gap: 4px;
  min-height: 110px;
  align-content: center;
  padding: 18px;
  background: var(--color-cream);
}

.summary-grid strong {
  font-family: "Forum", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--color-orange);
}

.room-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.room-info-grid__features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.info-panel {
  padding: 30px;
}

.info-panel--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  column-gap: 34px;
  row-gap: 10px;
  align-items: end;
}

.info-panel--wide h2 {
  grid-column: 1;
  margin-top: 0;
}

.info-panel--wide p {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 19px;
}

.info-panel h3,
.info-panel .h3 {
  margin-bottom: 12px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.amenities-grid article {
  padding: 28px;
}

.amenities-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.amenities-grid li {
  position: relative;
  padding-left: 18px;
  color: rgba(0, 0, 0, .72);
}

.amenities-grid li::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
}

.club-strip {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  min-height: 520px;
  margin-block: 20px;
  background: var(--color-olive-dark);
  color: var(--color-white);
}

.club-strip__content {
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 740px;
  padding: 80px;
}

.club-strip p {
  max-width: 620px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, .82);
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer {
  min-height: 260px;
  padding: 32px;
  background: var(--color-white);
  border-left: 6px solid var(--color-orange);
  box-shadow: var(--shadow-soft);
}

.offer--dark {
  color: var(--color-white);
  background: var(--color-olive);
}

.offer h3,
.offer .h3 {
  margin-top: 34px;
}

.offer p {
  margin-top: 14px;
  color: rgba(0, 0, 0, .68);
}

.offer--dark p {
  color: rgba(255, 255, 255, .78);
}

.section--green {
  background: var(--color-olive);
  color: var(--color-white);
}

.section__head--inverse .link-more {
  color: var(--color-white);
}

.link-more--inverse:hover {
  color: var(--color-black);
  background: var(--color-white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service {
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
}

.service img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service div {
  padding: 26px;
}

.service p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .78);
}

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

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(320px, .62fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

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

.review-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.review-form label {
  display: grid;
  gap: 8px;
}

.review-form label span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-olive);
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--color-black);
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 4px;
}

.review-form textarea {
  min-height: 136px;
  padding-top: 14px;
  line-height: 1.55;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: 2px solid rgba(255, 144, 44, .55);
  outline-offset: 2px;
}

.file-field input {
  display: flex;
  align-items: center;
  padding: 12px 14px;
}

.photo-preview,
.review__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.photo-preview:empty {
  display: none;
}

.photo-preview img,
.review__photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.review__photos {
  margin-top: 22px;
}

.review-form__status {
  min-height: 22px;
  font-size: 14px;
  color: var(--color-olive);
}

.review {
  padding: 34px;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.review__stars {
  color: var(--color-orange);
  letter-spacing: .12em;
}

.review p {
  margin-top: 20px;
  font-size: 19px;
}

.review span {
  display: block;
  margin-top: 22px;
  font-weight: 800;
  color: var(--color-olive);
}

.reviews-page {
  display: grid;
  gap: 46px;
}

.reviews-showcase {
  display: grid;
  gap: 24px;
}

.reviews-page .review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.review-pagination:empty,
.review-pagination[hidden] {
  display: none;
}

.review-pagination button {
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  font-weight: 900;
  color: var(--color-olive);
  background: var(--color-white);
  border: 1px solid rgba(80, 87, 26, .24);
  border-radius: 999px;
  cursor: pointer;
}

.review-pagination button.is-active {
  color: var(--color-white);
  background: var(--color-olive);
}

.review-pagination button:disabled {
  opacity: .45;
  cursor: default;
}

.review-form--wide {
  width: 100%;
  max-width: none;
}

.review-form__field {
  display: grid;
  gap: 8px;
}

.review-form__field > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-olive);
}

.review-rating {
  display: inline-flex;
  justify-self: start;
  gap: 4px;
  padding: 8px 10px;
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 4px;
}

.review-rating button {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  color: rgba(0, 0, 0, .22);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .16s ease, transform .16s ease;
}

.review-rating button:hover,
.review-rating button:focus-visible,
.review-rating button.is-active {
  color: #d7a122;
}

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

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

.home-news-card {
  display: grid;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.home-news-card__media {
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  color: var(--color-olive);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--color-cream);
}

.home-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-news-card:hover .home-news-card__media img {
  transform: scale(1.035);
}

.home-news-card__body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.home-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-news-card h3,
.home-news-card .h3 {
  color: var(--color-black);
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.05;
}

.home-news-card h3 a:hover,
.home-news-card .h3 a:hover,
.home-news-card h3 a:focus-visible,
.home-news-card .h3 a:focus-visible,
.home-news-card__more:hover,
.home-news-card__more:focus-visible {
  color: var(--color-orange);
}

.home-news-card p {
  color: rgba(0, 0, 0, .68);
  font-size: 16px;
  line-height: 1.6;
}

.home-news-card__more {
  width: fit-content;
  color: var(--color-olive);
  font-weight: 900;
}

.home-reviews {
  background: var(--color-cream);
}

.home-reviews .container {
  width: min(100% - 24px, 1580px);
}

.home-reviews__carousel {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

.home-reviews__carousel > .empty-state {
  grid-column: 1 / -1;
}

.home-reviews__stage {
  overflow: hidden;
  grid-column: 2;
  min-width: 0;
}

.home-reviews__track {
  display: flex;
  gap: 28px;
  will-change: transform;
  transition: transform .55s ease;
}

.home-reviews__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.home-review-card {
  display: flex;
  align-items: center;
  height: clamp(430px, 30vw, 500px);
  padding: clamp(28px, 3.4vw, 54px);
  color: var(--color-white);
  background: var(--color-olive);
  border-radius: 6px;
  overflow: hidden;
}

.home-review-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: calc(100% - 28px);
  min-height: 0;
}

.home-review-card__date {
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.home-review-card__stars {
  margin-top: 10px;
  color: #ffd166;
  font-size: 22px;
  letter-spacing: .08em;
}

.home-review-card h3,
.home-review-card .h3 {
  margin-top: 12px;
  color: var(--color-white);
  font-family: "Forum", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.home-review-card__text-frame {
  position: relative;
  display: flex;
  flex: 0 1 auto;
  min-height: 0;
  margin-top: 12px;
  overflow: hidden;
}

.home-review-card__text {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  padding-bottom: 44px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(255, 255, 255, .55) transparent;
  scrollbar-width: thin;
}

.home-review-card__text::-webkit-scrollbar {
  width: 6px;
}

.home-review-card__text::-webkit-scrollbar-track {
  background: transparent;
}

.home-review-card__text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .42);
  border-radius: 999px;
}

.home-review-card__text-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  background: linear-gradient(to bottom, rgba(80, 87, 26, 0), var(--color-olive) 82%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.home-review-card__text-frame.is-overflowing::after {
  opacity: 1;
}

.home-review-card__text p {
  max-width: 1120px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.65;
}

.home-reviews__nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--color-black);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, .22);
  border-radius: 50%;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.home-reviews__nav:hover,
.home-reviews__nav:focus-visible {
  color: var(--color-white);
  background: var(--color-olive);
  border-color: var(--color-olive);
}

.home-reviews__nav[hidden] {
  display: none;
}

.page-stub .section__intro {
  margin-bottom: 34px;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.placeholder-grid div {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: rgba(0, 0, 0, .45);
  background:
    linear-gradient(135deg, rgba(80, 87, 26, .08), rgba(255, 144, 44, .12)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, .04) 0 1px, transparent 1px 18px),
    var(--color-white);
  border: 1px dashed rgba(80, 87, 26, .35);
  border-radius: 6px;
}

.placeholder-grid--photos {
  grid-template-columns: repeat(3, 1fr);
}

.placeholder-grid--photos div {
  aspect-ratio: 4 / 3;
  min-height: auto;
}

.gallery-page {
  padding-block: 76px 96px;
  background: var(--color-cream);
}

.gallery-page__head {
  margin-bottom: 34px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
  gap: 2px;
  width: 100%;
  padding-inline: clamp(8px, 2vw, 24px);
}

.gallery-mosaic__item {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(80, 87, 26, .08), rgba(255, 144, 44, .12)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, .04) 0 1px, transparent 1px 18px),
    var(--color-white);
  border: 0;
  cursor: zoom-in;
}

.gallery-mosaic__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.gallery-mosaic__item:hover img {
  transform: scale(1.04);
}

.gallery-mosaic__item:focus-visible {
  z-index: 1;
  outline: 3px solid var(--color-orange);
  outline-offset: -3px;
}

.gallery-mosaic__item--placeholder {
  cursor: default;
  color: rgba(0, 0, 0, .42);
  border: 1px dashed rgba(80, 87, 26, .25);
}

.gallery-mosaic__item span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.is-gallery-player-open {
  overflow: hidden;
}

.gallery-player {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 88px;
  align-items: center;
  gap: 12px;
  padding: clamp(16px, 3vw, 48px);
  color: var(--color-white);
  background: rgba(11, 14, 5, .92);
}

.gallery-player[hidden] {
  display: none;
}

.gallery-player__stage {
  display: grid;
  min-width: 0;
  margin: 0;
  justify-items: center;
  gap: 14px;
}

.gallery-player__stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  background: rgba(0, 0, 0, .35);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

.gallery-player__stage figcaption {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, .82);
}

.gallery-player__close,
.gallery-player__nav {
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  cursor: pointer;
}

.gallery-player__close:hover,
.gallery-player__close:focus-visible,
.gallery-player__nav:hover,
.gallery-player__nav:focus-visible {
  background: rgba(255, 255, 255, .24);
}

.gallery-player__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
}

.gallery-player__nav {
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  flex: 0 0 58px;
  aspect-ratio: 1;
  font-size: 44px;
  line-height: 1;
}

.gallery-player__nav--prev {
  justify-self: end;
}

.gallery-player__nav--next {
  justify-self: start;
}

.contacts__panel {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contacts__map {
  position: relative;
  order: 2;
  overflow: hidden;
  min-height: 520px;
  background: #e9dfc8;
}

.contacts__map::before,
.contacts__map::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .36);
}

.contacts__map::before {
  top: 28%;
  left: -8%;
  width: 118%;
  height: 2px;
  transform: rotate(-13deg);
}

.contacts__map::after {
  top: 14%;
  left: 46%;
  width: 2px;
  height: 100%;
  transform: rotate(26deg);
}

.contacts__map span {
  position: absolute;
  top: 52%;
  left: 54%;
  width: 30px;
  height: 30px;
  background: var(--color-orange);
  border: 7px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 144, 44, .28);
}

.contacts__content {
  display: grid;
  order: 1;
  align-content: center;
  align-items: center;
  justify-items: start;
  gap: 42px;
  min-height: 500px;
  padding: 76px 70px;
}

.contacts__content.has-contact-socials {
  grid-template-columns: minmax(0, 1fr) 180px;
}

.contacts__main {
  display: grid;
  justify-items: start;
}

.contacts__main h2 {
  max-width: 760px;
}

.contacts ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.contacts a:not(.button):hover {
  color: var(--color-orange);
}

.booking--page {
  margin-top: 0;
}

.contacts-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .72fr);
  gap: 0;
  padding-top: 80px;
}

.contacts-page__map {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #e9dfc8;
}

.contacts-page__map::before,
.contacts-page__map::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .36);
}

.contacts-page__map::before {
  top: 30%;
  left: -12%;
  width: 128%;
  height: 2px;
  transform: rotate(-12deg);
}

.contacts-page__map::after {
  top: 8%;
  left: 48%;
  width: 2px;
  height: 112%;
  transform: rotate(24deg);
}

.contacts-page__pin {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 54%;
  width: 34px;
  height: 34px;
  background: var(--color-orange);
  border: 8px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 144, 44, .28);
}

.contacts__map iframe,
.contacts-page__map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contacts__map::before,
.contacts__map::after,
.contacts-page__map::before,
.contacts-page__map::after {
  display: none;
}

.contacts-page__info {
  display: grid;
  align-content: center;
  align-items: center;
  gap: 34px;
  padding: 64px;
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contacts-page__info.has-contact-socials {
  grid-template-columns: minmax(0, 1fr) 150px;
}

.contacts-page__details {
  display: grid;
  gap: 34px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-olive);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.contact-item__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item__label,
.contacts-page__emails p {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-olive);
}

.contact-item__coords {
  margin-top: 12px;
}

.contacts-page a {
  color: var(--color-olive);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .25s ease;
}

.contacts-page a:hover {
  color: var(--color-orange);
}

.contacts-page__phones,
.contacts-page__emails {
  display: grid;
  justify-items: start;
}

.contacts-page__phones {
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
}

.contacts-page__emails {
  gap: 8px;
}

.contacts-page__emails p:not(:first-child) {
  margin-top: 18px;
}

.contact-socials {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-height: 220px;
  padding-left: 34px;
  border-left: 1px solid rgba(80, 87, 26, .34);
}

.contacts .contact-socials {
  min-height: 250px;
  padding-left: 46px;
}

.contact-socials__links {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.contact-socials p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-olive);
}

.contact-socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  color: var(--color-olive);
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.contact-socials__link svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: currentColor;
}

.contacts-page .contact-socials__link {
  text-decoration: none;
}

.contact-socials__link:hover,
.contact-socials__link:focus-visible,
.contacts a.contact-socials__link:hover,
.contacts a.contact-socials__link:focus-visible,
.contacts .contact-socials__link:hover,
.contacts .contact-socials__link:focus-visible,
.contacts-page a.contact-socials__link:hover,
.contacts-page a.contact-socials__link:focus-visible,
.contacts-page .contact-socials__link:hover,
.contacts-page .contact-socials__link:focus-visible {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-1px);
}

.footer {
  color: var(--color-white);
  background: var(--color-ink);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
}

.footer__nav,
.footer__links,
.footer__socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 16px;
}

.footer__socials {
  gap: 9px;
}

.footer__document {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 260px;
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.footer__document:hover,
.footer__document:focus-visible,
.footer a.footer__document:hover,
.footer a.footer__document:focus-visible {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.footer__social {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.footer__social svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.footer__social:hover,
.footer__social:focus-visible,
.footer a.footer__social:hover,
.footer a.footer__social:focus-visible {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .topbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    justify-self: center;
  }

  .brand__logo-wrap {
    width: min(300px, 34vw);
    height: 64px;
  }

  .address,
  .topbar__left .phone,
  .topbar__right .button {
    display: none;
  }

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

  .main-nav {
    position: fixed;
    inset: 88px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    color: var(--color-black);
    background: var(--color-cream);
    border-bottom: 0;
    transition: max-height .3s ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }

  .main-nav__inner {
    display: grid;
    justify-content: stretch;
    min-height: auto;
    gap: 0;
    padding-block: 18px;
  }

  .main-nav a {
    min-height: 52px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

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

  .booking__form .button {
    grid-column: 1 / -1;
  }

  .about__grid,
  .contacts__panel,
  .contacts-page,
  .reviews-layout,
  .not-found-guide,
  .gallery-block,
  .room-showcase,
  .info-panel--wide {
    grid-template-columns: 1fr;
  }

  .advantages,
  .room-grid,
  .offer-grid,
  .service-grid,
  .room-info-grid,
  .room-info-grid__features,
  .amenities-grid,
  .gallery-mosaic,
  .placeholder-grid,
  .not-found-links,
  .placeholder-grid--photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage {
    flex-basis: calc(50% - 9px);
    max-width: calc(50% - 9px);
  }

  .info-panel--wide p,
  .info-panel--wide h2 {
    grid-column: auto;
    grid-row: auto;
  }

  .room-grid--single,
  .reviews-layout .review-grid {
    grid-template-columns: 1fr;
  }

  .room-card--featured {
    grid-template-columns: 1fr;
  }

  .room-card--featured img,
  .room-card--featured .room-card__media {
    min-height: 360px;
  }

  .home-room-carousel__nav {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    flex-basis: 36px;
    font-size: 28px;
  }

  .home-room-carousel__nav--prev {
    left: 12px;
  }

  .home-room-carousel__nav--next {
    right: 12px;
  }

  .club-strip {
    grid-template-columns: 1fr;
  }

  .club-strip__image {
    min-height: 360px;
  }

  .gallery-story .description-placeholder {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1506px);
  }

  .topbar__inner {
    min-height: 74px;
    gap: 12px;
  }

  .language {
    width: 38px;
    height: 38px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .brand__text {
    font-size: 18px;
  }

  .brand__logo-wrap {
    width: min(240px, 42vw);
    height: 54px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    inset: 74px 0 auto;
  }

  .hero,
  .hero__content {
    min-height: 76vh;
  }

  .page-hero,
  .page-hero__content {
    min-height: 460px;
  }

  .hero__content {
    padding-top: 118px;
    padding-bottom: 78px;
  }

  .page-hero__content {
    padding-top: 116px;
    padding-bottom: 58px;
  }

  .page-hero--about,
  .page-hero--about .page-hero__content {
    min-height: 380px;
  }

  .page-hero--about .page-hero__content {
    padding-bottom: 46px;
  }

  body[data-page="about"] .gallery-story {
    padding-top: 42px;
  }

  .inner-title {
    padding-top: 128px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(44px, 11.4vw, 64px);
    line-height: .94;
  }

  h2 {
    font-size: clamp(34px, 8.8vw, 50px);
    line-height: 1;
  }

  h3, .h3 {
    font-size: 21px;
  }

  .hero h1 {
    font-size: clamp(42px, 9.2vw, 58px);
  }

  .page-hero h1 {
    font-size: clamp(40px, 8.8vw, 54px);
  }

  .hero__lead,
  .page-hero__lead,
  .about__grid p,
  .review p {
    font-size: 17px;
  }

  .section__head > *,
  .section__intro,
  .about__grid,
  .contacts__content,
  .room-summary,
  .info-panel {
    min-width: 0;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .booking {
    margin-top: 0;
    width: 100%;
    padding: 18px 14px;
  }

  .booking__form,
  .advantages,
  .room-grid,
  .reviews-layout,
  .offer-grid,
  .service-grid,
  .review-grid,
  .gallery-block,
  .carousel-placeholder__track,
  .room-showcase,
  .room-info-grid,
  .room-info-grid__features,
  .amenities-grid,
  .gallery-mosaic,
  .home-news__grid,
  .placeholder-grid,
  .not-found-links,
  .placeholder-grid--photos {
    grid-template-columns: 1fr;
  }

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

  .advantage,
  .advantages--count-1 .advantage,
  .advantages--count-2 .advantage,
  .advantages--count-4 .advantage {
    flex-basis: 100%;
    max-width: none;
  }

  .carousel-placeholder {
    min-height: 230px;
  }

  .carousel-placeholder button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    flex: 0 0 42px;
    aspect-ratio: 1;
  }

  body[data-page="about"] .gallery-story .carousel-placeholder button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    flex-basis: 34px;
  }

  body[data-page="about"] .gallery-story .carousel-placeholder button::before {
    inset: 12px 11px;
  }

  .carousel-placeholder button:first-child {
    left: 10px;
  }

  .carousel-placeholder button:last-child {
    right: 10px;
  }

  .placeholder-slide,
  .description-placeholder {
    min-height: 190px;
  }

  .placeholder-slide--image img {
    min-height: 230px;
  }

  .gallery-story .gallery-block__content {
    order: -1;
  }

  .gallery-story .gallery-block__content {
    min-height: auto;
  }

  .gallery-story .gallery-block__content .description-placeholder {
    min-height: auto;
    padding: 24px;
  }

  .gallery-player {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .gallery-player__stage img {
    max-height: calc(100vh - 116px);
  }

  .gallery-player__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .gallery-player__nav {
    position: absolute;
    top: 50%;
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    flex-basis: 34px;
    font-size: 28px;
    transform: translateY(-50%);
  }

  .gallery-player__nav--prev {
    left: 12px;
  }

  .gallery-player__nav--next {
    right: 12px;
  }

  .room-photo-stage {
    min-height: 360px;
  }

  .room-photo-carousel .placeholder-slide,
  .room-photo-carousel .placeholder-slide--image img {
    min-height: 360px;
  }

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

  .section {
    padding-block: 64px;
  }

  .section__head {
    display: grid;
  }

  .link-more {
    width: 100%;
    justify-content: center;
  }

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

  .about__facts span {
    border-right: 0;
    border-bottom: 1px solid var(--color-gray);
  }

  .about__facts span:last-child {
    border-bottom: 0;
  }

  .club-strip__content,
  .contacts__content {
    min-height: 0;
    padding: 46px 24px;
  }

  .contacts-page__info {
    padding: 34px 24px;
  }

  .contacts__content.has-contact-socials,
  .contacts-page__info.has-contact-socials {
    grid-template-columns: 1fr;
  }

  .contact-socials {
    width: 100%;
    justify-items: start;
    min-height: 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(80, 87, 26, .24);
    border-left: 0;
  }

  .contacts .contact-socials {
    padding-left: 0;
  }

  .contact-socials__links {
    grid-template-columns: repeat(2, auto);
    width: fit-content;
  }

  .contact-socials p {
    align-self: center;
  }

  .contacts-page__map {
    min-height: 360px;
  }

  .contact-item {
    grid-template-columns: 1fr;
  }

  .contacts-page__phones {
    font-size: 19px;
  }

  .home-reviews__carousel {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .home-reviews__stage {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .home-reviews__nav {
    grid-row: 2;
    width: 44px;
    height: 44px;
  }

  .home-reviews__nav--prev {
    justify-self: end;
  }

  .home-reviews__nav--next {
    justify-self: start;
  }

  .home-review-card {
    height: 430px;
    padding: 24px;
  }

  .home-news-card__body {
    padding: 20px;
  }

  .club-strip__image,
  .contacts__map {
    min-height: 280px;
  }

  .review-form,
  .review {
    padding: 24px;
  }

  .photo-preview,
  .review__photos {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 28px;
  }

  .footer__nav {
    justify-content: flex-start;
  }

}

@media (max-width: 430px) {
  .topbar__left {
    display: none;
  }

  .topbar__inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    justify-self: start;
  }

  .brand__logo-wrap {
    width: min(210px, 58vw);
    height: 48px;
  }

  .hero__actions {
    width: 100%;
  }

  .not-found-links a {
    min-height: 150px;
  }

  h1 {
    font-size: clamp(38px, 10.4vw, 52px);
  }

  h2 {
    font-size: clamp(30px, 8.6vw, 42px);
  }

  h3, .h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: clamp(34px, 8.8vw, 44px);
  }

  .page-hero h1 {
    font-size: clamp(34px, 8.6vw, 42px);
  }

  .hero__lead,
  .page-hero__lead {
    font-size: 16px;
  }

  .eyebrow,
  .section__kicker {
    width: auto;
    font-size: 12px;
  }

}
