:root {
  --ink: #17201b;
  --muted: #617067;
  --paper: #f5f2eb;
  --snow: #fbfaf6;
  --line: rgba(23, 32, 27, .16);
  --accent: #b45d34;
  --accent-dark: #78391f;
  --forest: #23392f;
  --deep: #101612;
  --glow: rgba(180, 93, 52, .28);
  --shadow-soft: 0 22px 70px rgba(25, 31, 25, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8f5ee 0%, var(--paper) 44%, #eee8dc 100%);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.lightbox-open,
body.booking-open,
body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 242, 235, .88);
  box-shadow: 0 16px 40px rgba(34, 38, 32, .12);
  border-bottom-color: rgba(23, 32, 27, .08);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
  transform: translateZ(0);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(180, 93, 52, .2);
  animation: markPulse 3.8s ease-in-out infinite;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav a,
.header-cta {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  opacity: .82;
  transition: opacity .18s ease, transform .18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 18px;
  width: min(640px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(251, 250, 246, .96);
  box-shadow: 0 24px 70px rgba(16, 22, 18, .22);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(.98);
  transition: opacity .22s ease, transform .26s cubic-bezier(.18, 1.45, .35, 1);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-dropdown.is-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.nav-menu span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-menu a {
  display: block;
  padding: 7px 0;
  color: var(--ink);
  opacity: .84;
}

.nav-menu a::after {
  bottom: 2px;
}

.messenger-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.messenger-link {
  --messenger-color: var(--accent);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16, 22, 18, .14);
  transition: transform .28s cubic-bezier(.18, 1.45, .35, 1), background .2s ease, border-color .2s ease, box-shadow .24s ease;
}

.messenger-link::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: var(--messenger-color);
  opacity: 0;
  transform: scale(.55);
  transition: opacity .2s ease, transform .28s cubic-bezier(.18, 1.45, .35, 1);
}

.messenger-link img {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.messenger-link:hover {
  border-color: rgba(255, 255, 255, .96);
  background: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--messenger-color) 34%, transparent);
}

.messenger-link:hover::before {
  opacity: .22;
  transform: scale(1.75);
}

.messenger-link:active {
  transform: translateY(0) scale(.94);
}

.messenger-link-whatsapp {
  --messenger-color: #25d366;
}

.messenger-link-telegram {
  --messenger-color: #229ed9;
}

.messenger-link-viber {
  --messenger-color: #7360f2;
}

.messenger-link-max {
  --messenger-color: #1f6bff;
}

.messenger-link-max img {
  width: 28px;
}

.site-header.is-scrolled .messenger-link,
.contact-messengers .messenger-link,
.mobile-messengers .messenger-link {
  border-color: rgba(23, 32, 27, .14);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(16, 22, 18, .08);
}

.site-header.is-scrolled .messenger-link:hover,
.contact-messengers .messenger-link:hover,
.mobile-messengers .messenger-link:hover {
  border-color: rgba(23, 32, 27, .08);
  background: #fff;
}

.mobile-messengers {
  margin-top: 6px;
}

.menu-toggle {
  flex: 0 0 42px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: transform .24s cubic-bezier(.18, 1.45, .35, 1), background .18s ease;
}

.menu-toggle:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, .12);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 85;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(390px, 88vw);
  padding: 22px;
  color: var(--ink);
  background: rgba(251, 250, 246, .98);
  box-shadow: -30px 0 90px rgba(16, 22, 18, .28);
  transform: translateX(0);
  animation: menuSlide .28s cubic-bezier(.18, 1.45, .35, 1) both;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu::before {
  content: "";
  position: fixed;
  inset: 0 100% 0 auto;
  width: 100vw;
  background: rgba(16, 22, 18, .48);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(180, 93, 52, .1);
  cursor: pointer;
  font-size: 28px;
}

