:root {
  --bg: #fbf8f2;
  --card: #ffffff;
  --text: #18241d;
  --muted: #5a6a60;
  --line: rgba(24, 36, 29, 0.11);

  --green-950: #0d1b14;
  --green-900: #153124;
  --green-800: #1e4732;
  --green-700: #245b3f;

  --beige-50: #fbf8f2;
  --beige-100: #f3ecd9;
  --beige-200: #eadfc2;
  --sand: #d9cbb6;

  --shadow: 0 24px 70px rgba(10, 16, 13, 0.16);
  --shadow-soft: 0 16px 44px rgba(10, 16, 13, 0.11);
  --shadow-glow: 0 18px 55px rgba(36, 91, 63, 0.18);
  --radius: 22px;
  --radius-sm: 16px;
  --radius-lg: 28px;
  --space: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 10% -10%, rgba(36, 91, 63, 0.12), transparent 58%),
    radial-gradient(900px 520px at 100% 0%, rgba(243, 236, 217, 0.72), transparent 52%),
    radial-gradient(700px 380px at 35% 100%, rgba(234, 223, 194, 0.42), transparent 55%),
    var(--bg);
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 52px));
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.h2 {
  font-size: clamp(1.65rem, 1.2rem + 1.45vw, 2.35rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.75rem;
}

.h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.gallery-subtitle {
  margin: 18px 0 14px;
}


.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.link {
  text-decoration: none;
  color: var(--green-700);
  font-weight: 600;
}
.link:hover {
  text-decoration: underline;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
}
.header[data-elevate="true"] {
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand__logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.9;
  vertical-align: middle;
}
.brand__name {
  color: var(--green-900);
}
.brand__dot {
  color: rgba(31, 42, 36, 0.78);
}
.brand__place {
  color: var(--green-700);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav__link {
  text-decoration: none;
  font-weight: 600;
  color: rgba(31, 42, 36, 0.78);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}
.nav__link:hover {
  background: rgba(239, 231, 216, 0.7);
  color: var(--green-900);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: rgba(31, 42, 36, 0.9);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.icon-btn__bars {
  width: 18px;
  height: 12px;
  position: relative;
}
.icon-btn__bars::before,
.icon-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(31, 42, 36, 0.75);
}
.icon-btn__bars::before {
  top: 0;
}
.icon-btn__bars::after {
  bottom: 0;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.92);
}
.mobile-menu[data-open="true"] {
  display: block;
}
.mobile-menu__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}
.mobile-menu__link {
  text-decoration: none;
  font-weight: 650;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}
.mobile-menu__cta {
  margin-top: 6px;
}

/* Hero */
.hero {
  position: relative;
  padding: 30px 0 72px;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  transform: scale(1.0);
  filter: saturate(1.03) contrast(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(10, 18, 14, 0.72) 0%,
      rgba(10, 18, 14, 0.58) 45%,
      rgba(10, 18, 14, 0.18) 100%
    ),
    radial-gradient(900px 520px at 12% 18%, rgba(234, 223, 194, 0.22), transparent 62%);
}

.hero__content {
  position: relative;
  min-height: clamp(560px, 70vh, 760px);
  display: grid;
  align-items: start;
  justify-items: flex-start;
  padding-top: clamp(90px, 14vh, 140px);
}

.hero__card {
  width: min(660px, 100%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 0;
}

.kicker {
  margin: 0 0 10px;
  color: rgba(21, 49, 36, 0.78);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero__title {
  margin: 0 0 8px;
  font-size: clamp(2.3rem, 1.7rem + 2.35vw, 3.35rem);
  letter-spacing: -0.05em;
  color: var(--green-900);
}

.hero__subtitle {
  margin: 0 0 22px;
  line-height: 1.7;
  color: rgba(31, 42, 36, 0.78);
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 42, 36, 0.12);
  background: rgba(239, 231, 216, 0.45);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

/* Buttons */
.btn {
  border: 0;
  border-radius: 16px;
  padding: 13px 16px;
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, opacity 220ms ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border: 1px solid rgba(36, 91, 63, 0.45);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(36, 91, 63, 0.26);
}
.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
}
.btn--primary:disabled,
.btn--primary[aria-disabled="true"] {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border: 1px solid rgba(36, 91, 63, 0.45);
  color: #fff;
  box-shadow: none;
  opacity: 0.5;
  cursor: not-allowed;
  animation: none;
}
.btn--primary:disabled:hover,
.btn--primary[aria-disabled="true"]:hover {
  transform: none;
  box-shadow: none;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--green-900);
}
.btn--ghost:hover {
  transform: translateY(-2px);
}
.btn--wide {
  width: 100%;
}

