@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/inter-tight-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/inter-tight-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --forest: #2f4a3a;
  --deep: #16241c;
  --cream: #f6f1e8;
  --beige: #e8dcc8;
  --sage: #a8b89a;
  --bronze: #8a5a35;
  --text: #252a26;
  --white: #ffffff;
  --muted: rgba(37, 42, 38, 0.68);
  --line: rgba(47, 74, 58, 0.16);
  --shadow: 0 22px 70px rgba(22, 36, 28, 0.15);
  --display: "Inter Tight", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1160px, calc(100vw - 40px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-height: var(--header-height);
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  transform: translateZ(0);
  backface-visibility: hidden;
  background: rgba(22, 36, 28, 0);
  transition: background-color 0.16s ease;
}

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

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(22, 36, 28, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(154px, 14vw, 206px);
  min-width: 154px;
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: min(220px, 72vw);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.site-nav a,
.footer-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

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

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

.header-phone {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-phone:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--deep);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 241, 232, 0.28);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.08);
  color: var(--white);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 84px) clamp(20px, 5vw, 72px) 42px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__image,
.booking__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../img/lisovyi-zatyshok-hero-mountains.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(90deg, rgba(10, 18, 14, 0.92) 0%, rgba(14, 24, 18, 0.64) 42%, rgba(12, 18, 14, 0.4) 72%, rgba(8, 12, 10, 0.7) 100%),
    linear-gradient(180deg, rgba(4, 7, 5, 0.45), rgba(5, 8, 6, 0.08) 48%, rgba(7, 10, 8, 0.9));
}

.hero__word {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: -1;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 20rem);
  font-weight: 300;
  letter-spacing: -0.092em;
  line-height: 0.72;
  color: rgba(255, 255, 255, 0.09);
  white-space: nowrap;
  pointer-events: none;
}

.hero__content {
  width: min(760px, 100%);
  min-width: 0;
  justify-self: start;
  padding-bottom: clamp(28px, 7vh, 80px);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.8vw, 8.05rem);
  line-height: 0.92;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.8vw, 5.25rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn--primary {
  background: var(--beige);
  color: var(--deep);
}

.btn--primary:hover {
  background: var(--white);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero__actions,
.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(980px, 100%);
  min-width: 0;
}

.hero-badge {
  position: relative;
  min-height: 116px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(10, 16, 12, 0.22);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.hero-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(232, 220, 200, 0.18), transparent 36%);
  pointer-events: none;
}

