@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Comfortaa", sans-serif;
  background: #f2f4ef;
  color: #0e0e0e;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Neucha", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 136px;
}

em {
  font-style: normal;
  color: #7a9b82;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: nowrap;
}

.btn--solid {
  background: #1f3d2b;
  color: #fff;
}

.btn--solid:hover {
  background: #2f5a3f;
  box-shadow: 0 12px 28px rgba(31, 61, 43, 0.32);
}

.header .btn--solid {
  background: #EFEBE5;
  color: #1f3d2b;
}

.header .btn--solid:hover {
  background: #fff;
  color: #1f3d2b;
  box-shadow: 0 12px 28px rgba(31, 61, 43, 0.32);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #1f3d2b;
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 16px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.header.is-scrolled {
  padding: 13px 0;
  background: #1f3d2b;
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo__mark {
  display: grid;
  place-items: center;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.logo__mark img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo:hover .logo__mark {
  transform: rotate(-12deg);
}

.logo:hover .logo__mark {
  transform: rotate(-12deg);
}

.logo__text {
  font-family: "Neucha", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
}

.logo__text small {
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #AAA7A4;
  margin-top: 3px;
}

.logo--light .logo__mark,
.logo--light .logo__text {
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1.5px;
  background: #7a9b82;
  transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover::after {
  width: 100%;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  border-color: #1f3d2b;
  background: #fff;
  color: #1f3d2b;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 260px;
  padding-bottom: 40px;
  background: #12271b;
  color: #fff;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(22, 48, 31, 0.55) 0%, rgba(31, 61, 43, 0.45) 45%, rgba(12, 27, 18, 0.8) 100%), radial-gradient(ellipse at 78% 25%, rgba(122, 155, 130, 0.25), transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7a9b82;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 700;
  margin-bottom: 26px;
  max-width: 900px;
}

.hero__title em {
  color: #EFEBE5;
  font-style: italic;
}

.hero__lead {
  font-size: 18px;
  font-weight: 300;
  color: rgba(224, 219, 213, 0.82);
  max-width: 520px;
  margin-bottom: 38px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 0;
}

.hero__meta-item b {
  display: block;
  font-family: "Neucha", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #EFEBE5;
  line-height: 1;
  text-align: center;
}

.hero__meta-item span {
  font-size: 13px;
  color: #AAA7A4;
  letter-spacing: 0.5px;
}

.house__img,
.about__img,
.gallery__item {
  background-size: cover;
  background-position: center;
}

.section__more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn--dark {
  border-color: #1f3d2b;
  color: #1f3d2b;
}

.btn--dark:hover {
  background: #1f3d2b;
  color: #fff;
  border-color: #1f3d2b;
}

.section__head {
  max-width: 640px;
  margin: 0 auto 62px;
  text-align: center;
}

.section__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #7a9b82;
  margin-bottom: 16px;
}

.section__tag--light {
  color: #7a9b82;
}

.section__title {
  font-size: clamp(34px, 5vw, 54px);
  color: #0e0e0e;
  margin-bottom: 16px;
}

.section__title em {
  font-style: italic;
  color: #1f3d2b;
}

.section__title--light {
  color: #fff;
}

.section__title--light em {
  color: #EFEBE5;
}

.section__lead {
  font-size: 17px;
  font-weight: 300;
  color: #7a9b82;
}

.section__lead--light {
  color: #AAA7A4;
}

.about {
  padding: 130px 0 110px;
}

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

.about__media {
  position: relative;
}

.about__img {
  height: 500px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
}

.about__tag {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: #fff;
  padding: 22px 28px;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
}

.about__stars {
  color: #7a9b82;
  letter-spacing: 3px;
  font-size: 14px;
}

.about__tag b {
  display: block;
  font-family: "Neucha", sans-serif;
  font-size: 18px;
  color: #1f3d2b;
  margin-top: 6px;
}

.about__text .section__title {
  text-align: left;
  margin-bottom: 22px;
}

.about__text p {
  font-size: 16px;
  font-weight: 300;
  color: #7a9b82;
  margin-bottom: 18px;
}

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

.about__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 400;
  color: #0e0e0e;
}

.about__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.house__body .btn {
  align-self: flex-start;
}

.houses {
  padding: 110px 0;
  background: #EFEBE5;
}

.houses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.house {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.house:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
}

.house--feature {
  grid-column: span 2;
  flex-direction: row;
}

.house__img {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.house--feature .house__img {
  flex: 0 0 46%;
  min-height: 340px;
}

.house__body {
  padding: 30px 32px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.house--feature .house__body {
  justify-content: center;
}

.house__badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1f3d2b;
  background: #f2f4ef;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.house__name {
  font-size: 28px;
  color: #0e0e0e;
  margin-bottom: 12px;
}

.house--feature .house__name {
  font-size: 34px;
}

.house__desc {
  margin: 0 0 20px;
  max-width: 420px;
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #2f5a3f;
}

.house__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid #EFEBE5;
}

.house__meta span {
  font-size: 13px;
  font-weight: 500;
  color: #7a9b82;
}

.house__meta span:last-child {
  color: #1f3d2b;
  font-weight: 600;
}

.house__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: "Neucha", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #1f3d2b;
  background: transparent;
  border: 1.5px solid #1f3d2b;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.house__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #1f3d2b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.house__link:hover {
  color: #fff;
  border-color: #1f3d2b;
}
.house__link:hover::before {
  transform: scaleX(1);
}
.house__link:active {
  transform: translateY(0);
}

.services {
  padding: 120px 0;
  background: #12271b;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.service {
  position: relative;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}
.service:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.service:hover::before {
  transform: scale(1.06);
}

.service__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 27, 18, 0.45) 0%, rgba(12, 27, 18, 0.78) 55%, rgba(12, 27, 18, 0.96) 100%);
  transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.service__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.service:hover .service__btn {
  background: #fff;
  color: #1f3d2b;
  border-color: #fff;
}