/* Sections */
.section {
  padding: 86px 0;
}
.section--alt {
  background: linear-gradient(180deg, rgba(239, 231, 216, 0.55), rgba(239, 231, 216, 0));
  border-top: 1px solid rgba(31, 42, 36, 0.06);
  border-bottom: 1px solid rgba(31, 42, 36, 0.06);
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section__head--gallery {
  justify-content: flex-start;
  margin-bottom: 12px;
}
.section-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 2.05rem;
  line-height: 1.05;
  white-space: nowrap;
  gap: 14px;
  color: var(--green-900);
  box-shadow: none;
  font-weight: 850;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}
.section-toggle:hover {
  color: #134732;
  transform: none;
  box-shadow: none;
}
.section-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(26, 92, 62, 0.08);
  color: #1a5c3e;
  transition: transform 180ms ease;
  flex: 0 0 auto;
}
.section-toggle[aria-expanded='true'] .section-toggle__icon {
  transform: rotate(180deg);
}
.section-toggle[aria-expanded='true'] {
  color: #134732;
}
.section-toggle[aria-expanded='true'] .section-toggle__icon {
  background: rgba(26, 92, 62, 0.18);
}
.section-toggle:focus-visible {
  outline: 2px solid rgba(26, 92, 62, 0.45);
  outline-offset: 4px;
  border-radius: 6px;
}
@media (max-width: 720px) {
  .section-toggle {
    font-size: 1.8rem;
  }
  .section-toggle__icon {
    width: 24px;
    height: 24px;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: start;
}
.section#about .two-col {
  align-items: end;
}
.section#contacts .two-col {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    'head .'
    'list map';
  align-items: stretch;
}
.section#contacts .two-col__text {
  grid-area: head;
}
.section#contacts .contact-list {
  grid-area: list;
}
.two-col__media {
  display: flex;
  justify-content: center;
  align-content: start;
}
.section#about .two-col__media {
  align-self: end;
}
.section#contacts .two-col__media {
  grid-area: map;
  align-self: stretch;
}

.stay-rules {
  border: 1px solid rgba(31, 42, 36, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.9);
}
.stay-rules__row {
  display: grid;
  grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
  border-top: 1px solid rgba(31, 42, 36, 0.1);
}
.stay-rules__row:first-child {
  border-top: 0;
}
.stay-rules__k {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--green-900);
  background: rgba(31, 42, 36, 0.02);
}
.stay-rules__icon {
  width: 18px;
  min-width: 18px;
  line-height: 1.1;
  opacity: 0.85;
}
.stay-rules__v {
  padding: 16px 18px;
  color: rgba(31, 42, 36, 0.92);
  line-height: 1.5;
}
.stay-rules__v p {
  margin: 0 0 8px;
}
.stay-rules__v p:last-child {
  margin-bottom: 0;
}

.media-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 100%;
}
.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.media-card--stack {
  position: relative;
}
.media-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 800ms ease, transform 800ms ease;
}
.media-card__img--active {
  position: relative;
  opacity: 1;
  transform: scale(1);
}
.media-card__dots {
  position: absolute;
  inset-inline: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.media-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.media-card__dot--active {
  width: 14px;
  background: #ffffff;
}

.features {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(10, 16, 13, 0.06);
}
.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(157, 193, 131, 0.22);
}
.feature__text strong {
  display: block;
}