.mobile-menu-brand {
  margin-right: 52px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu-scroll {
  display: grid;
  align-content: start;
  gap: 14px;
  margin: 28px 0 18px;
  overflow-y: auto;
}

.mobile-menu details {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.mobile-menu summary {
  cursor: pointer;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-menu details a,
.mobile-menu-link {
  display: block;
  padding: 11px 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.header-cta {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  transition: background .18s ease, color .18s ease, transform .28s cubic-bezier(.18, 1.45, .35, 1), box-shadow .24s ease;
}

.header-cta:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(16, 22, 18, .18);
}

.header-cta:active {
  transform: translateY(0) scale(.97);
}

.site-header.is-scrolled .header-cta:hover {
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  min-height: 88svh;
  padding: 112px clamp(20px, 5vw, 72px) 34px;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  transform: scale(1.04);
  animation: heroImage 1100ms cubic-bezier(.22, 1, .36, 1) forwards;
  will-change: transform;
}

.hero-shade {
  background:
    radial-gradient(circle at 26% 54%, rgba(180, 93, 52, .22), transparent 24%),
    linear-gradient(90deg, rgba(16, 22, 18, .82), rgba(16, 22, 18, .24) 58%, rgba(16, 22, 18, .48)),
    linear-gradient(180deg, rgba(16, 22, 18, .34), rgba(16, 22, 18, .1) 42%, rgba(16, 22, 18, .76));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding-bottom: clamp(46px, 10vh, 104px);
  animation: heroText 780ms cubic-bezier(.22, 1, .36, 1) 120ms both;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.page-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.page-breadcrumbs a:hover {
  color: #fff;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(64px, 12vw, 156px);
  line-height: .84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
}

.hero-copy {
  width: min(560px, 100%);
  margin-bottom: 28px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, .86);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.yandex-rating-widget {
  width: 150px;
  height: 50px;
  border: 0;
  border-radius: 12px;
  align-self: center;
  flex: 0 0 150px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(16, 22, 18, .16);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(16, 22, 18, .14);
  transition: transform .28s cubic-bezier(.18, 1.45, .35, 1), background .18s ease, color .18s ease, border-color .18s ease, box-shadow .24s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: -1;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.button:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 20px 48px rgba(16, 22, 18, .22), 0 0 0 5px rgba(180, 93, 52, .08);
}

.button:hover::before {
  transform: translateX(420%) skewX(-18deg);
}

.button:active {
  transform: translateY(-1px) scale(.97);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: #cf7044;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 560px;
  animation: heroText 780ms cubic-bezier(.22, 1, .36, 1) 260ms both;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(0);
  transition: transform .28s cubic-bezier(.18, 1.45, .35, 1), background .22s ease, box-shadow .22s ease;
}

.hero-facts span:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .34);
  transform: translateX(-50%);
  opacity: .72;
  transition: opacity .2s ease, transform .2s ease;
}

.hero-scroll::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.8s cubic-bezier(.22, 1, .36, 1) infinite;
}

.hero-scroll:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.intro,
.gallery,
.final-cta,
.map-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(28px, 6vw, 84px);
  padding-top: clamp(18px, 2vw, 28px);
  background: var(--snow);
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 93, 52, .4), transparent);
}

