:root {
  --color-pine: #1F3A2E;
  --color-forest: #2F5D50;
  --color-mineral: #4FA7A3;
  --color-water-light: #DDEDEA;
  --color-sand: #F4EFE7;
  --color-cream: #FFFDF8;
  --color-stone: #7A8178;
  --color-dark: #17231D;
  --color-white: #FFFFFF;
  --color-price: #C98A3A;
  --shadow-soft: 0 18px 45px rgba(31, 58, 46, 0.12);
  --shadow-card: 0 12px 30px rgba(23, 35, 29, 0.1);
  --radius: 8px;
  --header-height: 78px;
  --font-heading-previous: "Cormorant Garamond", Georgia, serif;
  --font-heading-experiment: "Mulish", "Manrope", system-ui, sans-serif;
  --font-heading: var(--font-heading-previous);
  --font-heading-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--color-pine);
}

body {
  margin: 0;
  color: var(--color-dark);
  background: var(--color-cream);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  color: var(--color-pine);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 850px;
  color: var(--color-white);
  font-size: clamp(2.15rem, 4.8vw, 4.55rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  font-weight: 700;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 880px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(31, 58, 46, 0.1);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 28px rgba(23, 35, 29, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(23, 35, 29, 0.12);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  width: clamp(210px, 21vw, 285px);
  height: auto;
  object-fit: contain;
}

.mobile-header-phone {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-pine);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(31, 58, 46, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 22px rgba(31, 58, 46, 0.06);
}

.site-nav a:not(.btn) {
  position: relative;
  padding: 10px 9px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-mineral), var(--color-price));
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--color-forest);
  background: rgba(221, 237, 234, 0.48);
}

.site-nav a:not(.btn):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.header-phone,
.header-booking {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

.header-phone::after,
.header-booking::after {
  display: none;
}

.header-phone {
  gap: 12px;
  min-height: 54px;
  padding: 7px 18px 7px 7px;
  border: 1px solid rgba(201, 138, 58, 0.24);
  color: var(--color-pine);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 231, 0.72)),
    rgba(255, 253, 248, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 12px 28px rgba(31, 58, 46, 0.08);
  font-size: 0.95rem;
  font-weight: 900;
}

.header-phone-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 32%),
    linear-gradient(145deg, var(--color-forest), var(--color-pine));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 18px rgba(31, 58, 46, 0.18);
}

.header-phone-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.header-phone-copy {
  display: grid;
  gap: 0;
}

.header-phone-copy small {
  color: #6d7a6f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.header-phone-copy strong {
  color: var(--color-pine);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.header-booking {
  position: relative;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid rgba(31, 58, 46, 0.2);
  color: var(--color-white);
  background:
    linear-gradient(135deg, #2f5d50 0%, #1f3a2e 58%, #111f19 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 28px rgba(31, 58, 46, 0.18);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.header-booking::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.header-booking::after {
  display: none;
}

.header-booking span {
  position: relative;
  z-index: 1;
}

.header-phone:hover {
  color: var(--color-forest);
  border-color: rgba(201, 138, 58, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 16px 32px rgba(31, 58, 46, 0.12),
    0 0 0 5px rgba(201, 138, 58, 0.06);
}

.header-booking:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 32px rgba(31, 58, 46, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 58, 46, 0.18);
  border-radius: var(--radius);
  background: var(--color-white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-pine);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-white);
  border-color: rgba(31, 58, 46, 0.2);
  background: linear-gradient(135deg, #2f5d50 0%, #214638 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 28px rgba(31, 58, 46, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #356858 0%, #244a3c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 34px rgba(31, 58, 46, 0.24);
}

.btn-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  color: var(--color-pine);
  border-color: rgba(31, 58, 46, 0.2);
  background: var(--color-white);
}

.btn-outline.light {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-pine);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 35, 29, 0.82), rgba(23, 35, 29, 0.54), rgba(23, 35, 29, 0.32));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0;
}