/* Cards (rooms) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards--pricing .card {
  overflow: visible;
}
.cards--pricing .card__body {
  padding: 24px 20px;
}
.cards--pricing .h3 {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

/* Pricing tiers */
.pricing-tiers {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}
.tier-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tier-row--sub {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tier {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 42, 36, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
}
.tier__title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--green-900);
}
.tier__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(243, 236, 217, 0.78);
  border: 1px solid rgba(31, 42, 36, 0.08);
  font-weight: 800;
  color: var(--green-900);
}
.tier__badgeIcon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.95;
}
.tier__text {
  margin-top: 10px;
  color: rgba(31, 42, 36, 0.82);
  font-weight: 600;
  line-height: 1.35;
}
.tier__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(216, 63, 64, 0.14);
  border: 1px solid rgba(216, 63, 64, 0.33);
  color: rgba(136, 17, 17, 0.96);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-right: 6px;
}
.tier__subtext {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}
.tier__hl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(157, 193, 131, 0.22);
  border: 1px solid rgba(36, 91, 63, 0.18);
  color: var(--green-900);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.tier--accent {
  position: relative;
  overflow: hidden;
}
.tier--accent::before {
  content: "";
  position: absolute;
  inset: -2px -2px auto -2px;
  height: 62px;
  background: radial-gradient(200px 60px at 30% 10%, rgba(36, 91, 63, 0.22), transparent 60%);
  pointer-events: none;
}
.tier--accent .tier__badge,
.tier--accent .tier__text {
  position: relative;
  z-index: 1;
}
.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(31, 42, 36, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.card__body {
  padding: 18px 18px 20px;
}
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}
.tag {
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(243, 236, 217, 0.75);
  border: 1px solid rgba(31, 42, 36, 0.08);
  font-weight: 600;
}
.card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price {
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}

/* Gallery */
.masonry {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.shot {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 42, 36, 0.08);
  aspect-ratio: 4 / 3;
  transform: translateY(0) scale(1);
  transition: transform 240ms ease, box-shadow 240ms ease;
  will-change: transform;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.shot:hover {
  z-index: 2;
  transform: translateY(-4px) scale(1.06);
  box-shadow: var(--shadow);
}
.shot:hover img {
  transform: scale(1.04);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
#reviews .container {
  width: min(1120px, calc(100% - 52px));
}
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.review-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 36, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  gap: 8px;
}
.review-link:hover {
  transform: translateY(-2px);
  background: rgba(243, 236, 217, 0.95);
  box-shadow: var(--shadow-soft);
}
.review-link--yandex {
  background: rgba(216, 63, 64, 0.12);
  border-color: rgba(216, 63, 64, 0.26);
  color: #7d1f1f;
}
.review-link--2gis {
  background: rgba(76, 171, 83, 0.14);
  border-color: rgba(76, 171, 83, 0.3);
  color: #1f5f24;
}
.review-link--vk {
  gap: 8px;
  background: rgba(77, 120, 255, 0.14);
  border-color: rgba(77, 120, 255, 0.3);
  color: #2145a9;
}
.review-link__vk-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.review-link__logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.review-link__logo--yandex {
  width: 18px;
  height: 18px;
}
.review-link__logo--2gis {
  width: 18px;
  height: 18px;
}
.review {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(31, 42, 36, 0.1);
  border-radius: 24px;
  padding: 22px 20px 16px;
  box-shadow: var(--shadow-soft);
}
.review::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 48px;
  line-height: 1;
  color: rgba(36, 91, 63, 0.18);
  font-weight: 800;
}
.review blockquote {
  margin: 0 0 14px;
  line-height: 1.75;
  color: rgba(31, 42, 36, 0.9);
  font-size: 1.04rem;
  flex: 1;
}
.review figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}
.review__author {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: #1f5f24;
  background: rgba(76, 171, 83, 0.16);
  border: 1px solid rgba(76, 171, 83, 0.34);
}
.review__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(76, 171, 83, 0.16);
  color: #1f5f24;
  border: 1px solid rgba(76, 171, 83, 0.34);
}
.review__meta--vk {
  background: rgba(77, 120, 255, 0.14);
  color: #2145a9;
  border: 1px solid rgba(77, 120, 255, 0.3);
}