.intro-list {
  align-self: end;
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.intro-list p {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  transition: color .22s ease, border-color .22s ease, transform .22s ease;
}

.intro-list p:hover {
  color: var(--ink);
  border-color: rgba(180, 93, 52, .38);
  transform: translateX(4px);
}

.search-paths {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 74px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: #f8f5ed;
  border-top: 1px solid var(--line);
}

.search-path-list {
  display: grid;
  gap: 1px;
  align-self: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.search-path-list a {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  color: var(--ink);
  text-decoration: none;
  transition: transform .22s ease, color .22s ease;
}

.search-path-list a + a {
  border-top: 1px solid var(--line);
}

.search-path-list a:hover {
  color: var(--accent-dark);
  transform: translateX(6px);
}

.search-path-list strong {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.08;
}

.search-path-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.intro-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vk-subscribe {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0077ff;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 119, 255, .18);
  transition: transform .24s cubic-bezier(.18, 1.45, .35, 1), box-shadow .22s ease, background .18s ease;
}

.vk-subscribe:hover {
  background: #0b82ff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 38px rgba(0, 119, 255, .26);
}

.vk-subscribe:active {
  transform: translateY(-1px) scale(.97);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(170px, .35fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 5vw, 64px);
  margin-bottom: clamp(34px, 6vw, 72px);
}

.gallery {
  background:
    linear-gradient(180deg, var(--snow), #f2eee5);
}

.gallery-status {
  min-height: 22px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.gallery-list {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.gallery-group {
  display: grid;
  gap: 18px;
  padding-top: clamp(30px, 5vw, 54px);
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.gallery-group.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  gap: clamp(18px, 5vw, 54px);
  align-items: center;
}

.gallery-media {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: #d8d2c7;
  touch-action: pan-y;
  transition: transform .34s cubic-bezier(.18, 1.45, .35, 1), box-shadow .28s ease;
}

.gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .18) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-70%);
  pointer-events: none;
  transition: opacity .24s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.gallery-stage:hover,
.gallery-stage:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 28px 86px rgba(25, 31, 25, .2), 0 0 0 5px rgba(180, 93, 52, .08);
}

.gallery-stage:hover::after,
.gallery-stage:focus-within::after {
  opacity: 1;
  transform: translateX(70%);
}

.gallery-cover {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: opacity .18s ease, transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}

.gallery-cover {
  cursor: zoom-in;
}

.gallery-cover:hover {
  transform: translateY(-4px) scale(1.01);
}

.gallery-cover:focus-visible {
  outline: 3px solid rgba(180, 93, 52, .45);
  outline-offset: 4px;
}

.gallery-cover-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .42);
  background: transparent;
  cursor: pointer;
  opacity: .88;
  transform: translateY(-50%);
  animation: arrowFloat 2.4s ease-in-out infinite;
  transition: opacity .18s ease, transform .26s cubic-bezier(.18, 1.45, .35, 1), text-shadow .22s ease;
}

.gallery-cover-nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.18);
  text-shadow: 0 10px 24px rgba(0, 0, 0, .62), 0 0 18px rgba(255, 255, 255, .5);
}

.gallery-cover-nav:active {
  transform: translateY(-50%) scale(.94);
}

.gallery-cover-nav:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .48);
  outline-offset: 3px;
}

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

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

.gallery-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.gallery-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-summary {
  max-width: 560px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 17px;
}

.gallery-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(520px, 100%);
  margin: 8px 0 18px;
}

.gallery-fact {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.gallery-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  background: rgba(180, 93, 52, .12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75) inset;
}

.gallery-fact-content span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gallery-fact strong {
  display: block;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.gallery-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.gallery-features li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(23, 32, 27, .12);
  border-radius: 999px;
  padding: 7px 11px 7px 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .64) inset;
}

.gallery-feature-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  background: rgba(180, 93, 52, .14);
}

.gallery-feature-icon[data-icon]::before,
.gallery-feature-icon[data-icon]::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.gallery-feature-icon[data-icon="fridge"]::before {
  width: 11px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.gallery-feature-icon[data-icon="fridge"]::after {
  top: 7px;
  left: 15px;
  width: 2px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: -7px -2px 0 -1px currentColor;
}

.gallery-feature-icon[data-icon="washer"]::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.gallery-feature-icon[data-icon="washer"]::after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 5px -7px 0 -3px currentColor;
}