.service__body {
  position: relative;
  z-index: 2;
  padding: 34px 32px;
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.service__body-text {
  flex: 1;
}

.service__body .btn {
  flex-shrink: 0;
  align-self: flex-end;
}

.service__name {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.service__desc {
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #AAA7A4;
  max-width: 380px;
}

.gallery {
  padding: 40px 0 120px 0;
}

.gallery__item {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery__grid--one {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 210px);
  grid-template-areas: "a1 a1 a2 a3" "a1 a1 a4 a3";
  gap: 16px;
  margin-bottom: 16px;
}

.ga-1 {
  grid-area: a1;
}

.ga-2 {
  grid-area: a2;
}

.ga-3 {
  grid-area: a3;
}

.ga-4 {
  grid-area: a4;
}

.ga-5 {
  grid-area: a5;
}

.gallery__grid--two {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 210px);
  grid-template-areas: "b1 b2 b2 b3" "b1 b2 b2 b4";
  gap: 16px;
}

.gb-1 {
  grid-area: b1;
}

.gb-2 {
  grid-area: b2;
}

.gb-3 {
  grid-area: b3;
}

.gb-4 {
  grid-area: b4;
}

.cta {
  padding: 0 0 120px;
}

.cta__inner {
  padding: 90px 60px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(150deg, #1f3d2b, #0c1b12);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.house__meta span:last-child {
  color: #1f3d2b;
  font-weight: 600;
  flex-basis: 100%;
}

.cta__title {
  position: relative;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
}

.cta__title em {
  font-style: italic;
  color: #EFEBE5;
}

.cta__lead {
  position: relative;
  font-size: 17px;
  font-weight: 300;
  color: #AAA7A4;
  max-width: 480px;
  margin: 0 auto 34px;
}

.cta .btn {
  position: relative;
  background: #EFEBE5;
  color: #1f3d2b;
}

.cta .btn:hover {
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

.footer__social .btn--ghost img {
  filter: brightness(0) invert(1);
  transition: filter 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer__social .btn--ghost:hover img {
  filter: brightness(0) saturate(100%) invert(41%) sepia(15%) saturate(1200%) hue-rotate(93deg) brightness(92%) contrast(90%);
}

.footer__social a:hover {
  color: #1f3d2b !important;
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(14, 14, 14, 0.97);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 90;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav__link {
    font-size: 20px;
  }
  .burger {
    display: flex;
    z-index: 100;
  }
  .header__cta .btn {
    display: none;
  }
  .hero__meta {
    gap: 36px;
    flex-wrap: wrap;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__img {
    height: 400px;
  }
  .houses__grid {
    grid-template-columns: 1fr;
  }
  .house--feature {
    grid-column: span 1;
    flex-direction: column;
  }
  .house--feature .house__img {
    flex: none;
    min-height: 240px;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery__item--big {
    grid-row: span 1;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
/* базовый — блок кнопок в меню скрыт на десктопе */
.nav__cta {
  display: none;
}

@media (max-width: 560px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px;
    background: linear-gradient(160deg, #1f3d2b 0%, #12271b 100%);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 90;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav__link {
    font-family: "Neucha", sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s, opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .nav__link::after {
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    background: #EFEBE5;
  }
  .nav__link:hover {
    color: #EFEBE5;
  }
  /* поочерёдное появление пунктов */
  .nav.is-open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }
  .nav.is-open .nav__link:nth-child(1) {
    transition-delay: 0.12s;
  }
  .nav.is-open .nav__link:nth-child(2) {
    transition-delay: 0.18s;
  }
  .nav.is-open .nav__link:nth-child(3) {
    transition-delay: 0.24s;
  }
  .nav.is-open .nav__link:nth-child(4) {
    transition-delay: 0.3s;
  }
  .nav.is-open .nav__link:nth-child(5) {
    transition-delay: 0.36s;
  }
  /* КНОПКИ ВНУТРИ МЕНЮ */
  .nav__cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 320px;
    margin-top: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.42s;
  }
  .nav.is-open .nav__cta {
    opacity: 1;
    transform: translateY(0);
  }
  .nav__cta .btn {
    display: inline-flex;
    width: 100%;
    padding: 18px;
    font-size: 16px;
  }
  .nav__cta .btn--ghost {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
  }
  .nav__cta .btn--solid {
    background: #EFEBE5; /* главная кнопка — светлая заливка */
    color: #1f3d2b;
  }
  /* бургер остаётся в шапке, ничего сложного */
  .burger {
    display: flex;
    z-index: 100;
  }
  .header__cta .btn {
    display: none;
  } /* старые кнопки в шапке скрыты */
  /* ---- остальные правила ---- */
  .hero__meta {
    gap: 36px;
    flex-wrap: wrap;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__img {
    height: 400px;
  }
  .houses__grid {
    grid-template-columns: 1fr;
  }
  .house--feature {
    grid-column: span 1;
    flex-direction: column;
  }
  .house--feature .house__img {
    flex: none;
    min-height: 240px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item--big {
    grid-row: span 1;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .container {
    padding: 0 20px;
  }
  .hero {
    padding-top: 200px;
    padding-bottom: 40px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__meta {
    position: static;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
  }
  .service__body .btn {
    position: static;
    margin-top: 20px;
  }
  .service__body-text {
    max-width: none;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery__item--big, .gallery__item--wide {
    grid-column: span 1;
  }
  .gallery__scroll {
    display: block;
    overflow: visible;
    margin-bottom: 16px;
    touch-action: pan-y;
  }
  /* второй ряд (4 фотки) прячем только на телефоне */
  .gallery__grid--two {
    display: none;
  }
  .gallery__grid--one {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
    margin-bottom: 0;
    grid-template-columns: none;
    grid-template-rows: none;
    grid-template-areas: none;
  }
  .gallery__item {
    width: 100%;
    height: 70vw; /* высота фото — меняй как нравится */
    min-height: 0;
    grid-area: auto !important;
  }
  .cta__inner {
    padding: 60px 26px;
  }
}
@media (max-width: 560px) and (max-height: 700px) {
  .hero {
    padding-top: 110px;
  }
  .hero__eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .hero__title {
    font-size: 38px;
    margin-bottom: 18px;
  }
  .hero__lead {
    font-size: 15px;
    margin-bottom: 26px;
  }
  .hero__meta-item b {
    font-size: 32px;
  }
  .hero__meta-item span {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1224px) {
  .container {
    padding: 0 40px;
  } /* было 136px — слишком много на планшете */
  .nav {
    gap: 22px;
  } /* пункты меню ближе друг к другу */
  .nav__link {
    font-size: 13px;
  }
  .header__cta {
    gap: 10px;
  }
  .header .btn {
    padding: 12px 22px;
    font-size: 13px;
  }
  .hero {
    padding-top: 160px; /* было 260px — убираем лишний отступ сверху */
    padding-bottom: 40px;
  }
  .hero__title {
    font-size: clamp(40px, 6vw, 64px);
  } /* меньше заголовок */
  .hero__lead {
    font-size: 16px;
  }
  .hero__meta {
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .footer__brand,
  .footer__brand .logo {
    align-items: flex-start;
  }
  .footer__brand .logo {
    justify-content: flex-start;
  }
  .footer__brand .logo__text,
  .footer__brand .logo__text small {
    text-align: left;
  }
}
@media (max-width: 1200px) {
  .hero__meta {
    padding-top: 34px !important;
  }
}
@media (max-width: 560px) {
  .hero__meta {
    padding-top: 34px !important;
  }
}
@media (max-width: 960px) {
  .hero__meta {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
  }
  .hero__meta-item {
    flex: 1;
    text-align: center;
  }
  .hero__meta-item b {
    font-size: 32px;
  }
  .hero__meta-item span {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .hero__actions {
    margin-bottom: 13px;
  }
}
/* HOVER только на десктопе (мышь) */
@media (hover: hover) and (pointer: fine) {
  .btn--solid:hover {
    background: #2f5a3f;
    box-shadow: 0 12px 28px rgba(31, 61, 43, 0.32);
  }
  .header .btn--solid:hover {
    background: #fff;
    color: #1f3d2b;
    box-shadow: 0 12px 28px rgba(31, 61, 43, 0.32);
  }
  .btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  .btn--ghost:hover {
    border-color: #1f3d2b;
    background: #fff;
    color: #1f3d2b;
  }
  .nav__link:hover {
    color: #fff;
  }
  .nav__link:hover::after {
    width: 100%;
  }
  .logo:hover .logo__mark {
    transform: rotate(-12deg);
  }
  .house:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
  }
  .btn--dark:hover {
    background: #1f3d2b;
    color: #fff;
    border-color: #1f3d2b;
  }
  .service:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  }
  .service:hover::before {
    transform: scale(1.06);
  }
  .service:hover .service__btn {
    background: #fff;
    color: #1f3d2b;
    border-color: #fff;
  }
  .cta .btn:hover {
    background: #fff;
  }
  .footer__social .btn--ghost:hover img {
    filter: brightness(0) saturate(100%) invert(41%) sepia(15%) saturate(1200%) hue-rotate(93deg) brightness(92%) contrast(90%);
  }
  .footer__social a:hover {
    color: #1f3d2b;
  }
  .house__link:hover {
    color: #fff;
    border-color: #1f3d2b;
  }
  .house__link:hover::before {
    transform: scaleX(1);
  }
}
/* сброс hover-залипания на тач-устройствах (тап срабатывает с первого раза) */
@media (hover: none) {
  .btn:hover,
  .btn--solid:hover,
  .btn--outline:hover,
  .btn--dark:hover,
  .btn--ghost:hover,
  .house:hover,
  .house__link:hover,
  .nav__link:hover {
    transform: none;
    box-shadow: none;
  }
  /* outline + dark ("Дізнатись більше" у будинків) */
  .btn--outline.btn--dark:hover {
    background: transparent;
    color: #1f3d2b;
    border-color: #1f3d2b;
  }
  /* просто dark ("Дізнатись більше" в about, галерея тощо) */
  .btn--dark:hover {
    background: transparent;
    color: #1f3d2b;
    border-color: #1f3d2b;
  }
  /* ghost (Instagram/Telegram у футері, кнопки в шапці) */
  .btn--ghost:hover {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
  }
  /* solid */
  .btn--solid:hover {
    background: #1f3d2b;
  }
  /* ссылки в футере и меню */
  .nav__link:hover,
  .footer__social a:hover {
    color: inherit;
  }
  .footer__social .btn--ghost:hover img {
    filter: brightness(0) invert(1);
  }
}
@media (hover: none) {
  .btn--outline.btn--dark,
  .btn--outline.btn--dark:hover,
  .btn--outline.btn--dark:focus,
  .btn--outline.btn--dark:active {
    background: transparent !important;
    color: #1f3d2b !important;
    border-color: #1f3d2b !important;
    transform: none !important;
    box-shadow: none !important;
  }
}
a, button, .btn {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.page-hero {
  padding: 180px 0 70px;
  background: linear-gradient(150deg, #1f3d2b, #12271b);
  color: #fff;
  text-align: center;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7a9b82;
  margin-bottom: 20px;
}

.page-hero__title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  margin-bottom: 22px;
}

.page-hero__title em {
  font-style: italic;
  color: #EFEBE5;
}

.page-hero__lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 300;
  color: #AAA7A4;
}

.page-hero--houses {
  padding-bottom: 80px;
}

.page-hero__btn {
  margin-top: 34px;
  background: #EFEBE5;
  color: #1f3d2b;
  border-color: #EFEBE5;
}

.page-hero__btn:hover {
  background: #fff;
  color: #1f3d2b;
  border-color: #fff;
}

.detail {
  padding: 90px 0;
}

.detail--alt {
  background: #EFEBE5;
}

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

.detail__media {
  position: relative;
}

.detail__img {
  height: 560px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
}

.detail__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1f3d2b;
  background: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.detail--alt .detail__badge {
  background: #fff;
}

.detail__name {
  font-size: clamp(30px, 4vw, 44px);
  color: #0e0e0e;
  margin-bottom: 18px;
}

.detail__desc {
  font-size: 16px;
  font-weight: 300;
  color: #7a9b82;
  margin-bottom: 28px;
}

.detail__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(31, 61, 43, 0.08);
}

.detail--alt .spec {
  background: #f2f4ef;
}

.spec__label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #AAA7A4;
}

.spec__value {
  font-family: "Neucha", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1f3d2b;
}

.detail__prices {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(31, 61, 43, 0.12);
  border-bottom: 1px solid rgba(31, 61, 43, 0.12);
}

.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #AAA7A4;
}

.price b {
  font-family: "Neucha", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1f3d2b;
}

.detail__list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.detail__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 300;
  color: #0e0e0e;
}

.detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid #1f3d2b;
}

.detail__note {
  font-size: 13px;
  font-style: italic;
  color: #AAA7A4;
  margin-bottom: 26px;
}

.choose {
  padding: 110px 0;
  background: #12271b;
}

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

.choose__item {
  padding: 26px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.choose__item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.choose__item b {
  display: block;
  font-family: "Neucha", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
}

.choose__item span {
  font-size: 15px;
  color: #7a9b82;
}

@media (max-width: 960px) {
  .detail__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail__img {
    height: 380px;
  }
  .detail--alt .detail__text {
    order: 2;
  }
  .detail--alt .detail__media {
    order: 1;
  }
  .detail__specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .choose__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .detail__prices {
    flex-direction: column;
    gap: 14px;
  }
  .choose__grid {
    grid-template-columns: 1fr;
  }
  .detail__specs {
    grid-template-columns: 1fr 1fr;
  }
}
.compare-cta {
  padding: 46px 0 46px;
  text-align: center;
  background: #EFEBE5;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 27, 18, 0.72);
  backdrop-filter: blur(6px);
  overscroll-behavior: contain;
}

.modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain; /* добавь эту строку */
  background: #f2f4ef;
  border-radius: 18px;
  padding: 46px 44px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: modalIn 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #1f3d2b;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal__close img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: filter 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal__close:hover {
  background: #1f3d2b;
  transform: rotate(90deg);
}

.modal__title {
  font-size: clamp(28px, 4vw, 40px);
  color: #0e0e0e;
  margin-bottom: 8px;
}

.modal__lead {
  font-size: 15px;
  font-weight: 300;
  color: #7a9b82;
  margin-bottom: 12px;
}

.modal__scroll {
  overflow-x: auto;
  margin-bottom: 32px;
}

.ptable {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 14px;
}

.ptable th,
.ptable td {
  text-align: left;
  vertical-align: middle;
}

.ptable th {
  font-family: "Neucha", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: #1f3d2b;
  padding: 14px 12px;
  white-space: nowrap;
}

.ptable th:first-child {
  border-radius: 10px 0 0 0;
}

.ptable th:last-child {
  border-radius: 0 10px 0 0;
}

.ptable td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(31, 61, 43, 0.12);
  color: #0e0e0e;
  font-weight: 300;
}

.ptable td b {
  font-weight: 600;
  color: #1f3d2b;
}

.prow {
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.prow:hover {
  background: rgba(122, 155, 130, 0.12);
}

.tbl-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1f3d2b;
  white-space: nowrap;
  transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.tbl-arrow {
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.prow:hover .tbl-link {
  color: #2f5a3f;
}

.prow:hover .tbl-arrow {
  transform: translateX(4px);
}

.modal__subtitle {
  font-size: 20px;
  color: #0e0e0e;
  margin-bottom: 16px;
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.addon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(31, 61, 43, 0.08);
}

.addon span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #AAA7A4;
}

.addon b {
  font-family: "Neucha", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1f3d2b;
}

.modal__note {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #2f5a3f;
  margin-bottom: 12px;
}

.modal__note b {
  font-weight: 600;
  color: #1f3d2b;
}

.modal__separate {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.modal__separate li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 300;
  color: #2f5a3f;
}

.modal__separate li b {
  font-weight: 600;
  color: #1f3d2b;
}

.modal__separate li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 3px solid #1f3d2b;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .modal__box {
    padding: 40px 20px 30px;
  }
  .addon-list {
    grid-template-columns: 1fr;
  }
}
.ptable--mins {
  margin-bottom: 16px;
}

.ptable--mins td:first-child {
  font-weight: 300;
}

.ptable--mins td:not(:first-child):not(:nth-child(2)) {
  color: #1f3d2b;
}

.modal__note--tip {
  font-style: italic;
  color: #AAA7A4;
  font-size: 13px;
}

@media (max-width: 560px) {
  /* горизонтальный скролл таблицы пальцем */
  .modal__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* плавный скролл на iOS */
    margin-left: -20px; /* растягиваем на всю ширину модалки */
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ptable {
    min-width: 620px; /* таблица не ужимается, а скроллится */
  }
}
.modal__swipe-hint {
  display: none;
  font-size: 12px;
  color: #2f5a3f;
  margin-bottom: 14px;
  text-align: center;
}

@media (max-width: 560px) {
  .modal__swipe-hint {
    display: block;
  }
}
@media (max-width: 560px) {
  .ptable td {
    white-space: nowrap;
  }
}
.house-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 160px;
  padding-bottom: 40px;
  overflow: hidden;
  color: #fff;
}

.house-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.house-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 27, 18, 0.35) 0%, rgba(12, 27, 18, 0.85) 100%);
}

.house-hero__inner {
  position: relative;
  z-index: 2;
  margin-bottom: 150px;
}

.house-hero__back {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #EFEBE5;
  margin-bottom: 22px;
  padding-top: 120px;
  transition: color 0.3s;
}

.house-hero__back:hover {
  color: #7a9b82;
}

.house-hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #EFEBE5;
  background: rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.house-hero__title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  margin-bottom: 16px;
}

.house-hero__lead {
  max-width: 560px;
  font-size: 17px;
  font-weight: 300;
  color: #AAA7A4;
}

.quickspecs {
  background: #12271b;
  padding: 40px 0;
}

.quickspecs__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.qspec {
  text-align: center;
}

.qspec span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #AAA7A4;
  margin-bottom: 6px;
}