.hero-lead {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin-top: 28px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px 9px 10px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-badges svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  padding: 5px;
  border-radius: 999px;
  color: #d7f4ee;
  background: rgba(255, 255, 255, 0.13);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-cta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 34px;
}

.hero-price-line {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 58px;
  width: fit-content;
  margin: 0;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(23, 35, 29, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.hero-price-line strong {
  color: #f2b766;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero-booking-btn {
  position: relative;
  flex: 0 0 auto;
  min-width: 210px;
  min-height: 58px;
  padding: 16px 28px;
  overflow: hidden;
  border-color: rgba(31, 58, 46, 0.2);
  color: var(--color-white);
  background: linear-gradient(135deg, #2f5d50 0%, #214638 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 26px rgba(31, 58, 46, 0.2);
}

.hero-booking-btn::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.hero-booking-btn:hover {
  background: linear-gradient(135deg, #356858 0%, #244a3c 100%);
}

.hero-viber-btn {
  flex: 0 1 auto;
  min-width: 205px;
  min-height: 58px;
  gap: 10px;
  padding: 14px 22px;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.16), rgba(255, 253, 248, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 32px rgba(8, 20, 15, 0.18);
  backdrop-filter: blur(8px);
}

.hero-viber-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.hero-viber-btn svg path + path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-viber-label-short {
  display: none;
}

.hero-viber-btn:hover {
  border-color: rgba(221, 237, 234, 0.58);
  background:
    linear-gradient(135deg, rgba(79, 167, 163, 0.24), rgba(255, 253, 248, 0.09));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 38px rgba(8, 20, 15, 0.24);
}

.section {
  padding: 92px 0;
}

.intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(221, 237, 234, 0.72), transparent 34%),
    var(--color-cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.intro-copy {
  max-width: 780px;
}

.intro h2,
.intro p,
.section-heading p,
.audience p,
.location p,
.booking-copy p {
  margin-top: 18px;
}

.intro p {
  color: #405047;
  font-size: 1.05rem;
}

.intro-photo-card {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.intro-photo-card::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(47, 93, 80, 0.18), rgba(201, 138, 58, 0.12));
}

.intro-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 10px solid rgba(255, 253, 248, 0.92);
  border-radius: 24px;
  box-shadow:
    0 28px 70px rgba(23, 35, 29, 0.16),
    0 0 0 1px rgba(31, 58, 46, 0.08);
}

.two-column,
.atmosphere-grid,
.location-grid,
.booking-grid,
.contacts-grid,
.footer-grid {
  display: grid;
  gap: 44px;
}

.two-column,
.atmosphere-grid,
.location-grid,
.booking-grid,
.contacts-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.audience,
.prices,
.contacts {
  background: var(--color-sand);
}

.section-lead {
  color: var(--color-forest);
  font-size: 1.15rem;
  font-weight: 700;
}

.check-card,
.contact-card,
.booking-form,
.review-card,
.room-card {
  border: 1px solid rgba(31, 58, 46, 0.08);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.check-card {
  padding: 30px;
}

.check-list,
.benefit-list,
.room-body ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.benefit-list li,
.room-body li {
  position: relative;
  padding-left: 34px;
  margin-top: 12px;
  color: #405047;
}

.check-list li::before,
.benefit-list li::before,
.room-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(201, 138, 58, 0.34);
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232F5D50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center / 13px 13px no-repeat,
    linear-gradient(145deg, rgba(221, 237, 234, 0.9), rgba(255, 253, 248, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 14px rgba(31, 58, 46, 0.08);
}

.atmosphere {
  background: linear-gradient(180deg, var(--color-water-light), var(--color-cream));
}

.atmosphere-copy > p {
  margin-top: 18px;
  color: #405047;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}

.mini-cards article {
  min-height: 165px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  row-gap: 10px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(31, 58, 46, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.84));
  box-shadow: 0 18px 40px rgba(31, 58, 46, 0.08);
}

.mini-cards h3 {
  min-height: 0;
  margin-top: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.mini-cards p {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: #536158;
  font-size: 0.94rem;
  line-height: 1.55;
}

.icon {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--color-pine);
  border: 1px solid rgba(201, 138, 58, 0.35);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, var(--color-water-light), rgba(255, 253, 248, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 24px rgba(31, 58, 46, 0.1);
}

.icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(79, 167, 163, 0.2);
}

.icon svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.photo-card img {
  position: absolute;
  inset: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p {
  color: #526158;
}

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

.room-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.room-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--radius) - 1px);
  background:
    radial-gradient(circle at 18% 0%, rgba(221, 237, 234, 0.62), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), var(--color-white));
}

.room-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 167, 163, 0.22);
  box-shadow: 0 24px 54px rgba(31, 58, 46, 0.14);
}