.gallery-feature-icon[data-icon="stove"]::before {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.gallery-feature-icon[data-icon="stove"]::after {
  top: 8px;
  left: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    8px 0 0 currentColor,
    0 8px 0 currentColor,
    8px 8px 0 currentColor;
}

.gallery-feature-icon[data-icon="microwave"]::before {
  width: 17px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.gallery-feature-icon[data-icon="microwave"]::after {
  right: 6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.gallery-book {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 13px;
}

.button-video {
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid rgba(180, 93, 52, .32);
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
}

.button-video::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 9px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.button-video:hover {
  background: #fff;
  color: var(--accent-dark);
}

.gallery-video-mobile {
  display: none;
}

.apartment-map {
  width: min(520px, 100%);
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 27, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .46);
  box-shadow: 0 16px 42px rgba(25, 31, 25, .1);
  transition: transform .3s cubic-bezier(.18, 1.45, .35, 1), box-shadow .24s ease;
}

.apartment-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(25, 31, 25, .16);
}

.apartment-map iframe {
  display: block;
  width: 100%;
  height: 168px;
  border: 0;
  background: #d8d2c7;
}

.apartment-map-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 12px;
}

.apartment-map-meta strong,
.apartment-map-meta span {
  min-width: 0;
}

.apartment-map-meta strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.apartment-map-meta span {
  grid-column: 1;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.apartment-map-link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  border: 1px solid rgba(180, 93, 52, .28);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--accent-dark);
  background: rgba(180, 93, 52, .1);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .24s cubic-bezier(.18, 1.45, .35, 1), background .18s ease;
}

.apartment-map-link:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(180, 93, 52, .16);
}

.gallery-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.gallery-thumb {
  position: relative;
  isolation: isolate;
  flex: 0 0 92px;
  width: 92px;
  height: 70px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  opacity: .72;
  transition: opacity .2s ease, transform .3s cubic-bezier(.18, 1.45, .35, 1), border-color .18s ease, box-shadow .2s ease;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 1;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .68);
  opacity: 0;
  transform: scale(.88);
  transition: opacity .2s ease, transform .28s cubic-bezier(.18, 1.45, .35, 1);
  pointer-events: none;
}

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

.gallery-thumb:hover,
.gallery-thumb.is-active {
  opacity: 1;
  transform: translateY(-4px) scale(1.035);
}

.gallery-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(180, 93, 52, .28), 0 0 0 4px rgba(180, 93, 52, .1);
  animation: thumbPop .34s cubic-bezier(.18, 1.45, .35, 1);
}

.gallery-thumb.is-active::after,
.gallery-thumb:hover::after {
  opacity: 1;
  transform: scale(1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
  background:
    radial-gradient(circle at 50% 45%, rgba(180, 93, 52, .16), transparent 34%),
    rgba(10, 14, 12, .94);
  color: #fff;
  touch-action: pan-y;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  margin: 0;
  width: min(1120px, 100%);
  height: min(82svh, 820px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  justify-items: center;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
  animation: lightboxImage .28s cubic-bezier(.22, 1, .36, 1) both;
}

.lightbox-frame figcaption {
  min-height: 22px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.lightbox-nav {
  background: transparent;
  backdrop-filter: none;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}

.lightbox-nav:hover {
  background: transparent;
  opacity: .72;
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .35);
  outline-offset: 3px;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 72px;
  border-radius: 999px;
  font-size: 48px;
  line-height: 1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .42);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 88;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 42%, rgba(180, 93, 52, .18), transparent 36%),
    rgba(10, 14, 12, .92);
  color: #fff;
  backdrop-filter: blur(14px);
}

.video-modal[hidden] {
  display: none;
}

.video-dialog {
  position: relative;
  width: min(1120px, 100%);
  display: grid;
  gap: 14px;
  animation: bookingIn .32s cubic-bezier(.18, 1.45, .35, 1) both;
}

.video-head {
  display: grid;
  gap: 4px;
  padding-right: 64px;
}

.video-head span {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-head h2 {
  margin: 0;
  font-size: clamp(22px, 4vw, 42px);
  line-height: 1;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: #050706;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .42);
}

.video-frame video {
  display: block;
  width: 100%;
  max-height: min(72svh, 760px);
  background: #050706;
}

.video-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transition: transform .2s ease, background .18s ease;
}

.video-close:hover {
  background: rgba(255, 255, 255, .2);
  transform: scale(1.05);
}

.video-close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .34);
  outline-offset: 3px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 24% 18%, rgba(180, 93, 52, .22), transparent 30%),
    rgba(16, 22, 18, .72);
  backdrop-filter: blur(14px);
}