.qspec b {
  font-family: "Neucha", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #EFEBE5;
}

.rooms {
  padding: 100px 0 60px;
}

.rooms .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}

.room {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(31, 61, 43, 0.12);
}

.room__title {
  font-size: 26px;
  color: #1f3d2b;
  margin-bottom: 18px;
}

.room__list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.room__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 0;
  font-size: 15px;
  font-weight: 300;
  color: #0e0e0e;
}

.room__list li .about__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.pricebox {
  padding: 60px 0 100px;
}

.pricebox__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  background: #EFEBE5;
  border-radius: 18px;
  padding: 52px 56px;
  align-items: stretch;
}

.pricebox__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2f5a3f;
  margin-bottom: 10px;
}

.pricebox__title {
  font-size: 34px;
  color: #1f3d2b;
  margin-bottom: 32px;
}

.pricebox__rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.rate {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 26px;
  background: #1f3d2b;
  border-radius: 10px;
  border: 1px solid #1f3d2b;
}

.rate__day {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #7a9b82;
}

.rate__price {
  font-family: "Neucha", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.rate__price i {
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.capacity {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 61, 43, 0.1);
}

.capacity__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.capacity__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(31, 61, 43, 0.07);
  color: #1f3d2b;
}

.capacity__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.capacity__base {
  font-family: "Neucha", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1f3d2b;
  line-height: 1.2;
}

.capacity__extra {
  font-size: 14px;
  font-weight: 300;
  color: rgba(31, 61, 43, 0.7);
}

.capacity__extra b {
  font-family: "Neucha", sans-serif;
  font-weight: 600;
  color: #1f3d2b;
}

.guest span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.guest b {
  font-family: "Neucha", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.guest b em {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 2px;
}

.guest:last-child {
  text-align: right;
}

.guest__plus {
  font-family: "Neucha", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.pricebox__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 40px 36px;
  background: #fff;
  border-radius: 10px;
}

.pricebox__cta-title {
  font-family: "Neucha", sans-serif;
  font-size: 22px;
  color: #1f3d2b;
  margin-bottom: 8px;
}

.pricebox__cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(31, 61, 43, 0.7);
  margin-bottom: 24px;
}

.pricebox__phone {
  width: 100%;
  margin-bottom: 20px;
}

.pricebox__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1f3d2b;
  transition: color 0.3s;
}

.pricebox__link:hover {
  color: #2f5a3f;
}

.pricebox__icon {
  width: 34px;
  height: 34px;
}