.image-placeholder {
  position: relative;
  min-height: 225px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 25%, rgba(221, 237, 234, 0.42), transparent 24%),
    linear-gradient(135deg, var(--color-forest), var(--color-mineral));
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.38) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.32) 25%, transparent 25%);
  background-size: 32px 32px;
}

.image-placeholder span {
  position: relative;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(23, 35, 29, 0.24);
  font-weight: 800;
}

.room-placeholder {
  border-radius: var(--radius) var(--radius) 0 0;
}

.room-media {
  position: relative;
  height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--color-water-light);
}

.room-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 35, 29, 0.02), transparent 34%, rgba(23, 35, 29, 0.22)),
    linear-gradient(90deg, rgba(31, 58, 46, 0.12), transparent 42%);
  pointer-events: none;
}

.room-photo {
  height: 100%;
  border-radius: 0;
  transition: transform 0.45s ease;
}

.room-card:hover .room-photo {
  transform: scale(1.035);
}

.room-placeholder.standard {
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 253, 248, 0.42), transparent 24%),
    linear-gradient(135deg, var(--color-pine), var(--color-forest));
}

.room-placeholder.family {
  background:
    radial-gradient(circle at 26% 30%, rgba(244, 239, 231, 0.48), transparent 24%),
    linear-gradient(135deg, var(--color-forest), #6f9a78);
}

.room-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.room-body h3 {
  font-size: clamp(1.45rem, 2.1vw, 1.72rem);
  line-height: 1.08;
}

.room-body p {
  margin-top: 10px;
  color: #536158;
  line-height: 1.55;
}

.room-body ul {
  margin-top: 10px;
  margin-bottom: 16px;
  padding-top: 0;
}

.card-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 58, 46, 0.08);
}

.room-price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 10px;
  min-height: 0;
  padding: 0;
  color: #536158;
  background: transparent;
  font-weight: 800;
}

.room-price span {
  font-size: 0.92rem;
}

.room-price strong {
  color: var(--color-pine);
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
}

.room-card .btn-outline {
  width: 100%;
  min-height: 48px;
  padding: 13px 18px;
  color: var(--color-white);
  border-color: rgba(31, 58, 46, 0.2);
  background:
    linear-gradient(135deg, var(--color-forest), var(--color-pine));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(31, 58, 46, 0.14);
}

.room-card .btn-outline:hover {
  color: var(--color-white);
  border-color: rgba(31, 58, 46, 0.24);
  background: linear-gradient(135deg, #356858, #1f3a2e);
  box-shadow: 0 14px 28px rgba(31, 58, 46, 0.2);
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

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

.price-season-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(31, 58, 46, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(221, 237, 234, 0.78), transparent 32%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), var(--color-white));
  box-shadow: var(--shadow-card);
}

.price-season-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(79, 167, 163, 0.68), transparent);
}

.price-season-card.is-accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 167, 163, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), var(--color-white));
}

.price-season-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(31, 58, 46, 0.08);
}