.booking-modal[hidden] {
  display: none;
}

.booking-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(280px, 1fr) auto;
  width: min(1100px, 100%);
  height: min(94svh, 920px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: var(--snow);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .36);
  animation: bookingIn .32s cubic-bezier(.18, 1.45, .35, 1) both;
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 28px rgba(16, 22, 18, .14);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: transform .24s cubic-bezier(.18, 1.45, .35, 1), background .18s ease;
}

.booking-close:hover {
  background: #fff;
  transform: scale(1.06) rotate(4deg);
}

.booking-close:focus-visible {
  outline: 3px solid rgba(180, 93, 52, .36);
  outline-offset: 3px;
}

.booking-head {
  padding: 12px 72px 10px clamp(18px, 2.6vw, 28px);
  border-bottom: 1px solid var(--line);
}

.booking-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.12;
}

.booking-frame-wrap {
  min-height: 0;
  background: #fff;
}

.booking-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.booking-fallback {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 9px clamp(14px, 2.4vw, 22px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.booking-fallback .button {
  min-height: 32px;
  padding: 7px 12px;
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: .02em;
}

.contact-widget {
  position: fixed;
  right: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
  z-index: 82;
  display: grid;
  justify-items: end;
  gap: 12px;
  transition: bottom .28s cubic-bezier(.22, 1, .36, 1);
}

.contact-widget-list {
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.contact-option {
  --messenger-color: var(--accent);
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(16, 22, 18, .18);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px) scale(.94);
  transition: opacity .2s ease, transform .28s cubic-bezier(.18, 1.45, .35, 1), box-shadow .22s ease;
}

.contact-option img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.phone-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.phone-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  right: 3px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.phone-icon::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.contact-option-phone > .phone-icon {
  width: 16px;
  height: 24px;
  margin: 0 5px;
  color: var(--accent);
}

.contact-widget.is-open .contact-widget-list {
  pointer-events: auto;
}

.contact-widget.is-open .contact-option {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-widget.is-open .contact-option:nth-child(1) {
  transition-delay: .02s;
}

.contact-widget.is-open .contact-option:nth-child(2) {
  transition-delay: .05s;
}

.contact-widget.is-open .contact-option:nth-child(3) {
  transition-delay: .08s;
}

.contact-widget.is-open .contact-option:nth-child(4) {
  transition-delay: .11s;
}

.contact-widget.is-open .contact-option:nth-child(5) {
  transition-delay: .14s;
}

.contact-option:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 48px color-mix(in srgb, var(--messenger-color) 26%, rgba(16, 22, 18, .18));
}

.contact-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 22px 54px rgba(180, 93, 52, .38);
  font-size: 27px;
  line-height: 1;
  isolation: isolate;
  transition: transform .28s cubic-bezier(.18, 1.45, .35, 1), background .18s ease, box-shadow .22s ease;
}

.contact-toggle::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(180, 93, 52, .36);
  animation: contactPulse 2.4s ease-in-out infinite;
}

.contact-toggle:hover {
  background: #cf7044;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 26px 64px rgba(180, 93, 52, .46);
}

.contact-toggle:active {
  transform: translateY(0) scale(.96);
}

.contact-toggle:focus-visible,
.contact-option:focus-visible {
  outline: 3px solid rgba(180, 93, 52, .36);
  outline-offset: 4px;
}

.contact-widget.is-open .contact-toggle {
  transform: rotate(12deg) scale(1.03);
}

.cookie-notice {
  position: fixed;
  left: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(560px, calc(100vw - 28px));
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 22px;
  background: rgba(22, 31, 25, .9);
  color: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 70px rgba(16, 22, 18, .28);
  backdrop-filter: blur(18px);
  animation: cookieIn .34s cubic-bezier(.18, 1.45, .35, 1) both;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.cookie-accept {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
  transition: transform .24s cubic-bezier(.18, 1.45, .35, 1), box-shadow .22s ease, background .18s ease;
}

.cookie-accept:hover {
  background: #f9f2e8;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.cookie-accept:active {
  transform: translateY(0) scale(.97);
}

.cookie-accept:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .45);
  outline-offset: 3px;
}