@media (max-width: 560px) {
  .pricebox__inner {
    padding: 32px 24px;
  }
  .pricebox__rates {
    grid-template-columns: 1fr;
  }
  .pricebox__cta {
    padding: 32px 24px;
  }
}
.extras {
  padding: 100px 0;
  background: #EFEBE5;
}

.extras__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.extras__col {
  background: #fff;
  border-radius: 18px;
  padding: 36px 40px;
}

.extras__subtitle {
  font-size: 20px;
  color: #1f3d2b;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 61, 43, 0.1);
}

.extras__list {
  display: grid;
  gap: 14px;
}

.extras__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  font-weight: 300;
  color: #0e0e0e;
}

.extras__list b {
  font-family: "Neucha", sans-serif;
  font-weight: 500;
  color: #1f3d2b;
  white-space: nowrap;
  padding-left: 16px;
}

@media (max-width: 960px) {
  .quickspecs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .rooms .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pricebox__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
  }
  .pricebox__rates {
    gap: 28px;
  }
  .extras__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .quickspecs__grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricebox__rates {
    flex-direction: column;
    gap: 16px;
  }
  .extras__col {
    padding: 28px 24px;
  }
}
.pricebox__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info {
  position: relative;
  display: inline-flex;
  color: rgba(31, 61, 43, 0.4);
  cursor: help;
  transition: color 0.3s;
}

.info:hover,
.info:focus {
  color: #1f3d2b;
  outline: none;
}

.info__tip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 280px;
  padding: 14px 16px;
  background: #1f3d2b;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(12, 27, 18, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 20;
}

.info__tip b {
  font-family: "Neucha", sans-serif;
  font-weight: 600;
  color: #fff;
}

.info__tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #1f3d2b;
}

.info:hover .info__tip,
.info:focus .info__tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 560px) {
  .info__tip {
    width: 220px;
    left: 0;
    transform: translateX(0) translateY(6px);
  }
  .info__tip::after {
    left: 24px;
  }
  .info:hover .info__tip,
  .info:focus .info__tip {
    transform: translateX(0) translateY(0);
  }
}
.quad {
  position: relative;
  padding: 130px 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-bottom: 90px;
}

.quad__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 27, 18, 0.88) 0%, rgba(12, 27, 18, 0.7) 45%, rgba(12, 27, 18, 0.15) 100%);
}

.quad__inner {
  position: relative;
  z-index: 2;
}

.quad__card {
  max-width: 480px;
  padding: 44px 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 24px 60px rgba(12, 27, 18, 0.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quad__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #EFEBE5;
  background: rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.quad__title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.quad__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
}

.quad__price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0 26px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  align-self: stretch;
}

.quad__price span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.quad__price b {
  font-family: "Neucha", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.quad__price b i {
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.quad__card .btn {
  align-self: center;
}

@media (max-width: 960px) {
  .quad {
    padding: 90px 0;
    margin-bottom: 60px;
  }
}
@media (max-width: 560px) {
  .quad__card {
    padding: 34px 26px;
  }
  .quad__overlay {
    background: linear-gradient(180deg, rgba(12, 27, 18, 0.55) 0%, rgba(12, 27, 18, 0.9) 100%);
  }
}
.gallery-page {
  padding: 80px 0 110px;
}

.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-page__item {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-page__item:hover {
  transform: scale(0.98);
  filter: saturate(1.1);
}

.gallery-page__item--tall {
  grid-row: span 2;
}

.gallery-page__item--wide {
  grid-column: span 2;
}

@media (max-width: 960px) {
  .gallery-page__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-page__item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .gallery-page__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-page__item--tall {
    grid-row: span 1;
  }
  .gallery-page__item--wide {
    grid-column: span 1;
  }
}
.contact {
  padding: 90px 0 110px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.contact__card {
  position: relative;
  background: #1f3d2b;
  color: #fff;
  border-radius: 18px;
  padding: 52px 52px 44px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(31, 61, 43, 0.22);
}

.contact__card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.contact__eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.contact__title {
  font-size: 34px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}

.contact__intro {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 340px;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

a.contact__item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact__ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact__ico svg {
  width: 22px;
  height: 22px;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact__label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact__value {
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  transition: color 0.3s;
  word-break: break-word;
}

a.contact__value:hover {
  color: #EFEBE5, #1f3d2b, #ffe;
}

.contact__socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.contact__soc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 40px;
  background: #fff;
  color: #1f3d2b;
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.contact__soc img {
  width: 24px;
  height: 24px;
  transform: translateY(-2px);
}

.contact__soc:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.contact__map {
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(31, 61, 43, 0.12);
  box-shadow: 0 24px 60px rgba(31, 61, 43, 0.12);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

@media (max-width: 960px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact__map,
  .contact__map iframe {
    min-height: 380px;
  }
}
@media (max-width: 560px) {
  .contact__card {
    padding: 40px 26px 34px;
  }
  .contact__title {
    font-size: 28px;
  }
  .contact__socials {
    flex-direction: column;
  }
  .contact__soc {
    justify-content: center;
  }
}
.info-section {
  padding: 90px 0;
}

.info-section--alt {
  background: #EFEBE5;
}

.info-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.info-head .section__lead {
  margin-top: 16px;
}

.info-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-price {
  background: #EFEBE5;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(31, 61, 43, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-price:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 61, 43, 0.1);
}

.info-section--alt .info-price {
  background: #fff;
}

.info-price h3 {
  font-size: 22px;
  color: #1f3d2b;
  margin-bottom: 20px;
}

.info-price h3 small {
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #AAA7A4;
  margin-top: 2px;
}

.info-price p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid rgba(31, 61, 43, 0.1);
}

.info-price p span {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #AAA7A4;
}

.info-price p b {
  font-family: "Neucha", sans-serif;
  font-size: 20px;
  color: #1f3d2b;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  position: relative;
  background: #EFEBE5;
  border-radius: 18px;
  padding: 44px;
}

.info-section--alt .info-card {
  background: #fff;
}

.info-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(31, 61, 43, 0.08);
  color: #1f3d2b;
  margin-bottom: 20px;
}

.info-card__ico svg {
  width: 28px;
  height: 28px;
}

.info-card__title {
  font-size: 26px;
  color: #1f3d2b;
  margin-bottom: 20px;
}

.info-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #0e0e0e;
  margin-bottom: 14px;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card p b {
  font-weight: 600;
  color: #2f5a3f;
}

.info-card--note {
  background: #12271b;
}

.info-card--note .info-card__title {
  color: #fff;
}

.info-notelist {
  display: grid;
  gap: 14px;
}

.info-notelist li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #EFEBE5;
}

.info-notelist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid #7a9b82;
}

.info-card--cta {
  background: #1f3d2b;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card--cta .info-card__title {
  color: #fff;
}

.info-card--cta p {
  color: #EFEBE5;
  margin-bottom: 24px;
}

.info-card--cta .btn {
  align-self: flex-start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.info-item {
  padding: 28px 26px;
  background: #EFEBE5;
  border-radius: 18px;
  border-top: 3px solid #1f3d2b;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-section--alt .info-item {
  background: #fff;
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 61, 43, 0.1);
}

.info-item__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(31, 61, 43, 0.07);
  color: #1f3d2b;
  margin-bottom: 16px;
}

.info-item__ico svg {
  width: 24px;
  height: 24px;
}

.info-item h3 {
  font-size: 20px;
  color: #1f3d2b;
  margin-bottom: 12px;
}

.info-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #0e0e0e;
}

@media (max-width: 960px) {
  .info-prices {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .info-prices,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    padding: 32px 24px;
  }
  .info-item {
    padding: 24px 20px;
  }
}
.info-item__ico img,
.info-card__ico img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.info-item__ico img,
.info-card__ico img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.info-item__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-item__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #0e0e0e;
}

.info-item__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1f3d2b;
}

.info-section--green {
  background: #1f3d2b;
}

.info-section--green .info-card {
  background: rgba(255, 255, 255, 0.07);
}

.info-section--green .info-card__title {
  color: #fff;
}

.info-section--green .info-card p {
  color: #EFEBE5;
}

.info-section--green .info-card p b {
  color: #7a9b82;
}

.info-section--green .info-card__ico {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.info-cards--4 {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 760px) {
  .info-cards--4 {
    grid-template-columns: 1fr;
  }
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.booking-layout .booking-cal,
.booking-layout .calc {
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
  }
}
.calc__row .calc__label {
  flex: 1;
  min-width: 0;
}

.calc__row .calc__stepper {
  flex-shrink: 0;
}

.booking-cal {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 16px;
}

.booking-cal__title {
  font-size: 32px;
  color: #1f3d2b;
  text-align: center;
  margin-bottom: 8px;
}

.booking-cal__hint {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: #ff0000;
  margin-bottom: 20px;
}

.booking-cal__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 14px;
  color: #0e0e0e;
  margin-bottom: 20px;
}

.booking-cal__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.booking-cal__frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(31, 61, 43, 0.12);
  box-shadow: 0 8px 24px rgba(12, 27, 18, 0.06);
}