.season-label {
  color: var(--color-forest);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-season-head strong {
  color: var(--color-pine);
  font-size: 1.26rem;
  font-weight: 900;
  white-space: nowrap;
}

.season-prices {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.season-prices div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
}

.season-prices div + div {
  border-top: 1px solid rgba(31, 58, 46, 0.07);
}

.season-prices span {
  color: #526158;
  font-weight: 800;
}

.season-prices strong {
  color: var(--color-pine);
  font-size: 1.18rem;
  font-weight: 900;
  white-space: nowrap;
}

.discount-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 14px 10px 10px;
  color: var(--color-pine);
  border: 1px solid rgba(31, 58, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 12px 28px rgba(31, 58, 46, 0.07);
}

.discount-note span {
  padding: 7px 10px;
  color: var(--color-white);
  border-radius: 999px;
  background: var(--color-forest);
  font-size: 0.86rem;
  font-weight: 900;
}

.discount-note strong {
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid rgba(31, 58, 46, 0.08);
}

th {
  color: var(--color-white);
  background: var(--color-pine);
}

td:not(:first-child) {
  color: var(--color-price);
  font-weight: 900;
}

.discount-badge {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 16px;
  color: var(--color-pine);
  border-radius: 999px;
  background: rgba(201, 138, 58, 0.16);
  font-weight: 900;
}

.location {
  background: var(--color-water-light);
}

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

address {
  margin-top: 16px;
  color: var(--color-pine);
  font-style: normal;
  font-weight: 800;
}

.location-address-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
  color: #24352c;
  font-size: 1.05rem;
  line-height: 1.6;
}

.location-address-line address {
  display: inline;
  margin-top: 0;
}

.location .benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 14px;
  max-width: 920px;
}

.location .benefit-list li {
  margin-top: 0;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.facility {
  min-height: 118px;
}

.facility-photo {
  min-height: 118px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.facility.food {
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 253, 248, 0.42), transparent 24%),
    linear-gradient(135deg, #806b45, var(--color-price));
}

.facility.territory {
  background:
    radial-gradient(circle at 24% 24%, rgba(221, 237, 234, 0.45), transparent 24%),
    linear-gradient(135deg, var(--color-pine), #6f9a78);
}

.map-card {
  align-self: stretch;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.google-map-frame,
.google-brand-map {
  flex: 1 1 auto;
  width: 100%;
  min-height: 470px;
  border: 0;
  background: var(--color-water-light);
}

.google-brand-map {
  position: relative;
}

.interactive-map {
  position: relative;
  flex: 1 1 auto;
  min-height: 470px;
  overflow: hidden;
  background: var(--color-water-light);
  cursor: grab;
  touch-action: none;
}

.interactive-map.is-dragging {
  cursor: grabbing;
}

.map-tiles {
  position: absolute;
  inset: 0;
}

.map-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  user-select: none;
  filter: saturate(0.82) contrast(0.96) hue-rotate(8deg);
}

.interactive-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(31, 58, 46, 0.08), transparent 30%, rgba(31, 58, 46, 0.08)),
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(31, 58, 46, 0.12));
}

.hotel-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-21px, -56px);
  pointer-events: none;
}

.marker-pin {
  display: block;
  width: 42px;
  height: 42px;
  border: 7px solid var(--color-white);
  border-radius: 50% 50% 50% 0;
  background: var(--color-price);
  box-shadow: 0 14px 30px rgba(31, 58, 46, 0.3), 0 0 0 10px rgba(201, 138, 58, 0.22);
  transform: rotate(-45deg);
}

.marker-pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background: var(--color-pine);
}

.marker-card {
  position: absolute;
  left: 50%;
  bottom: 52px;
  width: 220px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--color-white);
  background: rgba(31, 58, 46, 0.94);
  box-shadow: 0 18px 40px rgba(31, 58, 46, 0.25);
  transform: translateX(-50%);
}