.hero-badge svg {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  color: rgba(232, 220, 200, 0.72);
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-badge span,
.hero-badge small {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-badge span {
  margin-top: 24px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hero-badge small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section {
  padding: clamp(86px, 11vw, 150px) 0;
}

.section--cream {
  background: var(--cream);
}

.section--sage {
  background: linear-gradient(180deg, #eef0e5 0%, var(--cream) 100%);
}

.two-column,
.experience__inner,
.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.section-text p,
.experience__copy p,
.location__copy p,
.gallery-head p,
.booking__content p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.82;
}

.experience__copy h2,
.location__copy h2,
.booking__content h2 {
  margin-bottom: clamp(22px, 2.6vw, 34px);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(42px, 7vw, 86px);
}

.amenity {
  min-height: 166px;
  padding: 26px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 18px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.amenity:hover,
.territory-item:hover,
.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 90, 53, 0.28);
  box-shadow: var(--shadow);
}

.amenity p,
.territory-item p,
.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.amenity p {
  grid-column: 1 / -1;
}

.icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  color: var(--forest);
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.amenity h3 {
  align-self: center;
  margin-bottom: 0;
}

.icon-bed {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 14a3 3 0 0 1 6 0v9h31a2 2 0 0 1 2 2v14h-4v-5H10v5H6V14h1Zm7 4h12a5 5 0 0 1 5 5H14v-5Zm25 9H10v4h32v-4h-3Z'/%3E%3C/svg%3E");
}

.icon-kitchen {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 5h3v18a6 6 0 0 1-4.5 5.8V43h-3V28.8A6 6 0 0 1 3 23V5h3v17h3V5h3v17h3V5Zm24 0c5 4 8 10 8 17 0 6.5-3.2 11.7-8 13.5V43h-3V5h3Z'/%3E%3C/svg%3E");
}

.icon-bath {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 7a6 6 0 0 1 11.7-1.8l-3.2 1A2.7 2.7 0 0 0 15.3 7v11H44v8a12 12 0 0 1-8 11.3V43h-4v-5H16v5h-4v-5.7A12 12 0 0 1 4 26v-8h8V7Zm-4 15v4a8 8 0 0 0 8 8h16a8 8 0 0 0 8-8v-4H8Z'/%3E%3C/svg%3E");
}

.icon-lounge {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 17a6 6 0 0 1 6-6h16a6 6 0 0 1 6 6v7h1a5 5 0 0 1 5 5v9h-4v-4H8v4H4v-9a5 5 0 0 1 5-5h2v-7Zm4 7h20v-7a2 2 0 0 0-2-2H17a2 2 0 0 0-2 2v7ZM9 28a1 1 0 0 0-1 1v1h37v-1a1 1 0 0 0-1-1H9Z'/%3E%3C/svg%3E");
}

.icon-gate {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 11h4v32H7V11Zm30 0h4v32h-4V11ZM14 17h20v4H14v-4Zm0 8h20v4H14v-4Zm0 8h20v4H14v-4ZM2 8h46v4H2V8Z'/%3E%3C/svg%3E");
}

.icon-guests {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M18 22a8 8 0 1 1 0-16 8 8 0 0 1 0 16Zm16 2a6 6 0 1 1 0-12 6 6 0 0 1 0 12ZM4 41c1-8 6.8-14 14-14s13 6 14 14H4Zm24-12.5a13.8 13.8 0 0 1 13 12.5h4c-.8-7.2-5.8-12.5-12-12.5-1.8 0-3.5.4-5 1Z'/%3E%3C/svg%3E");
}

.experience {
  position: relative;
  padding: clamp(90px, 12vw, 170px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(22, 36, 28, 0.84), rgba(22, 36, 28, 0.66) 48%, rgba(22, 36, 28, 0.84)),
    linear-gradient(180deg, rgba(22, 36, 28, 0.42), rgba(22, 36, 28, 0.18) 42%, rgba(22, 36, 28, 0.76)),
    url("../img/lisovyi-zatyshok-second-block-hero-like.webp") center 45%/cover fixed;
}

.experience__visual {
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(246, 241, 232, 0.1), rgba(246, 241, 232, 0.02)),
    url("../img/gallery/real/gazebo-view.webp");
  background-position:
    center,
    center 18%;
  background-size:
    cover,
    auto 118%;
  background-repeat: no-repeat;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.experience__visual span {
  display: block;
  width: 68%;
  height: 1px;
  margin: 32px;
  background: rgba(255, 255, 255, 0.32);
}

.experience__copy {
  align-self: center;
}

.experience__copy p,
.booking__content p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(36px, 6vw, 70px);
}

.territory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: stretch;
}

.territory-photo {
  overflow: hidden;
  min-height: 560px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.territory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.territory-photo:hover img,
.gallery-item:hover img {
  transform: scale(1.045);
}

.territory-list {
  display: grid;
  gap: 14px;
}

.territory-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.territory-item__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.territory-item__head h3 {
  margin-bottom: 0;
}

.territory-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: rgba(138, 90, 53, 0.78);
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.audience-card {
  min-height: 220px;
  padding: 24px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 24px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(232, 220, 200, 0.28));
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.audience-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  color: var(--bronze);
}