.booking-cal__frame iframe {
  display: block;
}

@media (max-width: 560px) {
  .booking-cal__title {
    font-size: 26px;
  }
  .booking-cal__frame iframe {
    height: 1100px;
  }
}
.calc__head {
  margin-bottom: 20px;
}

.calc__head-title {
  font-size: 28px;
  color: #1f3d2b;
  text-align: center;
  margin-bottom: 8px;
}

.calc__head-desc {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: #ff0000;
  line-height: 1.5;
}

.calc {
  max-width: 620px;
  margin: 32px auto 0;
}

.calc__toggle {
  width: 100%;
}

.calc__body {
  margin-top: 20px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(31, 61, 43, 0.1);
  display: grid;
  gap: 20px;
}

.calc__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.calc__label {
  font-size: 15px;
  font-weight: 500;
  color: #1f3d2b;
}

.calc__label small {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(31, 61, 43, 0.6);
  margin-top: 2px;
}

.calc__seg {
  display: inline-flex;
  gap: 8px;
}

.calc__seg-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #1f3d2b;
  padding: 10px 18px;
  border: 1px solid rgba(31, 61, 43, 0.2);
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s;
}

.calc__seg-btn.is-active {
  background: #1f3d2b;
  border-color: #1f3d2b;
  color: #fff;
}

.calc__stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(31, 61, 43, 0.2);
  border-radius: 100px;
  padding: 4px;
}

.calc__minus,
.calc__plus {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #EFEBE5;
  color: #1f3d2b;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s;
}

.calc__minus:hover,
.calc__plus:hover {
  background: #1f3d2b;
  color: #fff;
}

.calc__minus:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calc__minus:disabled:hover {
  background: #EFEBE5;
  color: #1f3d2b;
}

.calc__num {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: "Neucha", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1f3d2b;
}

.calc__row--sauna {
  align-items: flex-start;
}

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

.calc__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #0e0e0e;
  cursor: pointer;
}

.calc__check input {
  accent-color: #1f3d2b;
  width: 18px;
  height: 18px;
}

.calc__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 61, 43, 0.1);
}

.calc__total span {
  font-size: 16px;
  font-weight: 500;
  color: #1f3d2b;
}

.calc__total b {
  font-family: "Neucha", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #1f3d2b;
}

@media (max-width: 560px) {
  .calc__body {
    padding: 24px 20px;
  }
  .calc__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .calc__seg {
    flex-direction: column;
  }
  .calc__date,
  .calc__stepper {
    align-self: flex-start;
    width: auto;
  }
}
.calc__seg--days {
  flex-wrap: wrap;
  gap: 6px;
}

.calc__seg--days .calc__seg-btn {
  padding: 9px 14px;
  min-width: 44px;
}

.calc__row--breakdown {
  display: grid;
  gap: 6px;
}

.calc__row--breakdown:empty {
  display: none;
}

.calc__bd-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(31, 61, 43, 0.75);
}

.calc__bd-item b {
  font-weight: 500;
  color: #1f3d2b;
}

.calc__tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  background: #1f3d2b;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 5;
}

.calc__tip.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.calc__tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1f3d2b;
}

.calc__row[hidden] {
  display: none !important;
}

.calc__body[hidden] {
  display: none !important;
}

.calc__house {
  border: 1px solid rgba(31, 61, 43, 0.12);
  border-radius: 10px;
  padding: 22px 24px;
  display: grid;
  gap: 18px;
  margin-bottom: 16px;
  position: relative;
}

.calc__house-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.calc__house-title {
  font-family: "Neucha", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1f3d2b;
}

.calc__house-remove {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  line-height: 0;
  z-index: 2;
}

.calc__house-remove img {
  width: 28px;
  height: 28px;
}

.calc__pet small {
  color: rgba(31, 61, 43, 0.6);
  font-weight: 400;
}

.calc__pet-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}

.calc__pet {
  padding-top: 0;
}

.calc__info {
  position: relative;
  display: inline-flex;
  cursor: help;
  line-height: 0;
}

.calc__info img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.calc__info:hover img,
.calc__info:focus img {
  opacity: 1;
}

.calc__info-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 320px;
  max-width: 80vw;
  background: #1f3d2b;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  padding: 16px 18px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(12, 27, 18, 0.25);
}

.calc__info-tip b {
  display: block;
  font-family: "Neucha", sans-serif !important;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 8px;
  font-size: 14px;
}

.calc__pet-row .calc__info-tip b {
  font-size: 20px !important;
}

.calc__info:hover .calc__info-tip,
.calc__info:focus .calc__info-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.calc__info-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1f3d2b;
}

@media (max-width: 560px) {
  .calc__info-tip {
    left: 0;
    transform: translateX(0) translateY(6px);
  }
  .calc__info:hover .calc__info-tip,
  .calc__info:focus .calc__info-tip {
    transform: translateX(0) translateY(0);
  }
  .calc__info-tip::after {
    left: 20px;
  }
}
.calc__info--sm {
  vertical-align: middle;
  margin-left: 4px;
}

.calc__info--sm img {
  width: 18px;
  height: 18px;
}

.calc__prepay {
  flex-basis: 100%;
  order: 3;
  font-size: 13px;
  font-weight: 400;
  color: rgba(31, 61, 43, 0.6);
  margin-top: 2px;
}

.calc__prepay-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 14px 18px;
  background: rgba(31, 61, 43, 0.06);
  border-radius: 10px;
}

.calc__prepay-total:empty {
  display: none;
}

.calc__prepay-total span {
  font-size: 14px;
  font-weight: 500;
  color: #1f3d2b;
}

.calc__prepay-total b {
  font-family: "Neucha", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1f3d2b;
}

.calc__copy {
  width: 100%;
  margin-top: 4px;
}

.calc__copy.is-copied {
  background: #2e7d32;
  border-color: #2e7d32;
}

.calc__copy-hint {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: #ff0000;
  margin-top: 4px;
}

.calc__house-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc__type-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #1f3d2b;
  padding: 8px 14px;
  border: 1px solid rgba(31, 61, 43, 0.2);
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s;
}

.calc__type-btn.is-active {
  background: #1f3d2b;
  border-color: #1f3d2b;
  color: #fff;
}

.calc__add {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #1f3d2b;
  padding: 14px;
  border: 1.5px dashed rgba(31, 61, 43, 0.3);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s;
}

.calc__add:hover {
  border-color: #1f3d2b;
  background: rgba(31, 61, 43, 0.03);
}

.calc__house-total {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid rgba(31, 61, 43, 0.1);
}

.calc__house-total span {
  font-size: 14px;
  font-weight: 500;
  color: #1f3d2b;
}

.calc__house-total b {
  font-family: "Neucha", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1f3d2b;
  margin-left: auto;
}

.calc__type-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.calc__phone-field {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 61, 43, 0.1);
}

.calc__phone-label {
  font-size: 15px;
  font-weight: 500;
  color: #1f3d2b;
}

.calc__phone-input {
  display: flex;
  align-items: center;
  border: 1px solid rgba(31, 61, 43, 0.2);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.25s;
  background: #fff;
}

.calc__phone-input:focus-within {
  border-color: #1f3d2b;
}

.calc__phone-prefix {
  font-family: "Neucha", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1f3d2b;
  padding: 12px 4px 12px 20px;
  user-select: none;
}

.calc__phone-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Neucha", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1f3d2b;
  letter-spacing: 1px;
  padding: 12px 20px 12px 8px;
}

.calc__phone-input input::placeholder {
  color: rgba(31, 61, 43, 0.35);
  font-weight: 400;
  letter-spacing: 0;
}

.calc__phone-field.is-invalid .calc__phone-input {
  border-color: #c62828;
}

.calc__phone-error {
  font-size: 13px;
  font-weight: 400;
  color: #c62828;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.calc__phone-field.is-invalid .calc__phone-error {
  opacity: 1;
}

.calc__copy-error {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #c62828;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s, max-height 0.2s, margin 0.2s;
}

.calc__copy-error.is-show {
  opacity: 1;
  max-height: 40px;
  margin-top: 8px;
}

.calc__date {
  font-family: "Neucha", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1f3d2b;
  padding: 11px 18px;
  border: 1px solid rgba(31, 61, 43, 0.2);
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s;
}

.calc__date:focus {
  outline: none;
  border-color: #1f3d2b;
}

.calc__insta {
  display: inline-flex;
  width: auto;
  justify-self: center;
}

.calc__insta img {
  transition: filter 0.25s;
}

.calc__insta:hover img {
  filter: brightness(0) invert(1);
}

.calc--sauna {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(31, 61, 43, 0.12);
}

@media (max-width: 560px) {
  .calc--sauna {
    margin-top: 70px;
    padding-top: 40px;
  }
}
.calc__plus:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calc__plus:disabled:hover {
  background: #EFEBE5;
  color: #1f3d2b;
}