/* Contacts */
.contact-list {
  display: grid;
  gap: 10px;
  margin: 9px 0;
}
.contact {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.contact:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.contact__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(157, 193, 131, 0.22);
  color: var(--green-900);
}
.contact--phone .contact__icon {
  background: linear-gradient(145deg, #2d9d5c, #1a6b3d);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(26, 107, 61, 0.28);
}
.contact--email .contact__icon {
  background: linear-gradient(145deg, #5a7d9a, #3d5a73);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(61, 90, 115, 0.28);
}
.contact--tg .contact__icon {
  background: #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(28, 143, 196, 0.22);
  border: 1px solid rgba(55, 174, 226, 0.35);
}
.contact__icon--img {
  padding: 6px;
}
.contact__tg-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.contact--vk .contact__icon {
  background: #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(39, 135, 245, 0.22);
  border: 1px solid rgba(39, 135, 245, 0.35);
}
.contact__vk-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.contact--max .contact__icon {
  background: #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(71, 52, 131, 0.22);
  border: 1px solid rgba(92, 63, 179, 0.3);
}
.contact__max-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.contact__svg {
  width: 22px;
  height: 22px;
  display: block;
}
.contact__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.contact__k {
  color: rgba(31, 42, 36, 0.6);
  font-weight: 700;
  font-size: 0.9rem;
}
.contact__v {
  font-weight: 800;
  color: var(--green-900);
}
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 432px;
  border: 0;
  display: block;
}

/* Booking */
.booking {
  display: grid;
  gap: 18px;
}
.booking__head {
  max-width: 640px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
/* Одна ширина у селекта кода страны и «Количество гостей» */
.form--booking {
  --booking-narrow-select: 11rem;
}
.field {
  display: grid;
  gap: 6px;
}
.field--full {
  grid-column: 1 / -1;
}
/* Две колонки: слева имя и почта; справа телефон, гости и мессенджеры */
.form--booking > .booking-form__contact-cols {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.booking-form__contact-col {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.booking-form__contact-col .field {
  align-self: start;
  width: 100%;
  min-width: 0;
}
/* Подсказка про Start — в правой колонке, сразу под строкой Telegram */
.form--booking .booking-form__tg-hint {
  margin: 2px 0 6px;
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 22rem;
  align-self: stretch;
}
.field--messengers .field__legend {
  font-weight: 700;
  color: rgba(31, 42, 36, 0.72);
  font-size: 0.92rem;
  margin-bottom: 0;
}
/* Высота ряда чекбоксов ≈ поле ввода соседней колонки */
.field--messengers .messengers-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}
.field--messengers .form__tg-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
}
.field--messengers .form__tg-login {
  flex: 1 1 11rem;
  min-width: min(100%, 10rem);
  max-width: 20rem;
  display: flex;
  align-items: center;
}
.field--messengers .form__tg-login input {
  width: 100%;
  min-width: 0;
}
.field--messengers .form__tg-login input:disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(31, 42, 36, 0.06);
}
.field--messengers .form__tg-login:has(input:disabled) {
  cursor: help;
}
.field--messengers .form__checkbox--max {
  margin-top: 0.15rem;
}
.booking-total {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(198, 40, 40, 0.35);
  background: rgba(255, 252, 250, 0.95);
  width: 100%;
  box-sizing: border-box;
}
.booking-total__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.booking-total__label {
  font-weight: 750;
  font-size: 0.95rem;
  color: var(--green-900);
}
.booking-total__value {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: rgba(31, 42, 36, 0.92);
}
.booking-total__nights {
  margin: 6px 0 0;
  font-size: 0.82rem;
}
.field--messengers .form__tg-bot-slot {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.btn--tg-open {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border: 1px solid rgba(36, 91, 63, 0.45);
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.btn--tg-open--inline {
  font-size: 0.84rem;
  padding: 8px 12px;
  border-radius: 12px;
  white-space: nowrap;
}
.btn--tg-open:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(36, 91, 63, 0.26);
}
.btn--tg-open.is-disabled,
.btn--tg-open[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
.form > .field {
  align-self: start;
  width: 100%;
  min-width: 0;
}

/* Календарь в левой колонке контактного блока */
.booking-form__contact-col .booking-cal-layout {
  display: block;
  width: 100%;
  min-width: 0;
}
.form--booking .booking-cal-stack {
  display: grid;
  gap: 6px;
  min-width: 0;
  align-content: start;
  align-items: start;
}
.form--booking .booking-cal-stack__title {
  margin: 0;
  padding: 0;
  justify-self: start;
  text-align: left;
}
.field label {
  font-weight: 700;
  color: rgba(31, 42, 36, 0.72);
  font-size: 0.92rem;
}
.field input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 36, 0.18);
  background: rgba(251, 250, 247, 0.9);
  font: inherit;
}
.field input:focus {
  outline: none;
  border-color: rgba(36, 91, 63, 0.55);
  box-shadow: 0 0 0 4px rgba(157, 193, 131, 0.28);
}
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 36, 0.18);
  background: rgba(251, 250, 247, 0.9);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
  min-height: 5.5rem;
}
.field textarea:focus {
  outline: none;
  border-color: rgba(36, 91, 63, 0.55);
  box-shadow: 0 0 0 4px rgba(157, 193, 131, 0.28);
}
.field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 36, 0.18);
  background: rgba(251, 250, 247, 0.9);
  font: inherit;
  cursor: pointer;
  color: rgba(31, 42, 36, 0.88);
}
.field select:focus {
  outline: none;
  border-color: rgba(36, 91, 63, 0.55);
  box-shadow: 0 0 0 4px rgba(157, 193, 131, 0.28);
}
.field--phone .phone-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.field--phone .phone-row__code {
  flex: 0 0 min(var(--booking-narrow-select, 11rem), 100%);
  width: min(var(--booking-narrow-select, 11rem), 100%);
  min-width: 0;
  max-width: min(var(--booking-narrow-select, 11rem), 100%);
  box-sizing: border-box;
}
.field--phone .phone-row__num {
  flex: 1;
  min-width: 0;
  width: auto;
}
/* Количество гостей: в одной строке с почтой — компактный селект */
.field--guest-count {
  width: 100%;
  justify-self: start;
  align-self: start;
  gap: 6px;
  min-width: 0;
}
.field--guest-count label {
  font-size: 0.92rem;
  text-align: left;
  line-height: 1.35;
}
.field--guest-count select {
  width: min(var(--booking-narrow-select, 11rem), 100%);
  max-width: 100%;
  margin: 0;
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  font-size: inherit;
  min-height: 46px;
  box-sizing: border-box;
}
.form__actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  align-items: start;
}
.form__msg {
  margin: 0;
  min-height: 1.2em;
  font-weight: 650;
}
.field__legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink-700, #2b2b2b);
}