.marker-card strong,
.marker-card small {
  display: block;
}

.marker-card strong {
  line-height: 1.2;
}

.marker-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.map-controls {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 5;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 46, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(31, 58, 46, 0.15);
}

.map-controls button {
  width: 44px;
  height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(31, 58, 46, 0.12);
  color: var(--color-pine);
  background: rgba(255, 253, 248, 0.94);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
}

.map-controls button:last-child {
  border-bottom: 0;
}

.map-controls button:hover {
  color: var(--color-white);
  background: var(--color-forest);
}

.map-attribution {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 5;
  padding: 4px 7px;
  border-radius: 5px;
  color: var(--color-stone);
  background: rgba(255, 253, 248, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
}

.map-link {
  display: flex;
  flex: 0 0 auto;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--color-pine);
  background: var(--color-white);
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease;
}

.map-link:hover {
  color: var(--color-white);
  background: var(--color-forest);
}

.map-placeholder {
  height: 100%;
  min-height: 520px;
  display: grid;
  place-content: center;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(31, 58, 46, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 253, 248, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.7) 1px, transparent 1px),
    linear-gradient(135deg, rgba(79, 167, 163, 0.45), rgba(31, 58, 46, 0.86));
  background-size: 34px 34px, 34px 34px, cover;
  color: var(--color-white);
}

.map-placeholder span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.map-placeholder p {
  max-width: 330px;
  margin-top: 8px;
}

.map-placeholder .btn {
  width: fit-content;
  margin: 22px auto 0;
}