.audience-card__top svg {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: rgba(138, 90, 53, 0.78);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.audience-card h3 {
  align-self: center;
  margin-bottom: 0;
}

.audience-card p {
  grid-column: 1 / -1;
}

.location {
  padding: clamp(90px, 12vw, 160px) 0;
  background: var(--deep);
  color: var(--white);
}

.location__copy p {
  color: rgba(255, 255, 255, 0.68);
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 1px;
  background: var(--beige);
}

.location-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 26%, rgba(168, 184, 154, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
}

.map-canvas,
.map-fallback {
  position: absolute;
  inset: 0;
}

.map-canvas {
  z-index: 0;
  opacity: 0;
  filter: saturate(0.84) contrast(1.06);
  transition: opacity 0.45s ease;
}

.map-fallback {
  pointer-events: none;
}

.location-card.is-map-ready .map-canvas {
  opacity: 1;
}

.location-card.is-map-ready .map-fallback {
  opacity: 0;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(22, 36, 28, 0.16), rgba(22, 36, 28, 0.22) 42%, rgba(22, 36, 28, 0.84)),
    radial-gradient(circle at 76% 24%, rgba(168, 184, 154, 0.22), transparent 34%);
}

.map-lines {
  position: absolute;
  inset: 8%;
  opacity: 0.28;
  background:
    linear-gradient(28deg, transparent 18%, rgba(255, 255, 255, 0.3) 18.4%, transparent 19%),
    linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, 0.3) 34.4%, transparent 35%),
    linear-gradient(158deg, transparent 52%, rgba(255, 255, 255, 0.22) 52.4%, transparent 53%),
    linear-gradient(72deg, transparent 68%, rgba(255, 255, 255, 0.18) 68.4%, transparent 69%);
}

.map-pin {
  position: absolute;
  top: 38%;
  left: 52%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--beige);
  box-shadow: 0 0 0 12px rgba(232, 220, 200, 0.14), 0 0 0 24px rgba(232, 220, 200, 0.06);
}

.location-card__content {
  position: absolute;
  right: clamp(18px, 4vw, 36px);
  bottom: clamp(18px, 4vw, 36px);
  left: clamp(18px, 4vw, 36px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

.location-card p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.location-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.7vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.location-card span {
  color: rgba(255, 255, 255, 0.62);
}

.map-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(246, 241, 232, 0.34);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.94);
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  pointer-events: auto;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.map-nav-button:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 241, 232, 0.72);
  background: var(--white);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 70px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: clamp(118px, 12vw, 154px);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 8px;
  background: var(--beige);
  box-shadow: 0 20px 54px rgba(22, 36, 28, 0.11);
}

.gallery-item--wide {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item--tall {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-item--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.gallery-item--bedrooms-split,
.gallery-item--bedroom-wide {
  grid-row: span 2;
}

.gallery-item--bedroom-wide img {
  object-position: 72% center;
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.gallery-item--split .gallery-trigger {
  border-radius: 8px;
  background: var(--beige);
  box-shadow: 0 20px 54px rgba(22, 36, 28, 0.11);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 10, 0.04), transparent 42%, rgba(8, 13, 10, 0.74)),
    linear-gradient(90deg, rgba(8, 13, 10, 0.18), transparent 44%);
  opacity: 0.88;
  transition: opacity 0.45s ease;
}

.gallery-item figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
  transform: translateY(4px);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.045);
}

.gallery-trigger:hover::after,
.gallery-trigger:focus-visible::after {
  opacity: 1;
}

.gallery-trigger:hover figcaption,
.gallery-trigger:focus-visible figcaption {
  transform: translateY(0);
}

.gallery-trigger:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(138, 90, 53, 0.2), transparent 30%),
    rgba(7, 12, 9, 0.9);
  backdrop-filter: blur(18px);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  width: min(1180px, 100%);
  max-height: min(86vh, 900px);
  gap: clamp(10px, 2vw, 22px);
}

.gallery-lightbox__figure {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
}

.gallery-lightbox__figure img {
  width: 100%;
  max-height: calc(86vh - 92px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.05);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
}