.calc__rules {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.calc__check.is-invalid {
  outline: 2px solid #c62828;
  outline-offset: 4px;
  border-radius: 6px;
  animation: calcAgreeShake 0.4s;
}

@keyframes calcAgreeShake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}
@media (max-width: 560px) {
  /* затемнение-подложка под открытой подсказкой */
  .calc__info.is-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(12, 27, 18, 0.5);
    z-index: 998;
  }
  /* сама подсказка — по центру экрана */
  .calc__info.is-open .calc__info-tip {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto; /* сброс старого bottom */
    transform: translate(-50%, -50%);
    width: calc(100vw - 40px);
    max-width: 360px;
    max-height: 75vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    pointer-events: auto;
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }
  .calc__info.is-open .calc__info-tip::after {
    display: none;
  }
  /* по умолчанию (не открыта) — скрыта; hover/focus на телефоне не показываем */
  .calc__info .calc__info-tip {
    opacity: 0;
    pointer-events: none;
  }
  .calc__info:hover .calc__info-tip,
  .calc__info:focus .calc__info-tip {
    opacity: 0;
  }
  .calc__info.is-open .calc__info-tip {
    opacity: 1;
  }
}
/* ---------- ПРАВИЛА ПРОЖИВАННЯ ---------- */
.rules {
  padding: 40px 0 100px;
}

.rules__inner {
  max-width: 860px;
  margin: 0 auto;
}

.rules__intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #3a5344;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

/* ---- таблиця штрафів ---- */
.rules__fines {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(31, 61, 43, 0.1);
  box-shadow: 0 8px 24px rgba(12, 27, 18, 0.06);
  overflow: hidden;
  margin-bottom: 64px;
}

.rules__fines-head {
  background: #26402e;
  color: #fff;
  padding: 26px 32px;
}

.rules__fines-head h2 {
  font-family: "Amatic SC", cursive;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.rules__fines-head p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 0;
}

.rules__fine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-top: 1px solid rgba(31, 61, 43, 0.08);
}

.rules__fine:first-of-type {
  border-top: none;
}

.rules__fine:nth-child(even) {
  background: rgba(31, 61, 43, 0.025);
}

.rules__fine-text {
  font-size: 15px;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.45;
}

.rules__fine-price {
  flex-shrink: 0;
  font-family: "Neucha", cursive;
  font-size: 20px;
  font-weight: 700;
  color: #26402e;
  white-space: nowrap;
  text-align: right;
}

/* ---- секції правил ---- */
.rules__section {
  margin-bottom: 48px;
}

.rules__section:last-child {
  margin-bottom: 0;
}

.rules__section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: "Comfortaa", cursive;
  font-size: 24px;
  font-weight: 600;
  color: #26402e;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(31, 61, 43, 0.12);
}

.rules__section-num {
  font-family: "Neucha", cursive;
  font-size: 30px;
  font-weight: 700;
  color: #7a9b82;
  line-height: 1;
}

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

.rules__list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.65;
  color: #3a5344;
}

.rules__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7a9b82;
}

.rules__list li b {
  font-weight: 600;
  color: #26402e;
}

/* список для заборон — з хрестиком */
.rules__list--ban li::before {
  content: "×";
  top: -2px;
  left: 2px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #b3453b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

/* штрафи текстилю — компактний рядок */
.rules__textiles {
  list-style: none;
  margin: 16px 0 0;
  padding: 18px 22px;
  background: rgba(31, 61, 43, 0.04);
  border-radius: 14px;
  display: grid;
  gap: 10px;
}

.rules__textiles li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  font-weight: 300;
  color: #3a5344;
  padding-left: 0;
}

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

.rules__textiles b {
  font-family: "Neucha", cursive;
  font-size: 17px;
  font-weight: 700;
  color: #26402e;
  white-space: nowrap;
}

.rules__note {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 300;
  font-style: italic;
  color: #6a7d70;
  line-height: 1.6;
  text-align: center;
}

/* ---- нижній заклик ---- */
.rules__cta {
  margin-top: 64px;
  text-align: center;
  padding: 44px 32px;
  background: linear-gradient(150deg, #26402e, #0c1b12);
  border-radius: 24px;
  color: #fff;
}

.rules__cta h3 {
  font-family: "Amatic SC", cursive;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px;
}

.rules__cta p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

.rules__cta .btn {
  background: #e7e2d8;
  color: #26402e;
}

.rules__cta .btn:hover {
  background: #fff;
}

@media (max-width: 640px) {
  .rules__fines-head {
    padding: 22px 20px;
  }
  .rules__fines-head h2 {
    font-size: 34px;
  }
  .rules__fine {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 20px;
  }
  .rules__fine-price {
    text-align: left;
  }
  .rules__section-title {
    font-size: 21px;
  }
  .rules__textiles li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}
.footer {
  position: static;
  background: #12271b;
  color: #AAA7A4;
  padding: 80px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .logo {
  margin-bottom: 20px;
}

.footer__about {
  font-size: 14px;
  font-weight: 300;
  color: #AAA7A4;
  max-width: 260px;
  margin-bottom: 22px;
}

.footer__social {
  display: flex;
  gap: 18px;
}

.footer__social a {
  font-size: 14px;
  font-weight: 500;
  color: #EFEBE5;
  transition: color 0.3s;
}

.footer__social a:hover {
  color: #7a9b82;
}

.footer__title {
  font-family: "Neucha", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__col a,
.footer__contact p {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #AAA7A4;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer__col a:hover,
.footer__contact a:hover {
  color: #EFEBE5;
}

.footer__bottom {
  padding-top: 26px;
  font-size: 13px;
  color: rgba(170, 167, 164, 0.6);
}

.footer__social img {
  filter: brightness(0) invert(1);
}

@media (max-width: 560px) {
  .footer__grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 44px;
  }
  .footer__brand,
  .footer__col,
  .footer__contact {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__col a,
  .footer__contact p {
    display: block;
    white-space: nowrap; /* «VIP House», «Villa 1 та Villa 2» в одну строку */
    margin-bottom: 6px;
  }
  .footer__title {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .footer__col a,
  .footer__contact p {
    font-size: 14px;
  }
  .footer__social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer__bottom {
    text-align: center;
    font-size: 12px;
  }
  .footer__brand .logo {
    align-self: center; /* сам логотип по центру блока */
    justify-content: flex-start;
    width: auto; /* не растягивать на всю ширину */
  }
}
.fleet {
  padding: 100px 0 60px;
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.ride {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 27, 18, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ride:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(12, 27, 18, 0.18);
}

.ride__media {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.ride__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 28px 30px 30px;
}

.ride__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1f3d2b;
  background: rgba(31, 61, 43, 0.08);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.ride__name {
  font-family: "Comfortaa", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1f3d2b;
  margin-bottom: 10px;
}

.ride__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #222222;
  margin-bottom: 22px;
}

.ride__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 61, 43, 0.12);
}

.ride__price b {
  font-family: "Comfortaa", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1f3d2b;
  line-height: 1;
}

.ride__price i {
  font-style: normal;
  font-size: 15px;
  font-weight: 500;
  color: #7a9b82;
}

.ride-price-list {
  display: grid;
  gap: 4px;
}

.ride-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31, 61, 43, 0.12);
  font-size: 16px;
  font-weight: 300;
  color: #222222;
}

.ride-price-list li:last-child {
  border-bottom: none;
}

.ride-price-list li em {
  font-style: normal;
  font-size: 13px;
  color: #7a9b82;
}

.ride-price-list li b {
  font-family: "Comfortaa", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1f3d2b;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .fleet__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .ride__media {
    height: 200px;
  }
  .ride__body {
    padding: 24px 22px 26px;
  }
}
/* ============================================================
   ABOUT PAGE — SECRET
   Кольори взяті з основної теми сайту:
   green #1f3d2b · green-deep #12271b · green-mid #2f5a3f
   green-light #7a9b82 · light #EFEBE5 · cream #f2f4ef
   ============================================================ */
.about-intro,
.about-stats,
.about-pools,
.about-houses,
.about-diff {
  padding: 90px 0;
}

.about-diff {
  margin-bottom: 90px;
}

/* ---------- INTRO ---------- */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro__img {
  width: 100%;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  height: 500px;
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
}

.about-intro__text .section__title {
  margin: 12px 0 22px;
}

.about-intro__text p {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-intro__text .btn {
  margin-top: 10px;
}

/* ---------- ЦИФРИ ---------- */
.about-stats {
  background: #1f3d2b;
  padding: 70px 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.about-stat {
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-stat:last-child {
  border-right: none;
}

.about-stat__num {
  display: block;
  font-family: "Neucha", sans-serif;
  font-size: 64px;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}

.about-stat__label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .about-stats__grid {
    grid-template-columns: 1fr;
  }
  .about-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 24px;
  }
  .about-stat:last-child {
    border-bottom: none;
  }
}
/* ---------- БАСЕЙНИ ---------- */
.about-pools__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 46px;
}

.about-pool {
  background: #fff;
  border: 1px solid rgba(31, 61, 43, 0.1);
  border-radius: 18px;
  padding: 40px 36px;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-pool:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
}

.about-pool--vip {
  background: #1f3d2b;
  border-color: #1f3d2b;
}

.about-pool__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f2f4ef;
  margin-bottom: 22px;
}