.final-cta {
  min-height: 60vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(22, 31, 25, .88), rgba(22, 31, 25, .52)),
    url("assets/house-winter.jpg") center 30% / cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .08) 42%, transparent 70%);
  transform: translateX(-100%);
  animation: ctaSweep 8s ease-in-out infinite;
  pointer-events: none;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta .button-ghost {
  background: rgba(255, 255, 255, .08);
}

.banya-intro,
.banya-options,
.banya-seo {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.banya-intro,
.banya-seo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(24px, 6vw, 80px);
  background: var(--snow);
}

.banya-intro {
  padding-top: clamp(34px, 6vw, 80px);
}

.banya-intro-copy,
.banya-seo > div:last-child {
  display: grid;
  gap: 14px;
  align-self: end;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.banya-intro-copy p,
.banya-seo p {
  margin: 0;
}

.banya-options {
  background: linear-gradient(180deg, var(--snow), #f2eee5);
}

.banya-card {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}

.banya-card-reverse .banya-media {
  order: 2;
}

.banya-media {
  display: grid;
  gap: 12px;
}

.banya-media img,
.banya-media video {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow-soft);
}

.banya-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.banya-thumbs {
  display: grid;
  gap: 8px;
}

.banya-thumbs > span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.banya-thumb-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 9px;
  padding: 0 0 4px;
}

.banya-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  opacity: .72;
  transition: opacity .18s ease, transform .24s cubic-bezier(.18, 1.45, .35, 1), border-color .18s ease, box-shadow .2s ease;
}

.banya-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

.banya-thumb:hover,
.banya-thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

.banya-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(180, 93, 52, .24), 0 0 0 4px rgba(180, 93, 52, .09);
}

.banya-media video {
  max-height: 420px;
}

.banya-copy {
  min-width: 0;
}

.banya-copy h3 {
  margin-bottom: 14px;
}