.gallery-lightbox__figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(246, 241, 232, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-lightbox__figure small {
  color: rgba(246, 241, 232, 0.54);
  font-size: 0.82rem;
  white-space: nowrap;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(246, 241, 232, 0.24);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  border-color: rgba(246, 241, 232, 0.48);
  background: rgba(246, 241, 232, 0.16);
}

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

.gallery-lightbox__close {
  position: absolute;
  top: -10px;
  right: 0;
  width: 52px;
  height: 52px;
  transform: translateY(-100%);
}

.gallery-lightbox__close:hover {
  transform: translateY(-100%);
}

.gallery-lightbox__close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.gallery-lightbox__close span:first-child {
  transform: rotate(45deg);
}

.gallery-lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.gallery-lightbox__nav {
  width: 52px;
  height: 52px;
}

.gallery-lightbox__nav::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.gallery-lightbox__nav--prev::before {
  transform: translateX(3px) rotate(-45deg);
}

.gallery-lightbox__nav--next::before {
  transform: translateX(-3px) rotate(135deg);
}

.booking {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 13vw, 170px) 0;
  color: var(--white);
  isolation: isolate;
}

.booking__image {
  background-position: center 38%;
  filter: saturate(0.88);
}

.booking::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 19, 15, 0.94), rgba(12, 19, 15, 0.7), rgba(12, 19, 15, 0.9)),
    radial-gradient(circle at 72% 38%, rgba(138, 90, 53, 0.25), transparent 32%);
}

.booking__content {
  width: min(850px, var(--container));
  margin: 0 auto;
  text-align: center;
}

.booking__content h2 {
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.booking__content p {
  width: min(640px, 100%);
  margin: 0 auto 34px;
  line-height: 1.48;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: min(760px, 100%);
  margin: 0 auto 32px;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.07);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.contact-grid span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.booking__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(700px, 100%);
  margin: 0 auto;
  gap: 14px;
  justify-content: stretch;
}

.booking__call {
  display: inline-flex;
  gap: 10px;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(390px, 100%);
  min-height: 60px;
  border-color: rgba(246, 241, 232, 0.68);
  background:
    linear-gradient(135deg, rgba(246, 241, 232, 0.98), rgba(232, 220, 200, 0.9));
  color: var(--deep);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.68) inset;
}

.booking__call svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking__call:hover {
  border-color: var(--white);
  background: var(--white);
}

.booking__messenger {
  display: inline-flex;
  gap: 8px;
  min-height: 48px;
  padding-inline: 18px;
  font-size: 0.84rem;
}

.booking__messenger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 42px 0;
  background: #111b15;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 34px;
  align-items: center;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 600;
}