.about-pool--vip .about-pool__ico {
  background: rgba(255, 255, 255, 0.1);
}

.about-pool__ico img {
  width: 30px;
  height: 30px;
}

.about-pool--vip .about-pool__ico img {
  filter: brightness(0) invert(1);
}

.about-pool h3 {
  font-family: "Neucha", sans-serif;
  font-size: 30px;
  color: #1f3d2b;
  margin-bottom: 12px;
}

.about-pool--vip h3 {
  color: #fff;
}

.about-pool p {
  color: #4a4a4a;
  line-height: 1.7;
}

.about-pool--vip p {
  color: rgba(255, 255, 255, 0.82);
}

.about-pool b {
  color: inherit;
  font-weight: 700;
}

/* ---------- БУДИНКИ ---------- */
.about-houses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}

.house-card {
  background: #fff;
  border: 1px solid rgba(31, 61, 43, 0.1);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.house-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
}

.house-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.house-card__top h3 {
  font-family: "Neucha", sans-serif;
  font-size: 30px;
  color: #1f3d2b;
}

.house-card__badge {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f2f4ef;
  color: #2f5a3f;
  white-space: nowrap;
}

.house-card__badge--vip {
  background: #1f3d2b;
  color: #fff;
}

.house-card__badge--forest {
  background: #7a9b82;
  color: #12271b;
}

.house-card__desc {
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.house-card__feats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(31, 61, 43, 0.1);
  padding-top: 20px;
}

.house-card__feats li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #1f3d2b;
  background: #f2f4ef;
  padding: 7px 14px;
  border-radius: 999px;
}

.house-card__feats img {
  width: 18px;
  height: 18px;
}

/* ---------- ЧИМ ВІДРІЗНЯЮТЬСЯ ---------- */
.about-diff {
  background: #12271b;
}

.about-diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 46px;
}

.about-diff__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 32px;
}

.about-diff__item h4 {
  font-family: "Neucha", sans-serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.about-diff__item p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
  .about-stat:nth-child(2) {
    border-right: none;
  }
  .about-houses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-intro,
  .about-stats,
  .about-pools,
  .about-houses,
  .about-diff {
    padding: 60px 0;
  }
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-intro__img {
    aspect-ratio: 4/3;
  }
  .about-pools__grid,
  .about-houses__grid,
  .about-diff__grid {
    grid-template-columns: 1fr;
  }
  .about-stat__num {
    font-size: 52px;
  }
}
@media (max-width: 576px) {
  .about-stats__grid {
    grid-template-columns: 1fr;
  }
  .about-stat {
    border-right: none;
    border-bottom: 1px solid rgba(31, 61, 43, 0.12);
    padding-bottom: 24px;
  }
  .about-stat:last-child {
    border-bottom: none;
  }
}
/* ============================================================
   ІСТОРІЯ
   ============================================================ */
.about-story {
  padding: 90px 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story__text .section__title {
  margin: 12px 0 22px;
}

.about-story__text p {
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-story__aside {
  background: #f2f4ef;
  border: 1px solid rgba(31, 61, 43, 0.1);
  border-radius: 18px;
  padding: 40px 36px;
  position: sticky;
  top: 110px;
}

.about-story__name h3 {
  font-family: "Neucha", sans-serif;
  font-size: 28px;
  color: #1f3d2b;
  margin: 12px 0 16px;
  line-height: 1.3;
}

.about-story__name p {
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-story__name p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   КУДИ ДАЛІ (путівник)
   ============================================================ */
.about-guide {
  padding: 90px 0;
  background: #f2f4ef;
}

.about-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(31, 61, 43, 0.1);
  border-radius: 18px;
  padding: 34px 30px;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.14);
}

.guide-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f2f4ef;
  margin-bottom: 20px;
}

.guide-card__ico img {
  width: 28px;
  height: 28px;
}

.guide-card h3 {
  font-family: "Neucha", sans-serif;
  font-size: 26px;
  color: #1f3d2b;
  margin-bottom: 12px;
}

.guide-card p {
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.guide-card__link {
  font-weight: 600;
  font-size: 15px;
  color: #2f5a3f;
  transition: gap 0.3s ease, color 0.3s ease;
}

.guide-card:hover .guide-card__link {
  color: #1f3d2b;
}

.guide-card--solid:hover .guide-card__link {
  color: #fff;
}

.guide-card--accent:hover .guide-card__link {
  color: #12271b;
}

/* акцентна картка — часті питання */
.guide-card--accent {
  background: #7a9b82;
  border-color: #7a9b82;
}

.guide-card--accent .guide-card__ico {
  background: rgba(255, 255, 255, 0.18);
}

.guide-card--accent .guide-card__ico img {
  filter: brightness(0) invert(1);
}

.guide-card--accent h3,
.guide-card--accent .guide-card__link {
  color: #12271b;
}

.guide-card--accent p {
  color: #12271b;
  opacity: 0.85;
}

/* темна картка — вільні дати */
.guide-card--solid {
  background: #1f3d2b;
  border-color: #1f3d2b;
}

.guide-card--solid .guide-card__ico {
  background: rgba(255, 255, 255, 0.1);
}

.guide-card--solid .guide-card__ico img {
  filter: brightness(0) invert(1);
}

.guide-card--solid h3 {
  color: #fff;
}

.guide-card--solid p {
  color: rgba(255, 255, 255, 0.82);
}

.guide-card--solid .guide-card__link {
  color: #fff;
}

/* ============================================================
   RESPONSIVE (доповнення)
   ============================================================ */
@media (max-width: 992px) {
  .about-guide__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-story,
  .about-guide {
    padding: 60px 0;
  }
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-story__aside {
    position: static;
  }
  .about-guide__grid {
    grid-template-columns: 1fr;
  }
}
/* ====== Стили страницы выбора бронирования ====== */
/* Цвета и шрифты прописаны в каждом классе отдельно */
.select-page {
  font-family: "Comfortaa", sans-serif;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* мягкое свечение на фоне, как в hero */
.select-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 15%, rgba(122, 155, 130, 0.2), transparent 55%), linear-gradient(160deg, #16301f 0%, #0c1b12 100%);
  z-index: 0;
}

.select-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

/* ЛОГО */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 40px;
  text-decoration: none;
}

.brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f3f1ea;
  display: grid;
  place-items: center;
  font-family: "Neucha", sans-serif;
  font-size: 13px;
  color: #1f3d2b;
  letter-spacing: 1px;
}

.brand__mark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.brand__text {
  text-align: left;
  font-family: "Neucha", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1;
  color: #ffffff;
}

.brand__text small {
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9c4ba;
  margin-top: 4px;
}

.eyebrow {
  display: inline-block;
  font-family: "Comfortaa", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7a9b82;
  margin: 0 0 18px;
}

.select-title {
  font-family: "Neucha", "Comfortaa", sans-serif;
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 16px;
}

.select-title em {
  font-style: italic;
  color: #e8e4da;
}

.select-lead {
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #c9c4ba;
  max-width: 460px;
  margin: 0 auto 46px;
}

/* ====== КАРТОЧКИ ВЫБОРА ====== */
.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  text-decoration: none;
}

.option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #7a9b82;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.option__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option__name {
  font-family: "Comfortaa", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.option__type {
  font-family: "Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #7a9b82;
}

.option__arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.option:hover .option__arrow {
  background: #f3f1ea;
  border-color: #f3f1ea;
  color: #1f3d2b;
  transform: translateX(2px);
}

/* карточка на всю ширину (для Duplex 1, у которого один вариант) */
.option--full {
  grid-column: span 2;
}

.select-note {
  font-family: "Comfortaa", sans-serif;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 300;
  color: #c9c4ba;
}

.select-note a {
  color: #7a9b82;
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 155, 130, 0.4);
}

.select-note a:hover {
  color: #ffffff;
}

/* ====== АДАПТИВ ====== */
@media (max-width: 560px) {
  .options {
    grid-template-columns: 1fr;
  }
  .group__grid {
    grid-template-columns: 1fr;
  }
  .option--full {
    grid-column: span 1;
  }
  .select-page {
    padding: 40px 18px 60px;
  }
  .option {
    padding: 18px 20px;
  }
  .option__name {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .group__grid {
    grid-template-columns: 1fr !important;
  }
}
.option__arrow img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* белая на тёмном */
}

.option:hover .option__arrow img {
  filter: brightness(0); /* чёрная при наведении */
}