.form__checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
}

.form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  user-select: none;
}

.form__checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--green-600, #2d6a4f);
  flex-shrink: 0;
}
.form__tg-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.form__checkbox--tg {
  gap: 0.4rem;
}
.form__max-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.form__checkbox--max {
  gap: 0.4rem;
}

.form__hint {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Календарь бронирования: свободно / занято; в строке справа от «Количество гостей» */
.field--calendar-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
  text-align: left;
  min-width: 0;
  width: 100%;
}
.field--calendar-block .form__hint {
  max-width: 420px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.field--calendar-block .booking-month-cal {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: min(420px, 100%);
}
.booking-month-cal__heading {
  font-weight: 700;
  color: rgba(31, 42, 36, 0.72);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.booking-month-cal {
  border: 1px solid rgba(31, 42, 36, 0.14);
  border-radius: 16px;
  background: rgba(251, 250, 247, 0.95);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-soft);
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.booking-month-cal__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.booking-month-cal__title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-900);
  text-align: center;
  flex: 1;
}
.booking-month-cal__nav {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 36, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-900);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.booking-month-cal__nav:hover:not(:disabled) {
  background: rgba(157, 193, 131, 0.25);
}
.booking-month-cal__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.booking-month-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(31, 42, 36, 0.45);
}
.booking-month-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.booking-month-cal__cell {
  min-height: 52px;
  display: flex;
  align-items: stretch;
}
.booking-month-cal__cell .booking-month-cal__day {
  width: 100%;
  flex: 1;
  min-height: 52px;
}
.booking-month-cal__pad {
  min-height: 52px;
}
.booking-month-cal__day {
  min-height: 52px;
  border-radius: 10px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  padding: 3px 2px 4px;
  line-height: 1.1;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    transform 140ms ease;
}
.booking-month-cal__day-num {
  font-weight: 750;
  font-size: 0.92rem;
}
.booking-month-cal__day-price {
  margin-top: auto;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(31, 42, 36, 0.72);
  white-space: nowrap;
}
/* Сб/вс и праздник: только красный контур (без свечения) */
.booking-month-cal__day--calendar-off {
  box-shadow: inset 0 0 0 2px #c62828;
}
.booking-month-cal__day--free {
  background: rgba(157, 193, 131, 0.42);
  color: rgba(31, 42, 36, 0.88);
}
.booking-month-cal__day--free:hover:not(:disabled) {
  background: rgba(157, 193, 131, 0.62);
  transform: scale(1.04);
}
.booking-month-cal__day--busy {
  background: rgba(230, 140, 140, 0.5);
  color: rgba(31, 42, 36, 0.55);
  cursor: not-allowed;
  pointer-events: none;
}
.booking-month-cal__day--checkout-only {
  background: rgba(245, 201, 138, 0.5);
  color: rgba(31, 42, 36, 0.75);
  border-color: rgba(185, 133, 61, 0.38);
}
.booking-month-cal__day--checkout-only:hover:not(:disabled) {
  background: rgba(245, 201, 138, 0.66);
  transform: scale(1.04);
}
.booking-month-cal__day--past {
  background: rgba(31, 42, 36, 0.06);
  color: rgba(31, 42, 36, 0.28);
  cursor: not-allowed;
  pointer-events: none;
}
.booking-month-cal__day--past .booking-month-cal__day-price {
  color: rgba(31, 42, 36, 0.35);
}
/* Пока не заполнены имя и телефон — клики по дням отключены, цвета дней не меняются */
.booking-month-cal--gated {
  cursor: not-allowed;
}
/* Сетка принимает hover — title: имя, телефон, гости, способ подтверждения */
.booking-month-cal--gated .booking-month-cal__grid {
  pointer-events: auto;
  cursor: not-allowed;
}
.booking-month-cal--gated .booking-month-cal__cell,
.booking-month-cal--gated .booking-month-cal__day {
  pointer-events: none;
}
.booking-month-cal__day--range-start,
.booking-month-cal__day--range-end {
  background: var(--green-800) !important;
  color: #fff !important;
  border-color: rgba(31, 42, 36, 0.2);
  font-weight: 800;
}
.booking-month-cal__day--range-start .booking-month-cal__day-price,
.booking-month-cal__day--range-end .booking-month-cal__day-price,
.booking-month-cal__day--range-mid .booking-month-cal__day-price {
  color: rgba(255, 255, 255, 0.92);
}
.booking-month-cal__day--range-mid {
  background: rgba(36, 91, 63, 0.35) !important;
  color: #fff !important;
}
.booking-month-cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 12px;
  font-size: 0.85rem;
}
.booking-month-cal__leg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.booking-month-cal__leg::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 6px;
  flex-shrink: 0;
}
.booking-month-cal__leg--free::before {
  background: rgba(157, 193, 131, 0.42);
  border: 1px solid rgba(31, 42, 36, 0.1);
}
.booking-month-cal__leg--busy::before {
  background: rgba(230, 140, 140, 0.5);
  border: 1px solid rgba(31, 42, 36, 0.1);
}
.booking-month-cal__leg--checkout-only::before {
  background: rgba(245, 201, 138, 0.5);
  border: 1px solid rgba(185, 133, 61, 0.38);
}
.booking-month-cal__leg--cal-off::before {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #c62828;
  box-sizing: border-box;
}