.copyright {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.065) translate3d(-0.8%, -0.6%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.72rem;
  }

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

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

  .territory-photo {
    min-height: 440px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 32px, 720px);
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    padding-right: 10px;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    width: 100vw;
    min-height: calc(100svh - var(--header-height));
    justify-self: stretch;
    justify-items: stretch;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: clamp(28px, 8vw, 52px) 22px 28px;
    border: 0;
    border-top: 1px solid rgba(246, 241, 232, 0.14);
    border-radius: 0;
    background:
      radial-gradient(circle at 78% 4%, rgba(168, 184, 154, 0.16), transparent 32%),
      linear-gradient(180deg, rgba(22, 36, 28, 0.98), rgba(13, 24, 18, 0.99));
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

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

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(246, 241, 232, 0.12);
    border-radius: 0;
    color: rgba(246, 241, 232, 0.82);
    font-size: clamp(1.28rem, 7vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.045em;
  }

  .site-nav a:hover {
    color: var(--white);
    background: transparent;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .mobile-nav-phone {
    display: flex;
    justify-content: center;
    min-height: 58px;
    margin-top: clamp(22px, 7vh, 54px);
    padding: 0 22px;
    border: 1px solid rgba(232, 220, 200, 0.34);
    border-radius: 999px;
    background: var(--beige);
    color: var(--deep);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.015em;
  }

  .header-cta {
    display: none;
  }

  .header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(246, 241, 232, 0.26);
    border-radius: 999px;
    background: rgba(246, 241, 232, 0.1);
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 800;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 40px) 16px 52px;
  }

  .hero__image {
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(10, 18, 14, 0.92), rgba(14, 24, 18, 0.58)),
      linear-gradient(180deg, rgba(4, 7, 5, 0.54), rgba(5, 8, 6, 0.08) 42%, rgba(7, 10, 8, 0.92));
  }

  .hero__word {
    top: 40%;
    font-size: clamp(5.2rem, 26vw, 9rem);
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding-bottom: 54px;
  }

  .hero__actions {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: min(13.8ch, 100%);
    font-size: clamp(3rem, 10.8vw, 4.35rem);
    line-height: 0.96;
  }

  .hero__lead {
    line-height: 1.65;
  }

  .hero__badges {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .two-column,
  .experience__inner,
  .location__grid,
  .gallery-head {
    grid-template-columns: 1fr;
  }

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

  .experience {
    background-attachment: scroll;
  }

  .experience__copy {
    order: 1;
  }

  .experience__visual {
    order: 2;
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(86px, 15vw, 128px);
    gap: 10px;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 2;
  }

  .gallery-item--wide {
    grid-row: span 2;
  }

  .gallery-item--tall {
    grid-row: span 3;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-bottom: 26px;
  }

  .contact-grid span {
    min-height: 56px;
    padding: 11px 16px;
    line-height: 1.28;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .site-header {
    gap: 6px;
    padding: 0 8px 0 14px;
  }

  .site-header::after {
    inset-inline: 14px;
  }

  .brand {
    width: 132px;
    min-width: 132px;
  }

  .header-phone {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .hero__actions,
  .booking__actions {
    display: grid;
  }

  .booking__content h2 {
    letter-spacing: -0.018em;
    line-height: 1.06;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
  }

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

  .booking__call {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(340px, 100%);
    min-height: 56px;
  }

  .booking__messenger {
    gap: 6px;
    min-height: 46px;
    padding: 0 8px;
    font-size: clamp(0.68rem, 3.4vw, 0.78rem);
  }

  .booking__messenger svg {
    width: 15px;
    height: 15px;
  }

  .hero-badge {
    min-height: 128px;
    padding: 16px;
  }

  .hero-badge svg {
    right: 14px;
    top: 14px;
    width: 26px;
    height: 26px;
  }

  .hero-badge span {
    margin-top: 32px;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .hero-badge small {
    margin-top: 8px;
    font-size: 0.68rem;
  }

  .section {
    padding: 54px 0;
  }

  .experience,
  .location,
  .booking {
    padding: 58px 0;
  }

  .gallery-head,
  .section-head {
    margin-bottom: 28px;
  }

  .amenity-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .amenity,
  .audience-card,
  .territory-item {
    padding: 22px;
  }

  .audience-card {
    min-height: 170px;
  }

  .audience-card__top {
    margin-bottom: 0;
  }

  .territory-photo,
  .experience__visual,
  .location-card {
    min-height: 340px;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 118px;
    gap: 9px;
  }

  .gallery-item {
    grid-row: span 2;
  }

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

  .gallery-item--split {
    gap: 9px;
  }

  .gallery-item--tall {
    grid-row: span 3;
  }

  .gallery-item figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.78rem;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgba(9, 15, 11, 0.52);
  }

  .gallery-lightbox__nav--prev {
    left: 10px;
  }

  .gallery-lightbox__nav--next {
    right: 10px;
  }

  .gallery-lightbox__close {
    top: -8px;
    width: 46px;
    height: 46px;
  }

  .gallery-lightbox__figure img {
    max-height: calc(86vh - 86px);
  }

  .gallery-lightbox__figure figcaption {
    flex-direction: column;
    gap: 4px;
  }
}