.banya-copy > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.banya-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.banya-facts span,
.banya-list li {
  border: 1px solid rgba(23, 32, 27, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset;
}

.banya-facts span {
  padding: 9px 13px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.banya-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.banya-list li {
  padding: 8px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.banya-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-light {
  border: 1px solid rgba(180, 93, 52, .28);
  background: rgba(255, 255, 255, .64);
  color: var(--ink);
}

.button-light:hover {
  background: #fff;
  color: var(--accent-dark);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(360px, .46fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: stretch;
  background: #ede7dc;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.map-copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.02;
}

.map-address {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  text-wrap: balance;
}

.map-copy p:not(.eyebrow, .map-address) {
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-messengers {
  margin-top: 14px;
}

.map-phone {
  color: var(--ink);
  border-color: rgba(23, 32, 27, .22);
  background: rgba(255, 255, 255, .42);
}

.map-phone:hover {
  color: var(--ink);
  border-color: rgba(23, 32, 27, .34);
  background: rgba(255, 255, 255, .68);
}

.map-frame {
  min-height: clamp(360px, 46vw, 560px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: #d8d2c7;
  transition: transform .34s cubic-bezier(.18, 1.45, .35, 1), box-shadow .26s ease;
}

.map-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 86px rgba(25, 31, 25, .18);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: rgba(23, 32, 27, .62);
  background: #e7dfd2;
  border-top: 1px solid rgba(23, 32, 27, .1);
  font-size: 13px;
  font-weight: 800;
}

.site-footer a {
  color: var(--accent-dark);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .82s ease, transform .82s cubic-bezier(.22, 1, .36, 1);
}

.motion-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .68s ease, transform .68s cubic-bezier(.22, 1, .36, 1);
}

.sparkle-pop {
  position: absolute;
  left: var(--spark-x, 50%);
  top: var(--spark-y, 50%);
  z-index: 4;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    12px -10px 0 -2px rgba(255, 238, 178, .95),
    -13px -7px 0 -3px rgba(255, 255, 255, .9),
    10px 11px 0 -3px rgba(255, 214, 158, .95),
    -9px 12px 0 -2px rgba(255, 255, 255, .86);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.2);
  animation: sparklePop .58s cubic-bezier(.18, 1.45, .35, 1) forwards;
}

.reveal.is-visible,
.motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroImage {
  to {
    transform: scale(1);
  }
}

@keyframes heroText {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes markPulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(180, 93, 52, .18);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(180, 93, 52, .08);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@keyframes lightboxImage {
  from {
    opacity: 0;
    transform: scale(.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ctaSweep {
  0%, 48% {
    transform: translateX(-100%);
  }
  68%, 100% {
    transform: translateX(100%);
  }
}

@keyframes sparklePop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.2) rotate(0deg);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.1) rotate(32deg);
  }
}

@keyframes thumbPop {
  0% {
    transform: translateY(-2px) scale(.96);
  }
  70% {
    transform: translateY(-5px) scale(1.045);
  }
  100% {
    transform: translateY(-4px) scale(1.035);
  }
}

@keyframes arrowFloat {
  0%, 100% {
    opacity: .82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes bookingIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contactPulse {
  0%, 100% {
    opacity: .55;
    transform: scale(.9);
  }
  50% {
    opacity: .12;
    transform: scale(1.18);
  }
}

@keyframes menuSlide {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 64px;
    gap: 12px;
  }

  .nav {
    display: none;
  }

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

  .header-messengers {
    display: none;
  }

  .header-cta {
    margin-left: auto;
    padding: 9px 13px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 90px;
  }

  .hero-content {
    padding-bottom: 118px;
  }

  .hero-facts {
    left: 20px;
    right: 20px;
    justify-content: flex-start;
  }

  .hero-scroll {
    display: none;
  }

  .intro,
  .search-paths,
  .section-head,
  .gallery-hero,
  .banya-intro,
  .banya-seo,
  .banya-card,
  .final-cta,
  .map-section {
    grid-template-columns: 1fr;
  }

  .banya-card-reverse .banya-media {
    order: 0;
  }

  .banya-thumb-strip {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .banya-thumb {
    flex: 0 0 78px;
    width: 78px;
    height: 58px;
    aspect-ratio: auto;
  }

  .gallery-group {
    gap: 12px;
  }

  .gallery-media {
    gap: 8px;
  }

  .gallery-actions .gallery-video {
    display: none;
  }

  .gallery-video-mobile {
    display: inline-flex;
    justify-self: stretch;
    width: 100%;
    margin-top: 2px;
  }

  .gallery-cover-nav {
    top: 0;
    bottom: 0;
    width: 76px;
    height: 100%;
    border-radius: 0;
    font-size: 36px;
    background: transparent;
    box-shadow: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    transform: none;
    animation: none;
  }

  .gallery-cover-prev {
    left: 0;
    justify-content: flex-start;
    padding-left: 18px;
  }

  .gallery-cover-next {
    right: 0;
    justify-content: flex-end;
    padding-right: 18px;
  }

  .gallery-cover-nav:hover,
  .gallery-cover-nav:active,
  .gallery-cover-nav:focus {
    background: transparent;
    box-shadow: none;
    outline: 0;
    transform: none;
  }

  .gallery-cover-nav:focus-visible {
    outline: 0;
  }

  .gallery-stage::after,
  .gallery-stage:hover::after,
  .gallery-stage:focus-within::after {
    opacity: 0;
    transform: none;
  }

  .gallery-stage:hover,
  .gallery-stage:focus-within,
  .map-frame:hover {
    transform: none;
  }

  .gallery-cover {
    transition: opacity .18s ease;
  }

  .gallery-cover:hover {
    transform: none;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-frame {
    height: 78svh;
  }

  .video-modal {
    padding: 12px;
  }

  .video-dialog {
    gap: 10px;
  }

  .video-head {
    padding-right: 54px;
  }

  .video-frame video {
    max-height: 76svh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 36px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .booking-dialog {
    height: 94svh;
    grid-template-rows: auto minmax(300px, 1fr) auto;
  }

  .booking-head {
    padding: 10px 58px 9px 14px;
  }

  .booking-head h2 {
    font-size: 18px;
  }

  .booking-fallback {
    display: grid;
    gap: 7px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .booking-fallback .button {
    width: 100%;
    min-height: 30px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .cookie-notice {
    left: 14px;
    right: 14px;
    bottom: 14px;
    align-items: stretch;
    flex-direction: column;
    width: auto;
    padding: 14px;
    border-radius: 18px;
  }

  body.has-cookie-notice .contact-widget {
    bottom: 164px;
  }

  .contact-widget {
    right: 14px;
    bottom: 14px;
  }

  .contact-toggle {
    width: 56px;
    height: 56px;
    font-size: 25px;
  }

  .contact-option {
    min-height: 42px;
    padding-right: 12px;
    font-size: 12px;
  }

  .cookie-accept {
    width: 100%;
  }

  .gallery-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .search-paths {
    gap: 24px;
  }

}

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
    padding-inline: 12px;
  }

  .brand span:last-child {
    max-width: clamp(96px, 31vw, 132px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    font-size: 12px;
    padding: 9px 11px;
  }

  .search-paths {
    padding: 54px 20px;
  }

  .search-path-list a:hover {
    transform: none;
  }

  .menu-toggle {
    flex-basis: 40px;
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(31px, 9.8vw, 48px);
    line-height: .94;
    margin-bottom: 16px;
  }

  .hero-copy,
  .intro-list {
    font-size: 16px;
  }

  .intro-promo {
    align-items: flex-start;
    flex-direction: column;
  }

  .vk-subscribe {
    width: auto;
  }

  .button {
    width: 100%;
  }

  .hero-actions .yandex-rating-widget {
    width: 150px;
    max-width: 100%;
    flex-basis: 150px;
    margin-top: 2px;
  }

  .banya-actions,
  .banya-actions .button {
    width: 100%;
  }

  .banya-intro-copy,
  .banya-seo > div:last-child,
  .banya-copy > p {
    font-size: 16px;
  }

  .gallery-actions,
  .gallery-book,
  .map-actions,
  .map-actions .button {
    width: 100%;
  }

  .contact-messengers,
  .mobile-messengers {
    display: grid;
    grid-template-columns: repeat(4, 46px);
    gap: 10px;
  }

  .contact-messengers .messenger-link,
  .mobile-messengers .messenger-link {
    width: 46px;
    height: 46px;
  }

  .apartment-map iframe {
    height: 150px;
  }

  .apartment-map-meta {
    grid-template-columns: 1fr;
  }

  .apartment-map-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .map-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .map-address {
    font-size: 17px;
    line-height: 1.35;
    text-wrap: wrap;
  }

  .hero-facts span {
    font-size: 12px;
  }

  .gallery-thumb {
    flex-basis: 74px;
    width: 74px;
    height: 56px;
  }

  .gallery-strip {
    gap: 7px;
    padding-bottom: 4px;
  }

  .map-frame {
    min-height: 340px;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 7px;
    padding-inline: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand span:last-child {
    max-width: 108px;
  }

  .header-cta {
    min-width: 58px;
    padding: 9px 10px;
    font-size: 0;
  }

  .header-cta::after {
    content: "Бронь";
    font-size: 12px;
    line-height: 1;
  }
}

@media (max-width: 360px) {
  .brand span:last-child {
    max-width: 82px;
  }

  .brand-mark {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 5px rgba(180, 93, 52, .2);
  }

  .header-cta {
    min-width: 54px;
    padding-inline: 9px;
  }

  .menu-toggle {
    flex-basis: 38px;
    width: 38px;
    min-width: 38px;
    height: 38px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(29px, 9.2vw, 35px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .sparkle-pop {
    display: none;
  }
}