.booking-month-cal__prices-hint {
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 100%;
}

/* Footer */
.footer {
  padding: 26px 0 40px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(31, 42, 36, 0.08);
  padding-top: 18px;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}
.modal[data-open="true"] {
  display: grid;
  place-items: center;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 20% 10%, rgba(157, 193, 131, 0.22), rgba(0, 0, 0, 0.62) 58%),
    rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal__panel {
  position: relative;
  width: min(980px, calc(100% - 28px));
  background: radial-gradient(900px 400px at 10% 0%, rgba(157, 193, 131, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #0b1410;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(157, 193, 131, 0.25),
    0 0 55px rgba(157, 193, 131, 0.22),
    0 0 130px rgba(157, 193, 131, 0.12);
  overflow: hidden;
}
.modal__panel--video {
  background: #0b0f0d;
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.modal__close:hover {
  transform: rotate(-4deg) scale(1.05);
  background: rgba(157, 193, 131, 0.16);
  border-color: rgba(157, 193, 131, 0.5);
  box-shadow: 0 0 0 4px rgba(157, 193, 131, 0.18);
}
.modal__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(157, 193, 131, 0.25);
}
.modal__img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  background: #0b1410;
}
.modal__video {
  width: 100%;
  max-height: 78vh;
  display: block;
  background: #000;
}
.modal__hint {
  padding: 10px 14px 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.modal[data-modal-type="image"] .modal__backdrop {
  background: rgba(255, 255, 255, 0.38);
}

.modal[data-modal-type="image"] .modal__panel {
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 95px rgba(255, 255, 255, 0.14);
}

.modal[data-open="true"] .modal__panel {
  animation: modalIn 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle button entrance */
.btn {
  will-change: transform, opacity;
}
.btn--primary {
  animation: btnIn 520ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}
.btn--ghost {
  animation: btnIn 520ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}
@keyframes btnIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .nav__link,
  .card,
  .shot img {
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .section#about .two-col {
    align-items: start;
  }
  .section#contacts .two-col {
    grid-template-areas:
      'head'
      'list'
      'map';
    align-items: start;
  }
  .section#contacts .map {
    height: auto;
  }
  .section#contacts .map iframe {
    height: 360px;
    min-height: 360px;
  }
  .stay-rules__row {
    grid-template-columns: 1fr;
  }
  .stay-rules__k {
    padding-bottom: 8px;
  }
  .stay-rules__v {
    padding-top: 0;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .reviews {
    grid-template-columns: 1fr 1fr;
  }
  .masonry {
    grid-template-columns: 1fr 1fr;
  }
  .tier-row {
    grid-template-columns: 1fr;
  }
  .tier-row--sub {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .masonry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }
  .pill {
    display: none;
  }
  .hero__card {
    padding: 20px;
  }
  .section__head {
    align-items: start;
    flex-direction: column;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .form--booking > .booking-form__contact-cols {
    grid-template-columns: 1fr;
  }
  .booking-form__contact-col .booking-cal-layout {
    text-align: center;
  }
  .form--booking .booking-cal-stack {
    justify-items: center;
    width: 100%;
  }
  .form--booking .booking-cal-stack__title {
    text-align: center;
    justify-self: center;
  }
  .form--booking .booking-form__tg-hint {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .field--messengers .form__tg-bot-slot {
    margin-left: 0;
    width: 100%;
    justify-content: stretch;
  }
  .field--messengers .form__tg-bot-slot .btn--tg-open--inline {
    width: 100%;
    justify-content: center;
  }
  /* Кнопка отправки в конце формы */
  .form--booking .form__actions {
    order: 10;
  }
  .field--calendar-block {
    align-items: center;
    text-align: center;
  }
  .field--calendar-block .form__hint {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .field--calendar-block .booking-month-cal {
    margin-left: auto;
    margin-right: auto;
  }
  .reviews {
    grid-template-columns: 1fr;
  }
}