/* группы будинков */
.groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.group__title {
  font-family: "Comfortaa", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a9b82;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.group__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.option__type {
  font-family: "Comfortaa", sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.4;
  color: #7a9b82;
}

/* почасовые карточки бани/чана — другой вид */
.option--service {
  background: rgba(201, 169, 122, 0.09);
  border-color: rgba(201, 169, 122, 0.35);
}

.option--service:hover {
  background: rgba(201, 169, 122, 0.16);
  border-color: #c9a97a;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.option--service .option__type {
  color: #c9a97a;
}

.option--service .option__arrow {
  border-color: rgba(201, 169, 122, 0.5);
}

.option--service:hover .option__arrow {
  background: #c9a97a;
  border-color: #c9a97a;
  color: #16301f;
}

.thanks-hero {
  position: relative;
  padding: 200px 0 90px;
  background: linear-gradient(160deg, #16301f 0%, #0c1b12 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.thanks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 15%, rgba(122, 155, 130, 0.2), transparent 55%);
}

.thanks-hero__inner {
  position: relative;
  z-index: 2;
}

.thanks-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7a9b82;
  margin-bottom: 18px;
}

.thanks-hero__title {
  font-family: "Neucha", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}

.thanks-hero__title em {
  font-style: italic;
  color: #e8e4da;
}

.thanks-hero__lead {
  font-size: 17px;
  font-weight: 300;
  color: #c9c4ba;
  max-width: 540px;
  margin: 0 auto;
}

.thanks-hero__pill {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #e8e4da;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 100px;
}

/* секції */
.tsec {
  padding: 70px 0;
}

.tsec--cream {
  background: #f3f1ea;
}

.tsec--light {
  background: #e8e4da;
}

.tsec__head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.tsec__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a9b82;
  margin-bottom: 12px;
}

.tsec__title {
  font-family: "Neucha", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 46px);
  color: #1a1a1a;
  margin-bottom: 12px;
}

.tsec__title em {
  font-style: italic;
  color: #1f3d2b;
}

.tsec__lead {
  font-size: 16px;
  font-weight: 300;
  color: #2c4d38;
}

/* картка */
.tcard {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 18px 40px rgba(12, 27, 18, 0.1);
}

.tcard + .tcard {
  margin-top: 24px;
}

.tcard__title {
  font-family: "Neucha", sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #1f3d2b;
  margin-bottom: 20px;
}

/* час заезда/выезда */
.checkinout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.cio {
  background: #1f3d2b;
  color: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  text-align: center;
}

.cio span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a9b82;
  margin-bottom: 8px;
}

.cio b {
  font-family: "Neucha", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
}

/* список фич домика */
.troom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.troom__block {
  background: #fff;
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: 0 14px 34px rgba(12, 27, 18, 0.08);
}

.troom__block h3 {
  font-family: "Neucha", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #1f3d2b;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 61, 43, 0.1);
}

.troom__list {
  display: grid;
  gap: 12px;
}

.troom__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  color: #222;
  line-height: 1.5;
}

.troom__list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: #7a9b82;
}

/* прайс списком */
.tprice {
  display: grid;
  gap: 0;
}

.tprice li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31, 61, 43, 0.12);
  font-size: 16px;
  font-weight: 300;
  color: #222;
}

.tprice li:last-child {
  border-bottom: none;
}

.tprice li b {
  font-family: "Neucha", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1f3d2b;
  white-space: nowrap;
}

.tnote {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 300;
  color: #2c4d38;
  line-height: 1.6;
}

.tnote b {
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  color: #1f3d2b;
}

/* блок-подсказка (звонок, вода и т.п.) */
.tinfo {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 10px 28px rgba(12, 27, 18, 0.06);
}

.tinfo + .tinfo {
  margin-top: 16px;
}

.tinfo__ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 61, 43, 0.08);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.tinfo__txt {
  font-size: 15px;
  font-weight: 300;
  color: #222;
  line-height: 1.55;
}

.tinfo__txt b {
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  color: #1f3d2b;
}

/* важный телефонный блок */
.tphone {
  background: #1f3d2b;
  color: #fff;
  border-radius: 20px;
  padding: 40px 44px;
  text-align: center;
}

.tphone h3 {
  font-family: "Neucha", sans-serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 12px;
  color: #fff;
}

.tphone p {
  font-size: 15px;
  font-weight: 300;
  color: #c9c4ba;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.tphone__num {
  display: inline-block;
  font-family: "Neucha", sans-serif;
  font-size: 34px;
  color: #fff;
  letter-spacing: 1px;
  padding: 10px 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  transition: all 0.35s ease;
  margin-bottom: 20px;
}

.tphone__num:hover {
  background: #e8e4da;
  color: #1f3d2b;
  border-color: #e8e4da;
}

.tphone__warn {
  margin-top: 20px;
  font-size: 13px;
  color: #c9c4ba;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* локация кнопка */
.tmap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1f3d2b;
  color: #fff;
  padding: 16px 34px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.tmap:hover {
  background: #2c4d38;
  box-shadow: 0 12px 28px rgba(31, 61, 43, 0.32);
}

/* финальное пожелание */
.tfinal {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(150deg, #1f3d2b, #0c1b12);
  color: #fff;
}

.tfinal h2 {
  font-family: "Neucha", sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 6vw, 54px);
}

.tfinal em {
  font-style: italic;
  color: #e8e4da;
}

@media (max-width: 760px) {
  .troom {
    grid-template-columns: 1fr;
  }
  .checkinout {
    grid-template-columns: 1fr;
  }
  .tcard {
    padding: 28px 22px;
  }
  .tphone {
    padding: 32px 24px;
  }
  .tphone__num {
    font-size: 28px;
    padding: 10px 24px;
  }
  .thanks-hero {
    padding: 150px 0 70px;
  }
}
.rooms--inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}

@media (max-width: 960px) {
  .rooms--inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.tsec--phone {
  padding-top: 30px !important;
  padding-bottom: 90px !important;
}

.tsec--phone .tphone {
  margin-top: 0 !important;
}

/* финал — светлый фон вместо зелёного */
.tfinal {
  background: #f3f1ea !important;
  padding: 90px 0 !important;
}

.tfinal h2 {
  color: #1f3d2b !important;
}

.tfinal em {
  color: #1f3d2b !important;
}

.tprice--icons li span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tprice__ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

/* зелёная секция — для контраста */
.tsec--green {
  background: linear-gradient(160deg, #1f3d2b 0%, #16301f 100%);
}

.tsec--green .tsec__title {
  color: #fff;
}

.tsec--green .tsec__title em {
  color: #e8e4da;
}

.tsec--green .tsec__tag {
  color: #7a9b82;
}

.tsec--green .tsec__lead {
  color: #c9c4ba;
}

/* карточки внутри зелёной секции — полупрозрачные */
.tsec--green .tcard,
.tsec--green .troom__block {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tsec--green .troom__block h3 {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.tsec--green .tprice li {
  color: #e8e4da;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.tsec--green .tprice li b {
  color: #fff;
}

.tsec--green .tnote {
  color: #c9c4ba;
}

.tsec--green .tnote b {
  color: #fff;
}

/* иконки в прайсе делаем светлыми (если SVG поддерживают currentColor/filter) */
.tsec--green .tprice__ico {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* .tinfo внутри зелёной секции */
.tsec--green .tinfo {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tsec--green .tinfo__ico {
  background: rgba(255, 255, 255, 0.12);
}

.tsec--green .tinfo__txt {
  color: #e8e4da;
}

.tsec--green .tinfo__txt b {
  color: #fff;
}

.tsec--green .tinfo__ico img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* акцентная плашка про выезд гостей без ночёвки */
.checkout-note {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 20px 26px;
  background: #1f3d2b;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 61, 43, 0.18);
}

.checkout-note__ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.checkout-note__txt {
  font-family: "Comfortaa", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: #e8e4da;
}

.checkout-note__txt b {
  font-weight: 600;
  color: #fff;
}

/* два варианта времени рядом */
.checkinout--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.cio-group__label {
  display: block;
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c4d38;
  margin-bottom: 12px;
}

.cio-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cio-pair .cio {
  padding: 22px 18px;
}

.cio-pair .cio b {
  font-size: 32px;
}

@media (max-width: 760px) {
  .checkinout--two {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.troom--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

/* кнопка "назад" в hero */
.thanks-back {
  position: absolute;
  top: 110px;
  left: 40px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-family: "Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #e8e4da;
  text-decoration: none;
  transition: all 0.35s ease;
}

.thanks-back:hover {
  background: #e8e4da;
  border-color: #e8e4da;
  color: #1f3d2b;
}

.thanks-back img {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}

.thanks-back:hover img {
  filter: brightness(0);
}

@media (max-width: 760px) {
  .thanks-back {
    top: 90px;
    left: 18px;
    padding: 8px 14px;
    font-size: 12px;
  }
}

/*# sourceMappingURL=main.css.map */