.booking {
  color: var(--color-white);
  background:
    radial-gradient(circle at 88% 20%, rgba(79, 167, 163, 0.18), transparent 28%),
    linear-gradient(135deg, #254b3c 0%, #1f3a2e 48%, #17231d 100%);
}

.booking h2,
.booking h3 {
  color: var(--color-white);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.booking-copy p + p {
  max-width: 660px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.booking-contact-actions {
  display: grid;
  grid-template-columns: 1.02fr 0.68fr 0.92fr 0.92fr;
  gap: 6px;
  width: 100%;
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.booking-contact-actions .contact-row {
  display: contents;
}

.booking .contact-pill {
  min-height: 42px;
  padding: 8px 8px 9px;
  min-width: 0;
  border-color: rgba(255, 253, 248, 0.2);
  color: rgba(255, 253, 248, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.09));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 26px rgba(8, 20, 15, 0.18);
  font-size: 0.88rem;
  line-height: 1.25;
}

.booking .contact-pill.phone {
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding-inline: 9px;
  color: var(--color-pine);
  background:
    linear-gradient(135deg, rgba(221, 237, 234, 0.98), rgba(255, 253, 248, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 34px rgba(8, 20, 15, 0.2);
}

.booking .contact-pill svg {
  width: 16px;
  height: 16px;
}

.booking .contact-pill.phone svg {
  width: 17px;
  height: 17px;
}

.booking .contact-pill:hover {
  color: var(--color-white);
  border-color: rgba(201, 138, 58, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.22), rgba(255, 253, 248, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 34px rgba(8, 20, 15, 0.24),
    0 0 0 4px rgba(201, 138, 58, 0.08);
}

.booking .contact-pill.phone:hover {
  color: var(--color-pine);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 1), rgba(221, 237, 234, 0.98));
}

.booking-form {
  padding: 28px;
  color: var(--color-dark);
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--color-pine);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-form .btn.full {
  min-height: 58px;
  margin-top: 6px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 58, 46, 0.18);
  border-radius: var(--radius);
  background: var(--color-cream);
  color: var(--color-dark);
  font: inherit;
}

input[readonly][data-datepicker] {
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(221, 237, 234, 0.42), rgba(255, 253, 248, 0.96));
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 12px 44px 12px 14px;
  border: 1px solid rgba(31, 58, 46, 0.18);
  border-radius: var(--radius);
  color: var(--color-dark);
  background:
    linear-gradient(135deg, rgba(221, 237, 234, 0.42), rgba(255, 253, 248, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-forest);
  border-bottom: 2px solid var(--color-forest);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.custom-select-trigger:focus {
  outline: 3px solid rgba(79, 167, 163, 0.22);
  border-color: var(--color-mineral);
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 85;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(31, 58, 46, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(244, 239, 231, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 46px rgba(23, 35, 29, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-menu button {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 14px;
  color: #405047;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  transition: color 0.18s ease, background 0.18s ease;
}

.custom-select-menu button:hover,
.custom-select-menu button[aria-selected="true"] {
  color: var(--color-pine);
  background: rgba(221, 237, 234, 0.78);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(79, 167, 163, 0.22);
  border-color: var(--color-mineral);
}

.field-error {
  border-color: #be4d3f;
  background: #fff7f4;
}

.error-message {
  color: #be4d3f;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-hint {
  margin-top: 12px;
  color: #59645d;
  font-size: 0.9rem;
}

.datepicker {
  position: fixed;
  z-index: 90;
  width: min(320px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(31, 58, 46, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(244, 239, 231, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 56px rgba(23, 35, 29, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.datepicker.is-above {
  transform: translateY(6px);
}

.datepicker.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.datepicker-head {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.datepicker-head strong {
  color: var(--color-pine);
  text-align: center;
  font-size: 0.98rem;
  font-weight: 900;
}

.datepicker-head button,
.datepicker-days button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.datepicker-head button {
  width: 38px;
  height: 38px;
  color: var(--color-pine);
  background: rgba(221, 237, 234, 0.72);
  font-size: 1.4rem;
  line-height: 1;
}

.datepicker-head button:hover,
.datepicker-days button:hover:not(:disabled) {
  color: var(--color-white);
  background: var(--color-forest);
}

.datepicker-weekdays,
.datepicker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.datepicker-weekdays {
  margin-bottom: 7px;
}

.datepicker-weekdays span {
  color: var(--color-stone);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.datepicker-days button,
.datepicker-empty {
  aspect-ratio: 1;
}

.datepicker-days button {
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.datepicker-days button.is-today {
  box-shadow: inset 0 0 0 1px rgba(201, 138, 58, 0.72);
}

.datepicker-days button.is-selected {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-forest), var(--color-mineral));
  box-shadow: 0 8px 18px rgba(31, 58, 46, 0.18);
}

.datepicker-days button:disabled {
  color: rgba(122, 129, 120, 0.42);
  cursor: not-allowed;
  background: rgba(244, 239, 231, 0.55);
}

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

.review-card {
  position: relative;
  padding: 24px;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 18px;
  color: rgba(79, 167, 163, 0.16);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.stars {
  color: var(--color-price);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.review-card p {
  margin-top: 14px;
  color: #435049;
  font-size: 0.93rem;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--color-pine);
}

.contact-card {
  margin-top: 22px;
  padding: 24px;
}

.contact-card p {
  margin-top: 8px;
}

.contact-card a {
  color: var(--color-forest);
  font-weight: 900;
}

.wrap {
  align-items: stretch;
  gap: 10px;
}

.contact-actions.wrap {
  display: grid;
  gap: 10px;
}

.contact-row {
  display: grid;
  gap: 10px;
}

.primary-contact-row {
  grid-template-columns: minmax(240px, 1.25fr) minmax(190px, 0.75fr);
}

.messenger-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-pill {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(31, 58, 46, 0.13);
  border-radius: 999px;
  color: #4c5e48;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 242, 234, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 9px 18px rgba(31, 58, 46, 0.055);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.booking .contact-pill span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 1px;
}

.contact-pill svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contact-pill svg path + path {
  opacity: 0.72;
}

.contact-pill:hover {
  color: var(--color-pine);
  border-color: rgba(201, 138, 58, 0.45);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 13px 26px rgba(31, 58, 46, 0.1),
    0 0 0 4px rgba(201, 138, 58, 0.07);
}

.contact-pill.phone {
  min-width: 248px;
  color: var(--color-pine);
  background:
    linear-gradient(135deg, rgba(221, 237, 234, 0.92), rgba(255, 253, 248, 0.98));
}

.contact-pill.telegram,
.contact-pill.viber,
.contact-pill.whatsapp {
  min-width: 0;
}

.contact-pill.telegram svg path + path,
.contact-pill.viber svg path:last-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-actions.wrap .btn {
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 1rem;
}

.route-btn {
  gap: 10px;
}

.route-btn svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.route-btn svg path + path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.72;
}

.contact-photo {
  min-height: 390px;
}

.contact-map-card {
  min-height: 100%;
}

.site-footer {
  padding: 60px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-pine);
}

.site-footer h3 {
  color: var(--color-white);
}

.footer-logo {
  width: min(245px, 100%);
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.footer-grid p {
  margin-top: 12px;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

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

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.mobile-contact-bar {
  display: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 70;
  width: min(520px, calc(100% - 32px));
  padding: 16px 18px;
  color: var(--color-white);
  border-radius: var(--radius);
  background: var(--color-pine);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.toast.is-error {
  background: #8f332b;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

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

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .mini-cards article {
    min-height: auto;
  }

  .mini-cards h3 {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 1240px);
  }

  .header-inner {
    width: min(100% - 28px, 1240px);
    min-height: var(--header-height);
    gap: 10px;
  }

  .site-header {
    top: 0;
    width: 100%;
  }

  .brand-logo {
    width: 148px;
  }

  .mobile-header-phone {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-left: auto;
    padding: 5px 10px 5px 5px;
    color: var(--color-pine);
    border: 1px solid rgba(31, 58, 46, 0.12);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(221, 237, 234, 0.72));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 8px 18px rgba(31, 58, 46, 0.08);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-header-phone::after {
    display: none;
  }

  .mobile-header-phone-icon {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 28px;
    color: var(--color-white);
    border-radius: 50%;
    background:
      radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.34), transparent 28%),
      linear-gradient(145deg, #2f5d50, #173b2d);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 8px 16px rgba(31, 58, 46, 0.14);
  }

  .mobile-header-phone-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 61;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 18px) 10px auto;
    z-index: 60;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(31, 58, 46, 0.12);
    border-radius: var(--radius);
    background: var(--color-cream);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-pill {
    display: grid;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav .btn {
    margin-top: 8px;
  }

  .header-cta {
    display: grid;
    gap: 10px;
    margin: 10px 0 0;
    padding: 0;
    border-radius: 0;
  }

  .header-phone,
  .header-booking {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-image: none;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(23, 35, 29, 0.78), rgba(23, 35, 29, 0.72));
  }

  .hero-content {
    padding: 76px 0 82px;
  }

  .contact-actions {
    align-items: stretch;
  }

  .contact-actions .btn,
  .contact-pill {
    width: 100%;
  }

  .hero-cta {
    flex-wrap: wrap;
    gap: 9px;
    max-width: 520px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 9px;
  }

  .hero-price-line {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .hero-price-line strong {
    font-size: 1.08rem;
  }

  .hero-booking-btn,
  .hero-viber-btn {
    min-height: 52px;
    padding: 13px 16px;
    font-size: 0.95rem;
  }

  .hero-booking-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-viber-btn {
    width: 100%;
    min-width: 0;
  }

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

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

  .booking-contact-actions .contact-row {
    display: grid;
  }

  .messenger-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .messenger-row .contact-pill {
    min-height: 46px;
    gap: 6px;
    padding: 9px 6px;
    font-size: 0.82rem;
  }

  .messenger-row .contact-pill svg {
    width: 17px;
    height: 17px;
  }

  .hero-badges span {
    flex: 1 1 165px;
    text-align: center;
  }

  .section {
    padding: 68px 0;
  }

  .two-column,
  .intro-grid,
  .atmosphere-grid,
  .location-grid,
  .booking-grid,
  .contacts-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 32px;
  }

  .intro-photo-card {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .location .benefit-list {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .photo-card,
  .map-card,
  .google-map-frame,
  .interactive-map,
  .map-placeholder {
    min-height: 330px;
  }

  .google-map-frame {
    min-height: 360px;
  }

  .interactive-map {
    min-height: 360px;
  }

  .room-grid,
  .price-board,
  .reviews-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .price-season-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .discount-note {
    align-items: center;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .discount-note span {
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .discount-note strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.82rem;
  }

  .room-media {
    height: 270px;
  }

  .room-body h3,
  .room-body p {
    min-height: 0;
  }

  .card-bottom,
  .form-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .card-bottom .btn {
    width: 100%;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 55;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(92px, 0.75fr);
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255, 253, 248, 0.5);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(221, 237, 234, 0.72));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 18px 40px rgba(23, 35, 29, 0.22);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  body.show-mobile-contact-bar .mobile-contact-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-contact-link {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 12px;
    color: var(--color-pine);
    border: 1px solid rgba(31, 58, 46, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.92);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 8px 18px rgba(31, 58, 46, 0.1);
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-call-link {
    font-size: 0.82rem;
  }

  .mobile-contact-icon {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 28px;
    color: var(--color-white);
    border-radius: 50%;
    background:
      radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.34), transparent 28%),
      linear-gradient(145deg, #2f5d50, #173b2d);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 8px 16px rgba(31, 58, 46, 0.2);
  }

  .mobile-contact-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
  }

  .mobile-viber-link .mobile-contact-icon {
    background:
      radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.3), transparent 28%),
      linear-gradient(145deg, #5d7768, #254536);
  }

  .mobile-viber-link .mobile-contact-icon svg {
    width: 17px;
    height: 17px;
  }

  .toast {
    bottom: 84px;
  }

  .site-footer {
    padding-bottom: 88px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 136px;
  }

  .mobile-header-phone {
    gap: 6px;
    padding-right: 8px;
    font-size: 0.74rem;
  }

  .mobile-header-phone-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .intro-photo-card::before {
    inset: 12px -10px -12px 10px;
    border-radius: 20px;
  }

  .intro-photo-card img {
    aspect-ratio: 1.08 / 1;
    border-width: 7px;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.35rem);
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero-badges span {
    width: auto;
    flex: 0 0 calc((100% - 12px) / 3);
    justify-content: center;
    gap: 5px;
    padding: 7px 6px;
    font-size: 0.74rem;
    line-height: 1.12;
    text-align: center;
  }

  .hero-badges span:nth-child(5) {
    flex-basis: calc((100% - 12px) / 3 * 2 + 6px);
  }

  .hero-badges {
    gap: 6px;
    margin-top: 20px;
  }

  .hero-badges svg {
    width: 22px;
    height: 22px;
    padding: 5px;
  }

  .hero-cta {
    flex-wrap: wrap;
  }

  .hero-price-line {
    width: 100%;
    justify-content: center;
  }

  .hero-booking-btn,
  .hero-viber-btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-booking-btn,
  .hero-viber-btn {
    min-height: 54px;
    font-size: 0.96rem;
  }

  .hero-viber-btn {
    gap: 8px;
  }

  .hero-viber-label-full {
    display: none;
  }

  .hero-viber-label-short {
    display: inline;
  }

  .booking-form,
  .check-card,
  .contact-card,
  .review-card,
  .room-body {
    padding: 20px;
  }

  .booking-form input,
  .booking-form textarea,
  .custom-select-trigger {
    font-size: 16px;
  }

  .booking-form .btn.full {
    min-height: 56px;
    font-size: 1.08rem;
  }
}
