@font-face {
  font-family: "AGAvalancheC";
  src: url("../assets/fonts/AGAvalancheC-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --sand: #c39871;
  --muted-white: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.28);
  --dark: #06111d;
  --container: 1648px;
  --header-container: 1808px;
  --side-x: clamp(24px, 7.083vw, 136px);
  --header-side-x: clamp(20px, 2.917vw, 56px);
  --page-header-height: 124px;
  --hero-height: min(1080px, 100svh);
  --font-title: "AGAvalancheC", "Arial Narrow", Arial, sans-serif;
  --font-ui: "Manrope", Arial, Helvetica, sans-serif;
  --font-body: "Neue Montreal", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: clip;
  background: #071522;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

body.callback-open {
  height: 100vh;
  overflow: hidden;
}

body.photo-open {
  overflow: hidden;
}

body.property-page::before,
body.about-page::before,
body.contact-page::before,
body.privacy-page::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: var(--page-header-height);
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 17% 45%, rgba(22, 83, 127, 0.54) 0%, rgba(11, 57, 95, 0.38) 31%, rgba(6, 31, 61, 0) 72%),
    linear-gradient(90deg, #061832 0%, #0b345f 44%, #061b3a 100%);
}

body.callback-open .hero {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 0;
  min-height: 0;
  overflow: visible;
  background: transparent;
  pointer-events: none;
}

body.callback-open .hero__video,
body.callback-open .hero__media-fallback,
body.callback-open .hero__shade,
body.callback-open .hero__content,
body.callback-open .details-link {
  display: none;
}

body.callback-open .header {
  position: fixed;
  top: 0;
  right: var(--header-side-x);
  left: var(--header-side-x);
  z-index: 90;
  width: auto;
  max-width: var(--header-container);
  margin: 0 auto;
  color: var(--white);
  pointer-events: none;
}

body.callback-open .header > * {
  pointer-events: auto;
}

body.callback-open .header .phone,
body.callback-open .header .callback {
  display: none;
}

body.callback-open .header__actions {
  flex: 0 0 auto;
  margin-left: auto;
}

body.callback-open .language-switcher {
  margin-right: 250px;
}

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

button {
  border: 0;
  font: inherit;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1px solid rgba(210, 163, 115, 0.9);
  outline-offset: 5px;
}

.site-shell {
  min-height: 100vh;
  background: #f4ede8;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  min-height: clamp(640px, 100svh, 1080px);
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
}

.hero__video,
.hero__media-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero__media-fallback {
  z-index: -3;
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2400&q=88");
  background-position: 50% 42%;
  background-size: cover;
  transform: scale(1.04);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 15, 29, 0.46) 3.12%, rgba(5, 15, 29, 0.38) 7.78%, rgba(5, 15, 29, 0.32) 13.07%, rgba(5, 15, 29, 0.122964) 17.01%, rgba(5, 15, 29, 0) 27.88%, rgba(6, 17, 35, 0.400556) 51.44%, rgba(6, 19, 39, 0.62) 68.27%, rgba(9, 19, 34, 0.9) 100%);
}

.header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  column-gap: clamp(18px, 2.4vw, 44px);
  align-items: center;
  width: calc(100% - (var(--header-side-x) * 2));
  max-width: var(--header-container);
  margin: 0 auto;
  padding: clamp(24px, 2vw, 38px) 0 0;
}

body > .header {
  position: absolute;
  top: 0;
  right: var(--header-side-x);
  left: var(--header-side-x);
  z-index: 70;
  width: auto;
  min-height: var(--page-header-height);
  padding-top: 0;
  color: var(--white);
}

body.property-page > .header,
body.about-page > .header {
  isolation: isolate;
}

.burger {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 14px 11px;
  cursor: pointer;
  background: transparent;
  align-content: space-between;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.24s ease, opacity 0.24s ease, background-color 0.24s ease;
}

.burger.is-open {
  opacity: 0;
  pointer-events: none;
}

.burger.is-open span:nth-child(1) {
  transform: none;
}

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

.burger.is-open span:nth-child(3) {
  transform: none;
}

.logo {
  display: block;
  width: clamp(132px, 8.5vw, 163px);
  aspect-ratio: 163 / 42;
  height: auto;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav,
.header__actions {
  display: flex;
  align-items: center;
}

.nav {
  justify-self: center;
  min-width: 0;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 48px);
  width: auto;
}

.nav a,
.lang,
.callback span:first-child {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.nav a,
.lang,
.phone,
.callback {
  transition: color 0.22s ease;
}

.nav a {
  position: relative;
  padding-bottom: 8px;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  justify-self: end;
  min-width: 0;
  gap: clamp(12px, 1.4vw, 20px);
  white-space: nowrap;
}

.lang {
  width: 20px;
  margin-right: 73px;
  padding: 0;
  color: var(--white);
  cursor: pointer;
  background: transparent;
}

.language-switcher {
  position: relative;
  z-index: 6;
  margin-right: clamp(18px, 3.8vw, 73px);
}

.language-switcher .lang {
  width: auto;
  min-width: 26px;
  margin-right: 0;
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  gap: 18px;
  min-width: 88px;
  padding: 18px 20px;
  border: 0;
  color: var(--white);
  background: transparent;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.language-switcher.is-open .language-switcher__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.language-switcher__menu button {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.language-switcher__menu button:hover,
.language-switcher__menu button:focus-visible,
.language-switcher__menu button.is-active {
  color: var(--white);
}

.phone {
  font-family: var(--font-title);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 21px;
  margin-right: 0;
}

.phone::after {
  display: inline-block;
  width: 1px;
  height: 18px;
  margin-left: 20px;
  vertical-align: middle;
  content: "";
  background: rgba(217, 217, 217, 0.16);
}

.callback {
  display: inline-flex;
  gap: clamp(16px, 1.25vw, 24px);
  align-items: center;
}

.callback span:first-child {
  width: max-content;
  max-width: clamp(126px, 10vw, 162px);
  font-family: var(--font-title);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 700;
  line-height: 1.2;
}

.round-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: clamp(44px, 2.8vw, 54px);
  height: clamp(44px, 2.8vw, 54px);
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.round-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease;
}

.callback:hover .round-icon,
.callback:focus-visible .round-icon,
.round-icon:hover {
  background: var(--sand);
}

.callback:hover .round-icon svg,
.callback:focus-visible .round-icon svg,
.round-icon:hover svg {
  transform: rotate(45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: block;
  visibility: hidden;
  background: rgba(3, 12, 22, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mobile-panel.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel__sheet {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50vw;
  min-width: 560px;
  height: 100%;
  padding: 95px 8.3vw 72px;
  background: linear-gradient(145deg, rgba(17, 39, 70, 0.99) 0%, rgba(19, 40, 69, 0.99) 100%);
  transform: translateX(-100%);
  transition: transform 0.32s ease;
}

.mobile-panel.is-open .mobile-panel__sheet {
  transform: translateX(0);
}

.mobile-panel__close {
  position: absolute;
  top: 62px;
  right: 72px;
  width: 48px;
  height: 48px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.mobile-panel__close span {
  position: absolute;
  top: 23px;
  left: 8px;
  width: 34px;
  height: 2px;
  background: currentColor;
  transform-origin: 50% 50%;
}

.mobile-panel__close span:first-child {
  transform: rotate(45deg);
}

.mobile-panel__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-panel__close:hover,
.mobile-panel__close:focus-visible {
  color: var(--white);
  transform: scale(1.04);
}

.mobile-panel__mark {
  display: grid;
  grid-template-columns: 8px 8px;
  grid-template-rows: repeat(2, 8px);
  gap: 6px 8px;
  width: 24px;
  height: 22px;
  align-items: center;
}

.mobile-panel__mark span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--white);
}

.mobile-panel__mark span:nth-child(2) {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 5px;
  height: 20px;
  background: var(--sand);
  align-self: center;
}

.mobile-panel__mark span:nth-child(3) {
  grid-row: 2;
  grid-column: 1;
}

.mobile-panel a {
  display: block;
  padding: 0;
  border: 0;
  color: var(--white);
  font-family: var(--font-ui);
}

.mobile-panel__nav {
  display: grid;
  gap: 34px;
  margin-top: auto;
  margin-bottom: auto;
}

.mobile-panel__nav a {
  font-family: var(--font-ui);
  font-size: clamp(30px, 2.05vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.mobile-panel__nav a:hover,
.mobile-panel__nav a:focus-visible {
  color: var(--sand);
}

.language-switcher--menu {
  width: max-content;
  margin: 0 0 42px;
}

.language-switcher--menu .lang {
  display: none;
}

.language-switcher--menu .language-switcher__menu {
  position: static;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  min-width: 112px;
  padding: 26px 30px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.language-switcher--menu .language-switcher__menu button {
  color: var(--white);
}

.language-switcher--menu .language-switcher__menu button:not(.is-active) {
  color: rgba(255, 255, 255, 0.48);
}

.mobile-panel > a,
.mobile-panel__sheet > a {
  display: none;
}

.mobile-panel__social {
  display: flex;
  gap: 12px;
}

.mobile-panel__social a {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  place-items: center;
}

.mobile-panel__social svg,
.footer__social-links svg {
  display: block;
  max-width: 58%;
  max-height: 58%;
}

.callback-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: linear-gradient(135deg, #112746 0%, #122744 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.callback-popup.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.callback-popup__dialog {
  position: relative;
  min-height: 100svh;
  padding: 0 0 96px;
  color: var(--white);
  background: transparent;
}

.callback-popup__close {
  position: fixed;
  top: 30px;
  right: 72px;
  z-index: 100;
  width: 48px;
  height: 48px;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  background: transparent;
}

.callback-popup__close span {
  position: absolute;
  top: 23px;
  left: 7px;
  width: 38px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}

.callback-popup__close span:first-child {
  transform: rotate(45deg);
}

.callback-popup__close span:last-child {
  transform: rotate(-45deg);
}

.callback-popup__close:hover,
.callback-popup__close:focus-visible {
  color: var(--white);
}

.callback-popup__content {
  display: grid;
  grid-template-columns: minmax(330px, 360px) minmax(520px, 676px) minmax(180px, 240px);
  gap: 52px 72px;
  align-items: start;
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: clamp(210px, 15.6vw, 300px) auto 0;
}

.callback-popup__intro {
  display: contents;
}

.callback-popup__intro h2 {
  grid-column: 1 / 3;
  width: max-content;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(76px, 4.7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.callback-popup__contacts {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 18px;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 24px;
}

.callback-popup__contacts p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}

.callback-popup__contacts strong {
  color: var(--white);
}

.callback-popup__contacts a {
  width: max-content;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.callback-popup__form {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: 42px;
}

.callback-popup__field {
  display: block;
}

.callback-popup__field span {
  display: block;
  margin-bottom: 15px;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 22px;
  text-transform: uppercase;
}

.callback-popup__field input {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 18px;
  background: transparent;
  box-shadow: none;
  appearance: none;
  transition: border-color 0.22s ease;
}

.callback-popup__field:hover input,
.callback-popup__field:focus-within input {
  border-color: var(--white);
}

.callback-popup__field input:focus,
.callback-popup__field input:focus-visible {
  outline: none;
  box-shadow: none;
}

.callback-popup__agree {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.callback-popup__agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.callback-popup__agree span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 3px;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

.callback-popup__agree span::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 11px;
  border: solid var(--sand);
  border-width: 0 2px 2px 0;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.18s ease;
}

.callback-popup__agree input:checked + span {
  border-color: var(--sand);
  background: transparent;
}

.callback-popup__agree input:checked + span::after {
  opacity: 1;
}

.callback-popup__agree em {
  font-style: normal;
}

.callback-popup__submit {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  align-self: start;
  width: max-content;
  margin-top: 36px;
  padding: 0;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

.callback-popup__submit .round-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.12);
}

.callback-popup__submit .round-icon svg {
  width: 26px;
  height: 26px;
}

.callback-popup__submit:hover .round-icon,
.callback-popup__submit:focus-visible .round-icon {
  background: var(--sand);
}

.callback-popup__submit:hover .round-icon svg,
.callback-popup__submit:focus-visible .round-icon svg {
  transform: rotate(45deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(72px, 9vh, 128px) 0 clamp(56px, 13vh, 228px);
}

.hero__title-row {
  --hero-title-size: clamp(88px, 7.3vw, 140px);
  --hero-title-leading: 0.84;

  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(15rem, 22.5rem);
  grid-template-rows: auto auto;
  align-items: start;
  gap: clamp(28px, 4vw, 72px);
}

h1 {
  min-width: 0;
  width: auto;
  max-width: none;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--hero-title-size);
  font-weight: 400;
  line-height: var(--hero-title-leading);
  letter-spacing: 0;
  text-transform: uppercase;
  display: contents;
}

h1 span {
  display: block;
  line-height: inherit;
}

h1 span:first-child {
  grid-column: 1;
  grid-row: 1;
}

h1 span:last-child {
  grid-column: 1;
  grid-row: 2;
}

.hero__title-row p {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  min-width: 0;
  width: auto;
  max-width: none;
  margin: 0;
  color: var(--sand);
  font-family: var(--font-ui);
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 2vw, 35px);
  width: min(100%, 33rem);
  min-height: 30px;
  margin-top: clamp(20px, 2vw, 27px);
}

.hero__links a {
  position: relative;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 400;
  line-height: 30px;
}

.hero__links a::before {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.hero__links a:hover::before,
.hero__links a:focus-visible::before {
  transform: scaleX(1);
}

.hero__links a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 1px;
  height: 17px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.details-link {
  position: absolute;
  right: max(24px, calc((100vw - var(--header-container)) / 2 + 80px));
  bottom: 0;
  z-index: 3;
  display: block;
  width: 30px;
  height: clamp(210px, 29vh, 315px);
  border: 0;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.details-link span {
  position: absolute;
  top: 0;
  right: 7px;
  display: block;
  color: currentColor;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  opacity: 0.8;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.details-link::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.15);
  transition: background-color 0.24s ease;
}

.details-link::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 180px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  transition: height 0.24s ease, background-color 0.24s ease;
}

.details-link:hover,
.details-link:focus-visible {
  color: var(--white);
  background: transparent;
}

.details-link:hover::before,
.details-link:focus-visible::before {
  background: var(--white);
}

.details-link:hover::after,
.details-link:focus-visible::after {
  background: var(--white);
  height: 100%;
}

.properties {
  background: #f4ede8;
  color: #282a2d;
}

.properties__inner {
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 7.5vw, 145px) 0 clamp(72px, 6vw, 115px);
}

.properties__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-end;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: clamp(36px, 4vw, 64px);
}

.properties__title p {
  margin: 0 0 clamp(16px, 1.5vw, 28px);
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.78vw, 15px);
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.properties h2 {
  max-width: min(100%, 70rem);
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(42px, 3.35vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.properties__controls {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  padding-bottom: 8px;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: clamp(10px, 2vw, 36px);
  color: #202226;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.catalog-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease;
}

.catalog-link:hover,
.catalog-link:focus-visible {
  color: var(--sand);
}

.catalog-link:hover svg,
.catalog-link:focus-visible svg {
  transform: translate(3px, -3px);
}

.section-arrow {
  display: grid;
  width: clamp(44px, 2.8vw, 54px);
  height: clamp(44px, 2.8vw, 54px);
  padding: 0;
  color: var(--sand);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(195, 152, 113, 0.56);
  border-radius: 50%;
  place-items: center;
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.section-arrow:hover,
.section-arrow:focus-visible {
  color: var(--white);
  background: var(--sand);
  border-color: var(--sand);
}

.section-arrow svg,
.photo-arrow svg {
  pointer-events: none;
}

.property-slider-viewport {
  overflow: hidden;
}

.property-slider {
  --property-gap: clamp(18px, 1.45vw, 28px);

  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--property-gap) * 2)) / 3);
  gap: var(--property-gap);
  transition: transform 0.38s ease;
  will-change: transform;
}

.property-slider::-webkit-scrollbar {
  display: none;
}

.property-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 528 / 429;
  overflow: hidden;
  color: var(--white);
  background: #071522;
  isolation: isolate;
}

.property-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.property-card::before,
.property-card::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.property-card::before {
  top: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 18, 36, 0) 0%, rgba(6, 18, 36, 0.221014) 29.33%, rgba(6, 18, 36, 0.5) 66.35%, rgba(6, 18, 36, 0.5) 100%);
  transition: background 0.28s ease;
}

.property-card::after {
  bottom: 0;
  z-index: -1;
  height: 0;
  background: linear-gradient(180deg, rgba(8, 23, 47, 0) 0%, rgba(8, 23, 47, 0.88) 34%, #08172f 58%, #08172f 100%);
  opacity: 0.8;
  transition: height 0.28s ease;
}

.property-card:hover img,
.property-card:focus-within img {
  transform: scale(1.035);
}

.property-card:hover::before,
.property-card:focus-within::before {
  background: linear-gradient(180deg, rgba(6, 18, 36, 0) 0%, #08172f 100%);
}

.property-card:hover::after,
.property-card:focus-within::after {
  height: min(62%, 255px);
}

.photo-arrow {
  position: absolute;
  top: 45.5%;
  z-index: 2;
  display: grid;
  width: clamp(34px, 2vw, 38px);
  height: clamp(34px, 2vw, 38px);
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.16);
  place-items: center;
  transition: background-color 0.22s ease, opacity 0.22s ease;
}

.photo-arrow--prev {
  left: 0;
}

.photo-arrow--next {
  right: 0;
}

.photo-arrow:hover,
.photo-arrow:focus-visible {
  background: rgba(195, 152, 113, 0.82);
}

.property-card__content {
  position: absolute;
  right: clamp(20px, 1.7vw, 32px);
  bottom: clamp(18px, 1.55vw, 30px);
  left: clamp(20px, 1.35vw, 26px);
  z-index: 1;
  transition: bottom 0.28s ease;
}

.property-card:hover .property-card__content,
.property-card:focus-within .property-card__content {
  bottom: clamp(14px, 0.9vw, 16px);
}

.property-card h3 {
  max-width: min(100%, 30rem);
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.property-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.15vw, 22px);
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.75vw, 14px);
  line-height: 1.42;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.property-card__meta span {
  position: relative;
}

.property-card__meta span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 1px;
  height: 14px;
  content: "";
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
}

.property-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 0.95vw, 18px);
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 0.28s ease, margin-top 0.28s ease, padding-top 0.28s ease, opacity 0.24s ease, transform 0.24s ease;
}

.property-card:hover .property-card__meta,
.property-card:hover .property-card__bottom,
.property-card:focus-within .property-card__meta,
.property-card:focus-within .property-card__bottom {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
}

.property-card:hover .property-card__meta,
.property-card:focus-within .property-card__meta {
  margin-top: 16px;
}

.property-card:hover .property-card__bottom,
.property-card:focus-within .property-card__bottom {
  margin-top: 18px;
  padding-top: 16px;
}

.property-card__bottom strong {
  font-family: var(--font-ui);
  font-size: clamp(22px, 1.3vw, 25px);
  font-weight: 700;
  line-height: 1.28;
}

.property-card__bottom a {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 0.85vw, 16px);
  min-width: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.property-card__bottom a > span:first-child {
  min-width: 0;
}

.property-card__icon {
  flex: 0 0 clamp(44px, 2.8vw, 54px);
  width: clamp(44px, 2.8vw, 54px);
  height: clamp(44px, 2.8vw, 54px);
  background: rgba(255, 255, 255, 0.16);
}

.property-card__bottom a:hover .property-card__icon,
.property-card__bottom a:focus-visible .property-card__icon {
  background: var(--sand);
  transform: none;
}

.slider-progress {
  position: relative;
  height: 2px;
  margin-top: clamp(34px, 3.2vw, 62px);
  background: rgba(195, 152, 113, 0.16);
}

.slider-progress span {
  display: block;
  width: 44.5%;
  height: 100%;
  background: var(--sand);
  transition: width 0.22s ease, margin-left 0.22s ease;
}

.category-hero {
  position: relative;
  overflow: visible;
  height: 428px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 48%, rgba(26, 87, 138, 0.62) 0%, rgba(10, 57, 100, 0.48) 30%, rgba(6, 24, 48, 0) 68%),
    radial-gradient(circle at 83% 56%, rgba(5, 42, 82, 0.55) 0%, rgba(7, 28, 57, 0.2) 42%, rgba(5, 16, 31, 0) 72%),
    linear-gradient(118deg, #123f6c 0%, #082746 44%, #061527 100%);
}

.category-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 13, 26, 0.12) 0%, rgba(3, 13, 26, 0.26) 100%);
}

.category-hero > :not(.mobile-panel) {
  position: relative;
  z-index: 1;
}

.category-hero__inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--page-header-height) + clamp(28px, 2.2vw, 42px)) 0 clamp(52px, 3.65vw, 70px);
}

.category-hero__inner .breadcrumbs {
  align-self: start;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumbs a,
.breadcrumbs span:last-child {
  transition: color 0.2s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible,
.breadcrumbs span:last-child {
  color: var(--sand);
}

.category-hero__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(32px, 4vw, 76px);
  align-self: end;
}

.category-hero h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(64px, 5.9vw, 114px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(18px, 1.7vw, 32px);
  padding-bottom: clamp(2px, 0.6vw, 10px);
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.category-tabs a {
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.category-tabs a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.category-tabs a:hover,
.category-tabs a:focus-visible,
.category-tabs a.is-active {
  color: var(--sand);
}

.category-tabs a:hover::after,
.category-tabs a:focus-visible::after,
.category-tabs a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.category-filter,
.category-catalog {
  background: #f4ede8;
  color: #282a2d;
}

.category-filter__inner,
.category-catalog__inner {
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
}

.category-filter__inner {
  padding: clamp(58px, 4.7vw, 90px) 0 clamp(36px, 3.3vw, 64px);
}

.filter-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(32px, 3.4vw, 64px);
}

.filter-field {
  position: relative;
  display: grid;
  min-width: 0;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(195, 152, 113, 0.72);
  cursor: pointer;
}

.filter-field.is-open {
  z-index: 8;
}

.filter-field span {
  position: relative;
  z-index: 1;
  display: block;
  padding-right: 30px;
  overflow: hidden;
  color: #25272b;
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 1.35;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.filter-field__trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.filter-field::after {
  position: absolute;
  top: 3px;
  right: 9px;
  z-index: 3;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 1.5px solid #282a2d;
  border-bottom: 1.5px solid #282a2d;
  pointer-events: none;
  transform: rotate(45deg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.filter-field:hover::after,
.filter-field:focus-within::after,
.filter-field.is-open::after {
  border-color: var(--sand);
  transform: translateY(2px) rotate(45deg);
}

.filter-field.is-open::after {
  transform: translateY(5px) rotate(225deg);
}

.filter-field__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  z-index: 4;
  display: grid;
  min-width: max(100%, 220px);
  padding: 10px 0;
  visibility: hidden;
  background: #071522;
  border: 1px solid rgba(195, 152, 113, 0.55);
  box-shadow: 0 18px 38px rgba(7, 21, 34, 0.24);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.filter-field.is-open .filter-field__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.filter-field__menu button {
  width: 100%;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  background: transparent;
  border: 0;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.filter-field__menu button:hover,
.filter-field__menu button:focus-visible,
.filter-field__menu button.is-active {
  color: var(--white);
  background: rgba(195, 152, 113, 0.22);
}

.filter-field__menu button.is-active {
  color: var(--sand);
}

.filter-form__summary {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4.1vw, 78px);
  margin-top: clamp(28px, 3.2vw, 62px);
  color: rgba(40, 42, 45, 0.68);
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 1.4;
}

.filter-form__summary button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: #282a2d;
  cursor: pointer;
  background: transparent;
  transition: color 0.2s ease;
}

.filter-form__summary button svg {
  color: var(--sand);
}

.filter-form__summary button:hover,
.filter-form__summary button:focus-visible {
  color: var(--sand);
}

.category-catalog__inner {
  padding: clamp(24px, 2vw, 38px) 0 clamp(74px, 6.6vw, 126px);
}

.property-grid {
  --property-gap: clamp(18px, 1.45vw, 28px);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--property-gap);
}

.property-hero {
  position: relative;
  display: grid;
  min-height: clamp(720px, 100svh, 1080px);
  overflow: hidden;
  color: var(--white);
  background: #071522;
  isolation: isolate;
}

.property-hero__image,
.property-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.property-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 47%;
}

.property-hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 14, 26, 0.18) 0%, rgba(5, 14, 26, 0.02) 24%, rgba(5, 14, 26, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 14, 26, 0.78) 0%, rgba(5, 14, 26, 0.28) 48%, rgba(5, 14, 26, 0.64) 100%);
}

.property-hero__content {
  display: grid;
  align-self: stretch;
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--page-header-height) + clamp(28px, 2.2vw, 42px)) 0 clamp(70px, 6.4vw, 122px);
}

.property-hero__breadcrumbs {
  align-self: start;
}

.property-hero__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  align-self: end;
  gap: 40px;
}

.property-hero__copy h1 {
  max-width: min(100%, 58rem);
  margin: 0 0 clamp(28px, 2.5vw, 48px);
  font-family: var(--font-title);
  font-size: clamp(58px, 5vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.property-hero__copy p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
}

.property-hero__copy strong {
  display: block;
  margin-bottom: clamp(24px, 2.5vw, 46px);
  color: var(--sand);
  font-family: var(--font-ui);
  font-size: clamp(38px, 2.9vw, 56px);
  font-weight: 400;
  line-height: 1.1;
}

.property-hero__tour,
.property-description__cta,
.property-plan__download {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.property-hero__tour {
  padding: 9px 14px 9px 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.property-hero__tour .round-icon {
  background: rgba(255, 255, 255, 0.16);
}

.property-description,
.property-plan {
  background: #f4ede8;
  color: #202226;
}

.property-description__inner,
.property-gallery__inner,
.property-plan__inner {
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
}

.property-description__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(52px, 8vw, 150px);
  padding: clamp(88px, 7.2vw, 138px) 0 clamp(82px, 6.8vw, 130px);
}

.property-description__heading p,
.property-gallery__header p,
.property-plan__info > p,
.property-contact__eyebrow {
  margin: 0 0 clamp(28px, 2.2vw, 42px);
  color: #202226;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.property-description h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(58px, 4.6vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
}

.property-description h2 span {
  display: block;
}

.property-description h2 span:nth-child(2) {
  color: var(--sand);
}

.property-description__copy {
  align-self: start;
  padding-top: clamp(46px, 3.5vw, 68px);
  color: rgba(32, 34, 38, 0.62);
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.5;
}

.property-description__copy p {
  max-width: 780px;
  margin: 0 0 34px;
}

.property-description__copy strong {
  color: #202226;
}

.property-description__cta {
  margin-top: clamp(18px, 2vw, 38px);
  color: #202226;
}

.property-description__cta .round-icon,
.property-plan__download .round-icon {
  background: var(--sand);
}

.property-specs,
.property-features {
  grid-column: 1 / -1;
  min-width: 0;
}

.property-specs {
  margin-top: clamp(40px, 4.2vw, 80px);
}

.property-specs h3,
.property-features h3 {
  margin: 0 0 24px;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.property-specs__table {
  display: grid;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.property-specs__table > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.property-specs__table span {
  min-width: 0;
  padding: 18px 16px;
  border-right: 1px solid #f4ede8;
  font-family: var(--font-ui);
}

.property-specs__table div:first-child span {
  color: #a3724f;
  background: #ddc6b3;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
}

.property-specs__table div:last-child span {
  background: rgba(255, 255, 255, 0.24);
  font-size: 24px;
  line-height: 1.35;
}

.property-features {
  margin-top: clamp(42px, 4vw, 76px);
}

.property-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.property-features li {
  padding: 12px 28px;
  border: 1px solid rgba(195, 152, 113, 0.42);
  border-radius: 999px;
  color: rgba(32, 34, 38, 0.58);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.35;
}

.property-gallery {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 42%, rgba(22, 83, 127, 0.72) 0%, rgba(11, 57, 95, 0.52) 26%, rgba(6, 31, 61, 0.2) 49%, rgba(5, 23, 49, 0) 70%),
    linear-gradient(90deg, #061832 0%, #0b345f 44%, #061b3a 100%);
}

.property-gallery__inner {
  padding: clamp(82px, 7.8vw, 150px) 0 clamp(76px, 7vw, 135px);
}

.property-gallery__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(44px, 4vw, 70px);
}

.property-gallery__header p,
.property-contact__eyebrow {
  color: var(--sand);
}

.property-gallery h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(56px, 4.65vw, 90px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.property-gallery h2 span {
  color: var(--sand);
}

.property-gallery__controls {
  display: flex;
  gap: 20px;
}

.property-gallery__controls button {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--sand);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(195, 152, 113, 0.65);
  border-radius: 50%;
  place-items: center;
}

.property-gallery__track {
  display: flex;
  gap: clamp(14px, 1.1vw, 22px);
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.property-gallery__track::-webkit-scrollbar {
  display: none;
}

.property-gallery__track figure {
  position: relative;
  flex: 0 0 clamp(180px, 11.8vw, 230px);
  min-width: 0;
  height: clamp(430px, 27vw, 520px);
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #06111d;
  cursor: pointer;
  transition: flex-basis 0.38s ease, opacity 0.24s ease;
}

.property-gallery__track figure.is-active,
.property-gallery__track figure.is-hovered {
  flex-basis: clamp(420px, 35vw, 680px);
}

.property-gallery__track.is-hovering figure.is-active:not(.is-hovered) {
  flex-basis: clamp(180px, 11.8vw, 230px);
}

.property-gallery__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: opacity 0.24s ease, transform 0.38s ease;
}

.property-gallery__track .is-active img,
.property-gallery__track figure.is-hovered img {
  opacity: 1;
}

.property-gallery__track figure.is-hovered img {
  transform: scale(1.03);
}

.property-gallery figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  max-width: calc(100% - 48px);
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.property-gallery__track .is-active figcaption,
.property-gallery__track figure.is-hovered figcaption {
  opacity: 1;
  transform: translateY(0);
}

.property-gallery__track.is-hovering figure.is-active:not(.is-hovered) figcaption {
  opacity: 0;
  transform: translateY(8px);
}

.property-gallery figcaption span {
  color: var(--sand);
  font-size: 14px;
}

.photo-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  visibility: hidden;
  padding: clamp(20px, 3vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 32%, rgba(22, 83, 127, 0.62) 0%, rgba(11, 57, 95, 0.34) 30%, rgba(6, 31, 61, 0) 62%),
    rgba(3, 12, 22, 0.92);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.photo-popup.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.photo-popup__dialog {
  position: relative;
  display: grid;
  width: min(100%, 1380px);
  gap: 22px;
}

.photo-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 54px;
  height: 54px;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.photo-popup__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.photo-popup__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.photo-popup__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.photo-popup__image {
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
}

.photo-popup__caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.4;
  text-transform: uppercase;
}

.photo-popup__caption span {
  flex: 0 0 auto;
  color: var(--sand);
}

.photo-popup__nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--sand);
  cursor: pointer;
  background: rgba(6, 17, 35, 0.5);
  border: 1px solid rgba(195, 152, 113, 0.65);
  border-radius: 50%;
  place-items: center;
}

.photo-popup__nav--prev {
  left: -74px;
}

.photo-popup__nav--next {
  right: -74px;
}

.property-plan__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.8fr);
  gap: clamp(52px, 8vw, 150px);
  padding: clamp(86px, 7vw, 136px) 0;
}

.property-plan h2 {
  margin: 0 0 clamp(40px, 3.8vw, 72px);
  font-family: var(--font-title);
  font-size: clamp(58px, 4.6vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
}

.property-plan h2 span {
  color: var(--sand);
}

.property-plan dl {
  display: grid;
  margin: 0 0 clamp(40px, 3.8vw, 72px);
}

.property-plan dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(32, 34, 38, 0.08);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.35;
}

.property-plan dt,
.property-plan dd {
  margin: 0;
}

.property-plan dt {
  color: rgba(32, 34, 38, 0.58);
}

.property-plan__download {
  color: #202226;
}

.property-plan__drawing {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
}

.property-plan__drawing img {
  display: block;
  width: 100%;
  height: auto;
}

.property-contact .services__intro > p {
  max-width: 600px;
  color: var(--white);
}

.property-contact .service-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
}

.property-contact .service-item__number {
  grid-row: 1 / span 2;
}

.property-contact .service-item h3,
.property-contact .service-item p {
  grid-column: 2;
  min-width: 0;
  max-width: none;
}

.property-contact .service-item p {
  margin: 0;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: clamp(720px, 100svh, 1030px);
  overflow: hidden;
  color: var(--white);
  background: #071522;
  isolation: isolate;
}

.about-hero__image,
.about-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 46%;
}

.about-hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 14, 26, 0.08) 0%, rgba(5, 14, 26, 0.18) 34%, rgba(5, 14, 26, 0.86) 100%),
    linear-gradient(90deg, rgba(5, 14, 26, 0.46) 0%, rgba(5, 14, 26, 0.1) 48%, rgba(5, 14, 26, 0.48) 100%);
}

.about-hero__content {
  display: grid;
  align-self: stretch;
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--page-header-height) + clamp(28px, 2.2vw, 42px)) 0 clamp(76px, 6.4vw, 122px);
}

.about-hero__breadcrumbs {
  align-self: start;
}

.about-hero__bottom {
  align-self: end;
}

.about-hero h1 {
  max-width: min(100%, 64rem);
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(58px, 5vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero__bottom p {
  max-width: 720px;
  margin: clamp(34px, 3vw, 54px) 0 0;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.5;
}

.about-mission,
.about-history {
  color: #24252a;
  background: #f4ede8;
}

.about-mission__inner,
.about-history__inner,
.about-values__inner,
.about-stats__inner {
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
}

.about-mission__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.78fr);
  gap: clamp(44px, 5vw, 92px);
  align-items: center;
  padding: clamp(96px, 7.4vw, 142px) 0 clamp(102px, 8.6vw, 164px);
}

.about-eyebrow {
  margin: 0 0 clamp(28px, 2.2vw, 42px);
  color: #24252a;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-mission h2,
.about-history h2,
.about-values h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(54px, 4.3vw, 78px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-mission h2 {
  max-width: 900px;
}

.about-mission h2 span,
.about-values h2 span {
  display: block;
}

.about-mission h2 span:nth-child(2) {
  color: var(--sand);
}

.about-mission__copy > p:not(.about-eyebrow) {
  max-width: 790px;
  margin: clamp(32px, 3.4vw, 54px) 0 0;
  color: rgba(36, 37, 42, 0.66);
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.55;
}

.about-mission__copy > p:not(.about-eyebrow) + p {
  margin-top: clamp(22px, 2.1vw, 36px);
}

.about-mission__media {
  position: relative;
  min-height: clamp(440px, 30vw, 574px);
  margin: 0;
  overflow: hidden;
}

.about-mission__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-mission__media figcaption {
  position: absolute;
  right: clamp(20px, 1.8vw, 36px);
  bottom: clamp(18px, 1.7vw, 32px);
  left: clamp(20px, 1.8vw, 36px);
  padding: clamp(22px, 1.8vw, 30px);
  color: var(--white);
  background: rgba(7, 32, 72, 0.82);
}

.about-mission__media figcaption span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-mission__media figcaption strong {
  display: block;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-stats,
.about-values {
  color: var(--white);
  background:
    radial-gradient(circle at 19% 42%, rgba(22, 83, 127, 0.72) 0%, rgba(11, 57, 95, 0.52) 26%, rgba(6, 31, 61, 0.2) 49%, rgba(5, 23, 49, 0) 70%),
    linear-gradient(90deg, #061832 0%, #0b345f 44%, #061b3a 100%);
}

.about-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(64px, 5.3vw, 102px) 0;
}

.about-stats article {
  min-height: 204px;
  padding: clamp(26px, 2.6vw, 50px) clamp(24px, 3.2vw, 62px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.about-stats article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.about-stats strong {
  display: block;
  margin-bottom: 18px;
  color: var(--sand);
  font-family: var(--font-ui);
  font-size: clamp(48px, 3.6vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.about-stats h2 {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-stats p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.5;
}

.about-history__inner {
  display: grid;
  grid-template-columns: minmax(560px, 0.94fr) minmax(420px, 1fr);
  gap: clamp(56px, 5.4vw, 104px);
  align-items: stretch;
  padding: clamp(96px, 7.4vw, 142px) 0;
}

.about-history h2 {
  white-space: nowrap;
}

.about-timeline {
  display: grid;
  gap: 0;
  margin: clamp(46px, 4.2vw, 76px) 0 0;
  padding: 0;
  list-style: none;
}

.about-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 8px 58px minmax(0, 1fr);
  column-gap: 38px;
  padding: 0 0 clamp(24px, 1.8vw, 34px);
  border-bottom: 1px solid rgba(195, 152, 113, 0.22);
}

.about-timeline li + li {
  padding-top: clamp(24px, 1.8vw, 34px);
}

.about-timeline li::before {
  align-self: start;
  width: 7px;
  height: 7px;
  margin-top: 10px;
  content: "";
  background: var(--sand);
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1;
}

.about-timeline span {
  padding-left: 0;
  color: var(--sand);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  grid-column: 2;
  grid-row: 1;
}

.about-timeline span::before {
  display: none;
}

.about-timeline li > div {
  grid-column: 3;
  grid-row: 1;
}

.about-timeline h3 {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-timeline p {
  max-width: 560px;
  margin: 0;
  color: rgba(36, 37, 42, 0.64);
  font-family: var(--font-ui);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.55;
}

.about-history__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.about-values__inner {
  padding: clamp(96px, 7.4vw, 142px) 0 clamp(86px, 7vw, 134px);
}

.about-values .about-eyebrow {
  color: var(--sand);
}

.about-values h2 {
  max-width: 940px;
  color: var(--white);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(64px, 6.2vw, 120px) clamp(56px, 8vw, 156px);
  margin-top: clamp(64px, 6.4vw, 124px);
}

.about-values article {
  min-width: 0;
}

.about-values article span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--sand);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1;
  overflow: hidden;
  place-items: center;
}

.about-values article span img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.about-values h3 {
  margin: 0 0 24px;
  font-family: var(--font-ui);
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-values article p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-ui);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.55;
}

.contact-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 42%, rgba(22, 83, 127, 0.62) 0%, rgba(11, 57, 95, 0.42) 31%, rgba(6, 31, 61, 0) 72%),
    linear-gradient(90deg, #061832 0%, #0b345f 44%, #061b3a 100%);
}

.contact-hero__inner {
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  min-height: clamp(760px, 46.4vw, 890px);
  margin: 0 auto;
  padding: calc(var(--page-header-height) + clamp(44px, 3vw, 58px)) 0 clamp(28px, 2.7vw, 52px);
}

.contact-hero__intro {
  margin-top: clamp(98px, 7.2vw, 138px);
}

.contact-hero h1 {
  max-width: none;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(68px, 5.8vw, 112px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-hero h1 span {
  display: inline;
  color: var(--sand);
}

.contact-hero__intro p {
  max-width: none;
  margin: clamp(34px, 2.7vw, 52px) 0 0;
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.5;
  white-space: nowrap;
}

.contact-hero__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(86px, 6.9vw, 132px);
  padding-top: clamp(34px, 2.7vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-card {
  min-width: 0;
  padding: 0 clamp(28px, 3.2vw, 64px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-ui);
}

.contact-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.contact-card > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contact-card > a:not(.contact-card__action) {
  display: block;
  margin: 0 0 24px;
  font-family: var(--font-title);
  font-size: clamp(30px, 1.85vw, 36px);
  line-height: 1.08;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.contact-card > a:not(.contact-card__action):hover,
.contact-card > a:not(.contact-card__action):focus-visible {
  color: var(--sand);
}

.contact-card > span {
  display: block;
  min-height: 44px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.contact-card__action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sand);
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.contact-card__action em {
  display: inline-grid;
  width: 16px;
  height: 16px;
  color: currentColor;
  font-style: normal;
  place-items: center;
  transition: transform 0.22s ease;
}

.contact-card__action em svg {
  display: block;
  width: 14px;
  height: 14px;
}

.contact-card__action:hover,
.contact-card__action:focus-visible {
  color: var(--white);
}

.contact-card__action:hover em,
.contact-card__action:focus-visible em {
  transform: translate(3px, -3px);
}

.contact-form-section {
  color: #24252a;
  background: #f4ede8;
}

.contact-form-section__inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(480px, 1fr);
  gap: clamp(70px, 8.7vw, 168px);
  align-items: end;
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(112px, 8.2vw, 158px) 0 clamp(120px, 8.9vw, 172px);
}

.contact-eyebrow {
  margin: 0 0 42px;
  color: rgba(36, 37, 42, 0.68);
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.28em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-form-section h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(64px, 4.35vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-form-section h2 span {
  color: var(--sand);
}

.contact-form-section__lead {
  max-width: 560px;
  margin: clamp(42px, 3.8vw, 72px) 0 0;
  color: rgba(36, 37, 42, 0.58);
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.55;
}

.contact-hours {
  max-width: 660px;
  margin: clamp(50px, 4vw, 76px) 0 0;
  font-family: var(--font-ui);
}

.contact-hours div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(36, 37, 42, 0.12);
}

.contact-hours dt,
.contact-hours dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.contact-hours dt {
  color: rgba(36, 37, 42, 0.56);
}

.contact-hours dd {
  color: #24252a;
  font-weight: 700;
}

.contact-map {
  position: relative;
  display: grid;
  min-height: 450px;
  margin-top: clamp(54px, 4.8vw, 92px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #061522;
  background-size: 76px 76px;
}

.contact-map::before,
.contact-map::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.contact-map::before {
  top: 52%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(195, 152, 113, 0.56);
}

.contact-map::after {
  inset: 0;
  background: radial-gradient(circle at 51% 39%, rgba(22, 83, 127, 0.24), rgba(6, 21, 34, 0) 36%);
}

.contact-map__pin {
  position: absolute;
  top: 34%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--sand);
  background: var(--sand);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  place-items: center;
}

.contact-map__pin::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 34px;
  content: "";
  background: var(--sand);
}

.contact-map__pin svg {
  width: 16px;
  height: 20px;
  color: var(--white);
}

.contact-map__label {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  padding: 20px 24px;
  background: rgba(7, 19, 36, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-ui);
}

.contact-map__label strong,
.contact-map__label small {
  grid-column: 1;
}

.contact-map__label strong {
  font-size: 15px;
  line-height: 1.35;
}

.contact-map__label small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.45;
}

.contact-map__label em {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: grid;
  width: 16px;
  height: 16px;
  color: var(--sand);
  font-style: normal;
  place-items: center;
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-map__label em svg {
  display: block;
  width: 14px;
  height: 14px;
}

.contact-map:hover .contact-map__label em,
.contact-map:focus-visible .contact-map__label em {
  color: var(--white);
  transform: translate(3px, -3px);
}

.contact-request {
  align-self: end;
  display: grid;
  gap: 30px;
  min-width: 0;
  padding: clamp(56px, 4.2vw, 78px) clamp(56px, 4.2vw, 76px);
  background: var(--white);
  font-family: var(--font-ui);
}

.contact-request__field {
  display: grid;
  gap: 12px;
}

.contact-request__field span,
.contact-request__topics legend {
  color: rgba(36, 37, 42, 0.56);
  font-size: 12px;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-request input,
.contact-request textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(36, 37, 42, 0.22);
  border-radius: 0;
  color: #24252a;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 1.45;
}

.contact-request input {
  height: 40px;
}

.contact-request textarea {
  min-height: 94px;
  resize: vertical;
}

.contact-request input::placeholder,
.contact-request textarea::placeholder {
  color: rgba(36, 37, 42, 0.34);
}

.contact-request input:focus,
.contact-request textarea:focus {
  border-bottom-color: var(--sand);
}

.contact-request__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(36, 37, 42, 0.08);
}

.contact-request__topics legend {
  flex: 0 0 100%;
  margin-bottom: 4px;
}

.contact-request__topics label {
  cursor: pointer;
}

.contact-request__topics input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-request__topics span {
  display: block;
  padding: 9px 19px;
  color: rgba(36, 37, 42, 0.58);
  border: 1px solid rgba(195, 152, 113, 0.24);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.2;
}

.contact-request__topics input:checked + span,
.contact-request__topics label:hover span {
  color: var(--white);
  background: var(--sand);
  border-color: var(--sand);
}

.contact-request__submit {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 18px;
  padding: 0;
  color: #24252a;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-request__submit .round-icon {
  background: var(--sand);
}

.contact-request__privacy {
  max-width: 540px;
  margin: -10px 0 0;
  color: rgba(36, 37, 42, 0.38);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.45;
}

.contact-request__privacy a {
  color: var(--sand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 43%, rgba(22, 83, 127, 0.62) 0%, rgba(11, 57, 95, 0.42) 31%, rgba(6, 31, 61, 0) 72%),
    linear-gradient(90deg, #061832 0%, #0b345f 44%, #061b3a 100%);
}

.privacy-hero__inner {
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  min-height: clamp(720px, 45.8vw, 880px);
  margin: 0 auto;
  padding: calc(var(--page-header-height) + clamp(44px, 3vw, 58px)) 0 clamp(82px, 6.2vw, 120px);
}

.privacy-hero__content {
  margin-top: clamp(96px, 7vw, 136px);
}

.privacy-eyebrow {
  margin: 0 0 24px;
  color: var(--sand);
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.3em;
  line-height: 1.45;
  text-transform: uppercase;
}

.privacy-hero h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(82px, 5.3vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-hero h1 span {
  color: var(--sand);
}

.privacy-hero__meta {
  display: grid;
  gap: 18px;
  margin: clamp(48px, 4vw, 76px) 0 0;
  padding-left: 28px;
  border-left: 1px solid rgba(195, 152, 113, 0.62);
  font-family: var(--font-ui);
}

.privacy-hero__meta div,
.privacy-hero__meta dt,
.privacy-hero__meta dd {
  margin: 0;
}

.privacy-hero__meta dt {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  letter-spacing: 0.26em;
  line-height: 1.45;
  text-transform: uppercase;
}

.privacy-hero__meta dd {
  color: var(--white);
  font-size: 16px;
  line-height: 1.45;
}

.privacy-hero__meta div:last-child dd {
  color: var(--sand);
}

.privacy-content {
  color: #24252a;
  background: #f4ede8;
}

.privacy-content__inner {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(78px, 6.3vw, 122px);
  align-items: start;
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 6vw, 116px) 0 clamp(120px, 8vw, 154px);
}

.privacy-toc {
  position: sticky;
  top: calc(var(--page-header-height) + 32px);
  font-family: var(--font-ui);
}

.privacy-toc > p {
  margin: 0 0 30px;
  color: rgba(36, 37, 42, 0.7);
  font-size: 13px;
  letter-spacing: 0.28em;
  line-height: 1.45;
  text-transform: uppercase;
}

.privacy-toc nav {
  display: grid;
}

.privacy-toc nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  color: rgba(36, 37, 42, 0.58);
  border-bottom: 1px solid rgba(36, 37, 42, 0.08);
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.22s ease;
}

.privacy-toc nav a span {
  color: rgba(195, 152, 113, 0.76);
}

.privacy-toc nav a:hover,
.privacy-toc nav a:focus-visible {
  color: #24252a;
}

.privacy-download {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-top: 34px;
  color: #24252a;
  border-top: 1px solid rgba(36, 37, 42, 0.08);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.privacy-download .round-icon {
  width: 46px;
  height: 46px;
  background: var(--sand);
}

.privacy-download:hover .round-icon,
.privacy-download:focus-visible .round-icon {
  transform: translateY(2px);
}

.privacy-document {
  min-width: 0;
  font-family: var(--font-ui);
}

.privacy-document__lead {
  max-width: 1240px;
  margin: 0 0 clamp(58px, 4.7vw, 90px);
  color: #24252a;
  font-size: clamp(19px, 1.1vw, 21px);
  line-height: 1.65;
}

.privacy-section {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 28px;
  padding: clamp(44px, 3.6vw, 70px) 0;
  border-top: 1px solid rgba(36, 37, 42, 0.08);
}

.privacy-section > span {
  padding-top: 10px;
  color: var(--sand);
  font-size: 13px;
  line-height: 1.4;
}

.privacy-section h2 {
  margin: 0 0 clamp(24px, 2vw, 38px);
  font-family: var(--font-title);
  font-size: clamp(30px, 2vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-section p {
  max-width: 1120px;
  margin: 0;
  color: rgba(36, 37, 42, 0.62);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.65;
}

.privacy-section p + p {
  margin-top: 24px;
}

.privacy-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: clamp(42px, 3.4vw, 66px);
  padding: clamp(34px, 2.6vw, 52px) clamp(38px, 3.1vw, 62px);
  color: var(--white);
  background: #102a53;
  border-radius: 4px;
}

.privacy-cta em {
  display: block;
  margin-bottom: 18px;
  color: var(--sand);
  font-family: var(--font-ui);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.privacy-cta strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(26px, 1.8vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.privacy-cta__action {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.privacy-cta__action b {
  font-weight: 700;
}

.privacy-cta .round-icon {
  background: var(--sand);
}

.privacy-cta:hover .round-icon,
.privacy-cta:focus-visible .round-icon {
  transform: translate(3px, -3px);
}

.service-item__number {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--sand);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1;
  place-items: center;
}

.services {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 19% 42%, rgba(22, 83, 127, 0.72) 0%, rgba(11, 57, 95, 0.52) 26%, rgba(6, 31, 61, 0.2) 49%, rgba(5, 23, 49, 0) 70%),
    linear-gradient(90deg, #061832 0%, #0b345f 44%, #061b3a 100%);
}

.services__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(min(100%, 26rem), 0.92fr);
  column-gap: clamp(64px, 9.6vw, 185px);
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  min-height: clamp(760px, 48.7vw, 935px);
  margin: 0 auto;
  padding: clamp(96px, 7.45vw, 143px) 0 clamp(34px, 4vw, 76px);
}

.services__intro {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.services h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(64px, 5vw, 82px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services h2 span {
  display: block;
}

.services h2 span:nth-child(2) {
  color: var(--sand);
}

.services__intro > p {
  max-width: 594px;
  margin: clamp(34px, 2.7vw, 52px) 0 0;
  font-family: var(--font-ui);
  font-size: clamp(18px, 1.1vw, 21px);
  font-weight: 400;
  line-height: 1.48;
}

.services__cta {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.45vw, 28px);
  margin-top: auto;
  font-family: var(--font-ui);
}

.services__contact {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 0.85vw, 16px);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.services__contact .round-icon {
  background: rgba(255, 255, 255, 0.16);
}

.services__contact:hover .round-icon,
.services__contact:focus-visible .round-icon {
  background: var(--sand);
}

.services__phone {
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(14px, 0.85vw, 16px);
  line-height: 1.5;
  text-transform: uppercase;
}

.services__phone a {
  color: var(--white);
  font-weight: 700;
}

.services__list {
  align-self: center;
}

.service-item {
  position: relative;
  padding: 0 0 clamp(38px, 2.8vw, 54px);
}

.service-item + .service-item {
  padding-top: clamp(32px, 2.1vw, 40px);
}

.service-item:not(:last-child)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.service-item__icon {
  display: grid;
  width: clamp(44px, 2.5vw, 48px);
  height: clamp(44px, 2.5vw, 48px);
  margin-bottom: clamp(18px, 1.15vw, 22px);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  place-items: center;
}

.service-item h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(18px, 1.04vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-item p {
  max-width: 535px;
  margin: clamp(16px, 1.25vw, 24px) 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-ui);
  font-size: clamp(16px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.53;
}

.community {
  overflow: hidden;
  background: #f4ede8;
  color: #25272b;
}

.community__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  min-height: clamp(760px, 48.7vw, 935px);
  margin: 0 auto;
  padding: clamp(96px, 7.4vw, 142px) 0 clamp(96px, 7.6vw, 146px);
}

.community__copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: min(100%, 32rem);
  min-height: clamp(520px, 33.7vw, 647px);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.community__copy a {
  pointer-events: auto;
}

.community__eyebrow {
  margin: 0 0 clamp(24px, 1.82vw, 35px);
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.78vw, 15px);
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.community h2 {
  position: relative;
  z-index: 4;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(52px, 4.2vw, 82px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.community h2 span {
  display: block;
}

.community h2 span:nth-child(2) {
  color: var(--sand);
}

.community__text {
  width: min(100%, 30rem);
  height: clamp(232px, 13vw, 250px);
  margin-top: clamp(48px, 4.06vw, 78px);
  overflow: hidden;
  color: rgba(37, 39, 43, 0.66);
  font-family: var(--font-ui);
  font-size: clamp(16px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.53;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.community__text.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.community__text p {
  margin: 0;
}

.community__text p + p {
  margin-top: clamp(20px, 1.3vw, 25px);
}

.community__cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 0.85vw, 16px);
  width: max-content;
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.community__cta .round-icon {
  background: var(--sand);
}

.community__cta:hover .round-icon,
.community__cta:focus-visible .round-icon {
  background: #35445a;
}

.community__visual {
  position: absolute;
  right: 0;
  left: 50%;
  top: clamp(190px, 12.45vw, 239px);
  z-index: 1;
  width: 50%;
  aspect-ratio: 788 / 640;
}

.community__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease, transform 0.45s ease;
}

.community__image.is-changing {
  opacity: 0.35;
  transform: scale(1.015);
}

.community__control {
  position: absolute;
  top: 44%;
  left: calc(clamp(326px, 18vw, 346px) / -2);
  z-index: 3;
  width: clamp(326px, 18vw, 346px);
  aspect-ratio: 1;
  height: auto;
  padding: 0;
  color: #25272b;
  cursor: pointer;
  background: transparent;
}

.community__progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(180deg);
}

.community__progress-track,
.community__progress-value {
  fill: none;
  stroke-width: 2;
}

.community__progress-track {
  stroke: rgba(37, 39, 43, 0.08);
}

.community__progress-value {
  stroke: var(--sand);
  stroke-dasharray: 1074.42;
  stroke-dashoffset: 1074.42;
}

.community__counter {
  position: absolute;
  top: 28.3%;
  left: 37.3%;
  display: block;
  min-width: 0.42em;
  color: #25272b;
  font-family: var(--font-title);
  font-size: clamp(140px, 7.8vw, 150px);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.community__arrow {
  position: absolute;
  top: 46.5%;
  left: 37.3%;
  display: flex;
  align-items: center;
  color: #25272b;
  transition: color 0.22s ease, transform 0.22s ease;
}

.community__arrow svg {
  width: clamp(86px, 5.2vw, 100px);
  height: 24px;
}

.community__control:hover .community__arrow,
.community__control:focus-visible .community__arrow {
  color: var(--sand);
  transform: translateX(5px);
}

.lifestyle {
  overflow: hidden;
  background: #f4ede8;
  color: #25272b;
}

.lifestyle__inner {
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(96px, 7.4vw, 142px) 0 clamp(76px, 5.4vw, 104px);
}

.lifestyle__top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(min(100%, 26rem), 0.92fr);
  justify-content: space-between;
  gap: clamp(56px, 4.2vw, 80px);
}

.lifestyle__eyebrow {
  margin: 0 0 clamp(18px, 1.56vw, 30px);
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.78vw, 15px);
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lifestyle h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(64px, 5vw, 82px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lifestyle h2 span {
  display: block;
}

.lifestyle h2 span:nth-child(2) {
  color: var(--sand);
}

.lifestyle__text {
  max-width: 642px;
  padding-top: clamp(38px, 2.76vw, 53px);
  color: rgba(37, 39, 43, 0.68);
  font-family: var(--font-ui);
  font-size: clamp(16px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.65;
}

.lifestyle__text p {
  margin: 0;
}

.lifestyle__text p + p {
  margin-top: clamp(20px, 1.25vw, 24px);
}

.lifestyle__text strong {
  color: #25272b;
  font-weight: 700;
}

.lifestyle__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(48px, 5vw, 88px);
  margin-top: clamp(52px, 3.55vw, 68px);
}

.lifestyle__image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.lifestyle__image--main {
  aspect-ratio: 812 / 661;
}

.lifestyle__image--wide {
  aspect-ratio: 806 / 583;
}

.footer {
  background: linear-gradient(135deg, #10294d 0%, #112a4f 44%, #0f2749 100%);
  color: var(--white);
}

.footer__inner {
  width: calc(100% - (var(--side-x) * 2));
  max-width: var(--container);
  min-height: 627px;
  margin: 0 auto;
  padding: 94px 0 38px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 484px);
  gap: 80px;
}

.footer__logo {
  display: block;
  width: 326px;
  height: 84px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__subscribe {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 28px;
  align-items: start;
}

.footer__field {
  display: block;
  min-width: 0;
}

.footer__field-label {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

.footer__field input {
  display: block;
  width: 100%;
  height: 33px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  background: transparent;
}

.footer__field input:focus-visible {
  outline: none;
  border-color: rgba(195, 152, 113, 0.9);
}

.footer__submit {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  place-items: center;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.footer__submit:hover,
.footer__submit:focus-visible {
  background: var(--sand);
  transform: translateX(3px);
}

.footer__submit:hover svg,
.footer__submit:focus-visible svg {
  transform: rotate(45deg);
}

.footer__privacy-note {
  grid-column: 1 / 2;
  max-width: 420px;
  margin: -3px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.footer__privacy-note a {
  color: var(--sand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, max-content) 1fr repeat(4, max-content);
  align-items: center;
  gap: 48px;
  margin-top: 126px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.footer__nav a:nth-child(5) {
  grid-column: 6;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.94);
  transition: color 0.22s ease;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: var(--sand);
}

.footer__contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr) minmax(170px, max-content);
  gap: 70px;
  padding: 38px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__contact span,
.footer__social > span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.footer__contact a {
  display: inline-block;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.footer__contact a:hover,
.footer__contact a:focus-visible {
  color: var(--sand);
}

.footer__social {
  justify-self: end;
}

.footer__social-links {
  display: flex;
  gap: 10px;
}

.footer__social-links a {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  place-items: center;
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.footer__social-links a:hover,
.footer__social-links a:focus-visible {
  border-color: var(--sand);
  color: var(--white);
  background: rgba(195, 152, 113, 0.28);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 36px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer__bottom p {
  margin: 0;
  text-transform: uppercase;
}

.footer__bottom p span {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 18px;
  background: rgba(255, 255, 255, 0.3);
  vertical-align: -1px;
}

.footer__bottom a {
  transition: color 0.22s ease;
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible {
  color: var(--sand);
}

/* Shared hover states from the UI kit reference. */
.round-icon,
.section-arrow,
.photo-arrow,
.footer__submit,
.mobile-panel__social a,
.footer__social-links a,
.mobile-panel__close {
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.burger:hover span,
.burger:focus-visible span {
  background: var(--sand);
}

.mobile-panel__mark {
  transition: transform 0.22s ease;
}

.mobile-panel__mark:hover {
  transform: translateY(-1px);
}

.mobile-panel__close {
  border: 0;
  border-radius: 0;
}

.mobile-panel__close:hover,
.mobile-panel__close:focus-visible {
  color: var(--white);
}

.callback:hover,
.callback:focus-visible,
.services__contact:hover,
.services__contact:focus-visible,
.community__cta:hover,
.community__cta:focus-visible {
  color: var(--sand);
}

.callback:hover .round-icon,
.callback:focus-visible .round-icon,
.services__contact:hover .round-icon,
.services__contact:focus-visible .round-icon,
.community__cta:hover .round-icon,
.community__cta:focus-visible .round-icon,
.property-card__bottom a:hover .property-card__icon,
.property-card__bottom a:focus-visible .property-card__icon,
.footer__submit:hover,
.footer__submit:focus-visible {
  background: var(--sand);
}

.callback:hover .round-icon,
.callback:focus-visible .round-icon,
.services__contact:hover .round-icon,
.services__contact:focus-visible .round-icon,
.community__cta:hover .round-icon,
.community__cta:focus-visible .round-icon,
.property-card__bottom a:hover .property-card__icon,
.property-card__bottom a:focus-visible .property-card__icon {
  transform: none;
}

.callback:hover .round-icon svg,
.callback:focus-visible .round-icon svg,
.services__contact:hover .round-icon svg,
.services__contact:focus-visible .round-icon svg,
.community__cta:hover .round-icon svg,
.community__cta:focus-visible .round-icon svg,
.property-card__bottom a:hover .property-card__icon svg,
.property-card__bottom a:focus-visible .property-card__icon svg,
.footer__submit:hover svg,
.footer__submit:focus-visible svg {
  transform: rotate(45deg);
}

.catalog-link {
  position: relative;
  padding-bottom: 8px;
}

.catalog-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sand);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.catalog-link:hover,
.catalog-link:focus-visible {
  color: #202226;
}

.catalog-link:hover::after,
.catalog-link:focus-visible::after {
  transform: scaleX(1);
}

.catalog-link:hover svg,
.catalog-link:focus-visible svg {
  transform: translate(3px, -3px);
}

.section-arrow:hover,
.section-arrow:focus-visible {
  color: var(--white);
  background: var(--sand);
  border-color: var(--sand);
  transform: translateY(-2px);
}

.photo-arrow:hover,
.photo-arrow:focus-visible {
  background: var(--sand);
  transform: scale(1.04);
}

.mobile-panel__social a:hover,
.mobile-panel__social a:focus-visible,
.footer__social-links a:hover,
.footer__social-links a:focus-visible {
  border-color: var(--sand);
  background: transparent;
}

.footer__field:focus-within .footer__field-label {
  color: rgba(255, 255, 255, 0.76);
}

.footer__field input {
  transition: border-color 0.22s ease;
}

.footer__field:hover input,
.footer__field:focus-within input {
  border-color: var(--white);
}

.footer__field:focus-within input {
  border-color: var(--sand);
}

@media (max-width: 1400px) {
  .header {
    column-gap: clamp(18px, 2.2vw, 28px);
  }

  .nav {
    gap: clamp(24px, 3vw, 38px);
  }

  .header__actions {
    gap: clamp(12px, 1.6vw, 22px);
  }

  .lang,
  .phone {
    margin-right: 0;
  }

  .language-switcher {
    margin-right: clamp(18px, 3vw, 42px);
  }

  .phone {
    font-size: clamp(15px, 1.25vw, 16px);
  }

  .callback {
    gap: clamp(14px, 1.4vw, 20px);
  }

  .callback span:first-child {
    max-width: clamp(126px, 12.8vw, 162px);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.18;
  }

  .hero__content {
    padding-bottom: clamp(56px, 14vh, 160px);
  }

  .hero__title-row {
    --hero-title-size: clamp(76px, 7.6vw, 112px);
    --hero-title-leading: 0.84;

    gap: clamp(24px, 3.2vw, 44px);
  }

  h1 {
    font-size: var(--hero-title-size);
  }

  .hero__title-row p {
    font-size: clamp(18px, 1.55vw, 22px);
    line-height: 1.22;
  }

  .hero__links {
    gap: clamp(24px, 2.8vw, 35px);
    margin-top: clamp(20px, 2.2vw, 27px);
  }

  .hero__links a {
    font-size: clamp(17px, 1.55vw, 20px);
  }

  .details-link {
    right: max(24px, calc((100vw - var(--header-container)) / 2 + 56px));
  }

  .services__inner {
    column-gap: clamp(56px, 6vw, 80px);
  }

  .lifestyle__top {
    gap: clamp(48px, 5vw, 70px);
  }

  .lifestyle__media {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 5.7vw, 80px);
  }

  .footer__inner {
    width: calc(100% - (var(--side-x) * 2));
  }

  .footer__nav {
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    gap: 28px;
    font-size: 14px;
  }

  .footer__nav a:nth-child(5) {
    grid-column: auto;
  }

  .footer__contact a {
    font-size: 32px;
    line-height: 38px;
  }
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: auto auto minmax(0, 1fr);
    column-gap: 28px;
    padding-top: 34px;
  }

  .nav {
    display: none;
  }

  .header__actions {
    justify-content: flex-end;
    gap: 22px;
  }

  .callback span:first-child {
    display: none;
  }

  .hero__title-row {
    --hero-title-size: clamp(70px, 9vw, 92px);
    --hero-title-leading: 0.92;

    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: clamp(18px, 3vw, 28px);
  }

  h1 {
    display: block;
    font-size: var(--hero-title-size);
  }

  .hero__title-row p {
    grid-column: 1;
    grid-row: auto;
    max-width: min(30rem, 62vw);
    margin: 0;
  }

  .mobile-panel {
    display: block;
  }

  .mobile-panel__sheet {
    width: min(640px, 72vw);
    min-width: 0;
    padding-right: 52px;
    padding-left: 52px;
  }

  .properties__header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .properties__controls {
    grid-auto-columns: auto;
    width: 100%;
    justify-content: space-between;
  }

  .catalog-link {
    margin-right: auto;
  }

  .property-slider {
    grid-auto-columns: calc((100% - var(--property-gap)) / 2);
  }

  .category-hero {
    height: auto;
  }

  .category-hero__inner {
    min-height: clamp(300px, 31vw, 368px);
    padding-top: calc(var(--page-header-height) + clamp(28px, 2.2vw, 42px));
  }

  .category-hero__bottom {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .category-tabs {
    justify-content: flex-start;
  }

  .filter-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px clamp(28px, 4vw, 52px);
  }

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-hero {
    min-height: 760px;
  }

  .about-hero {
    min-height: 760px;
  }

  .about-mission__inner,
  .about-history__inner {
    grid-template-columns: 1fr;
    gap: clamp(48px, 6vw, 72px);
  }

  .about-mission__media {
    width: min(720px, 100%);
  }

  .about-stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats article:nth-child(even),
  .about-stats article:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-history__image {
    min-height: clamp(440px, 56vw, 640px);
  }

  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(52px, 6vw, 72px) clamp(44px, 6vw, 72px);
  }

  .property-description__inner,
  .property-plan__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .property-description__copy {
    padding-top: 0;
  }

  .property-gallery__track {
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .property-gallery__track figure {
    flex-basis: min(38vw, 260px);
    height: 360px;
    scroll-snap-align: start;
  }

  .property-gallery__track figure.is-active,
  .property-gallery__track figure.is-hovered {
    flex-basis: min(74vw, 560px);
  }

  .property-contact .service-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .services__inner {
    grid-template-columns: 1fr;
    row-gap: clamp(52px, 5.4vw, 64px);
    min-height: auto;
    padding: clamp(76px, 7.8vw, 92px) 0;
  }

  .services__intro > p {
    margin-top: clamp(30px, 3vw, 34px);
  }

  .services__cta {
    margin-top: clamp(42px, 4.6vw, 54px);
  }

  .services__list {
    align-self: stretch;
  }

  .community__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(76px, 7.6vw, 90px) 0;
  }

  .community__copy {
    width: 100%;
    min-height: 0;
  }

  .community h2 {
    width: 100%;
  }

  .community__text {
    width: min(520px, 100%);
    height: clamp(196px, 21vw, 236px);
    margin-top: clamp(34px, 3.6vw, 42px);
  }

  .community__cta {
    margin-top: clamp(40px, 4vw, 48px);
  }

  .community__visual {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    aspect-ratio: 788 / 560;
    height: auto;
    margin-top: clamp(46px, 4.75vw, 56px);
  }

  .community__control {
    top: calc(clamp(300px, 18vw, 346px) / -2);
    right: clamp(20px, 2vw, 24px);
    left: auto;
  }

  .callback-popup__dialog {
    padding: 0 0 72px;
  }

  .callback-popup__close {
    top: 30px;
    right: 52px;
  }

  .callback-popup__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    margin: clamp(132px, 15.25vw, 180px) auto 0;
  }

  .callback-popup__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, max-content);
    gap: 40px;
    align-items: end;
  }

  .callback-popup__intro h2 {
    grid-column: auto;
    width: auto;
    margin-bottom: 0;
  }

  .callback-popup__contacts,
  .callback-popup__form,
  .callback-popup__submit {
    grid-column: auto;
    grid-row: auto;
  }

  .callback-popup__submit {
    justify-self: start;
    margin-top: 0;
  }

  .lifestyle__inner {
    padding: clamp(76px, 7.6vw, 90px) 0;
  }

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

  .lifestyle__text {
    max-width: 680px;
    padding-top: clamp(34px, 3.2vw, 38px);
  }

  .lifestyle__media {
    gap: clamp(24px, 2.4vw, 28px);
    margin-top: clamp(46px, 4.75vw, 56px);
  }

  .contact-hero__inner {
    min-height: auto;
    padding-bottom: 64px;
  }

  .contact-hero__intro {
    margin-top: 86px;
  }

  .contact-hero h1 {
    font-size: clamp(56px, 8.4vw, 88px);
  }

  .contact-hero__cards {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 72px;
    padding-top: 34px;
  }

  .contact-card {
    padding: 0 0 32px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .contact-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .contact-card > span {
    min-height: 0;
  }

  .contact-form-section__inner {
    grid-template-columns: 1fr;
    gap: 72px;
    padding: 92px 0 104px;
  }

  .contact-form-section__info,
  .contact-request {
    min-width: 0;
  }

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

  .privacy-hero__inner {
    min-height: auto;
    padding-bottom: 76px;
  }

  .privacy-hero__content {
    margin-top: 86px;
  }

  .privacy-hero h1 {
    font-size: clamp(62px, 7.8vw, 88px);
  }

  .privacy-content__inner {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 78px 0 104px;
  }

  .privacy-toc {
    position: static;
  }

  .privacy-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
  }

  .privacy-download {
    margin-top: 28px;
  }

  .footer__inner {
    min-height: auto;
    padding: 70px 52px 38px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer__logo {
    width: 280px;
    height: 72px;
  }

  .footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
    margin-top: 70px;
  }

  .footer__nav a:nth-child(5) {
    grid-column: auto;
  }

  .footer__contacts {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__social {
    justify-self: start;
  }

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

@media (max-width: 760px) {
  :root {
    --side-x: 20px;
    --page-header-height: 112px;
  }

  .hero__video,
  .hero__media-fallback {
    background-position: 48% 50%;
    object-position: 48% 50%;
  }

  .header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 18px;
    padding-top: 24px;
  }

  .logo {
    justify-self: center;
    width: 163px;
    height: 42px;
    margin-left: 0;
  }

  .header__actions {
    flex: initial;
    justify-self: end;
    margin-left: 0;
  }

  .phone,
  .lang {
    display: none;
  }

  .header__actions .language-switcher {
    display: none;
  }

  .contact-hero__inner {
    width: calc(100% - 40px);
    padding: calc(var(--page-header-height) + 36px) 0 46px;
  }

  .contact-hero__intro {
    margin-top: 56px;
  }

  .contact-hero h1 {
    font-size: clamp(48px, 13vw, 62px);
    line-height: 1.02;
    white-space: normal;
  }

  .contact-hero__intro p {
    margin-top: 28px;
    font-size: 16px;
    white-space: normal;
  }

  .contact-hero__cards {
    gap: 26px;
    margin-top: 52px;
    padding-top: 28px;
  }

  .contact-card > p {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .contact-card > a:not(.contact-card__action) {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .contact-form-section__inner {
    width: calc(100% - 40px);
    gap: 48px;
    padding: 70px 0 78px;
  }

  .contact-eyebrow {
    margin-bottom: 28px;
    font-size: 11px;
  }

  .contact-form-section h2 {
    font-size: clamp(48px, 13vw, 58px);
  }

  .contact-form-section__lead {
    margin-top: 30px;
    font-size: 16px;
  }

  .contact-hours {
    margin-top: 36px;
  }

  .contact-hours div {
    gap: 16px;
  }

  .contact-map {
    min-height: 320px;
    margin-top: 42px;
  }

  .contact-map__label {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 16px;
  }

  .contact-request {
    gap: 24px;
    padding: 34px 24px 38px;
  }

  .contact-request input,
  .contact-request textarea {
    font-size: 18px;
  }

  .contact-request__topics {
    gap: 8px;
  }

  .contact-request__topics span {
    padding: 8px 14px;
    font-size: 12px;
  }

  .privacy-hero__inner {
    width: calc(100% - 40px);
    padding: calc(var(--page-header-height) + 36px) 0 56px;
  }

  .privacy-hero__content {
    margin-top: 58px;
  }

  .privacy-eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .privacy-hero h1 {
    font-size: clamp(48px, 13vw, 62px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .privacy-hero__meta {
    gap: 16px;
    margin-top: 38px;
    padding-left: 20px;
  }

  .privacy-content__inner {
    width: calc(100% - 40px);
    gap: 42px;
    padding: 58px 0 78px;
  }

  .privacy-toc > p {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .privacy-toc nav {
    grid-template-columns: 1fr;
  }

  .privacy-toc nav a {
    padding: 13px 0;
    font-size: 12px;
  }

  .privacy-download {
    margin-top: 24px;
    padding-top: 24px;
  }

  .privacy-document__lead {
    margin-bottom: 42px;
    font-size: 17px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }

  .privacy-section > span {
    padding-top: 0;
  }

  .privacy-section h2 {
    font-size: 30px;
  }

  .privacy-section p {
    font-size: 15px;
  }

  .privacy-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }

  .privacy-cta__action {
    justify-content: space-between;
  }

  .round-icon {
    width: 44px;
    height: 44px;
  }

  .hero__content {
    padding: 72px 0 42px;
  }

  .hero__title-row {
    --hero-title-size: clamp(48px, 15.9vw, 62px);
    --hero-title-leading: 0.98;

    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    width: auto;
    font-size: var(--hero-title-size);
    line-height: 0.98;
  }

  h1,
  .properties h2,
  .services h2,
  .community h2,
  .lifestyle h2 {
    min-width: 0;
  }

  .hero__title-row p {
    width: auto;
    max-width: 240px;
    margin: 0;
    font-size: 18px;
    line-height: 22px;
  }

  .hero__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    height: auto;
    gap: 16px 24px;
    margin-top: 38px;
  }

  .hero__links a {
    padding: 0;
    margin: 0;
    font-size: 16px;
  }

  .hero__links a::before {
    display: none;
  }

  .hero__links a::after {
    display: none;
  }

  .details-link {
    right: 20px;
    width: 50px;
    height: 210px;
  }

  .details-link::before {
    top: 0;
    height: 100%;
  }

  .details-link::after {
    top: 0;
    height: 110px;
  }

  .properties__inner {
    width: calc(100% - 40px);
    padding: clamp(64px, 18vw, 76px) 0 clamp(64px, 16vw, 76px);
  }

  .properties__header {
    gap: clamp(24px, 7vw, 32px);
    margin-bottom: clamp(32px, 8vw, 40px);
  }

  .properties__title p {
    margin-bottom: clamp(12px, 3.5vw, 16px);
    font-size: clamp(12px, 3.2vw, 13px);
  }

  .properties h2 {
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 38px);
    line-height: 1.1;
  }

  .properties__controls {
    grid-template-columns: minmax(0, 1fr) max-content max-content;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    align-items: center;
    gap: 10px;
    justify-content: stretch;
  }

  .catalog-link {
    justify-self: start;
    font-size: 13px;
  }

  .section-arrow {
    width: 46px;
    height: 46px;
  }

  .property-slider-viewport {
    overflow: hidden;
  }

  .property-slider {
    --property-gap: 18px;

    grid-auto-columns: 100%;
    padding-bottom: 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    transform: none !important;
  }

  .property-slider::-webkit-scrollbar {
    display: none;
  }

  .property-card {
    aspect-ratio: 335 / 430;
    scroll-snap-align: start;
  }

  .property-card::after {
    height: min(58%, 220px);
  }

  .property-card__content {
    right: clamp(20px, 7vw, 28px);
    bottom: clamp(18px, 5vw, 26px);
    left: clamp(20px, 6vw, 24px);
  }

  .property-card:hover .property-card__content,
  .property-card:focus-within .property-card__content {
    bottom: clamp(18px, 5vw, 26px);
  }

  .property-card h3 {
    font-size: clamp(20px, 5.4vw, 22px);
    line-height: 1.28;
  }

  .property-card__meta,
  .property-card__bottom {
    opacity: 1;
    transform: none;
  }

  .property-card__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .property-card:hover .property-card__bottom,
  .property-card:focus-within .property-card__bottom {
    max-height: 120px;
    margin-top: 14px;
    padding-top: 14px;
  }

  .property-card__bottom a {
    display: grid;
    grid-template-columns: minmax(0, max-content) max-content;
    align-items: center;
    width: min(100%, 260px);
    font-size: 14px;
  }

  .property-card__icon {
    width: 44px;
    height: 44px;
  }

  .category-hero__inner {
    width: calc(100% - 40px);
    min-height: clamp(300px, 86vw, 420px);
    padding: calc(var(--page-header-height) + 36px) 0 clamp(52px, 14vw, 68px);
  }

  .breadcrumbs {
    gap: 10px;
    font-size: 12px;
  }

  .category-hero__bottom {
    gap: clamp(22px, 7vw, 30px);
  }

  .category-hero h1 {
    overflow-wrap: anywhere;
    font-size: 48px;
    line-height: 1;
  }

  .category-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 22px;
    margin-right: -20px;
    padding: 0 20px 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tabs a {
    flex: 0 0 auto;
  }

  .category-filter__inner,
  .category-catalog__inner {
    width: calc(100% - 40px);
  }

  .category-filter__inner {
    padding: clamp(46px, 13vw, 58px) 0 clamp(22px, 7vw, 32px);
  }

  .filter-form {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .filter-field {
    padding-bottom: 14px;
  }

  .filter-form__summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
  }

  .category-catalog__inner {
    padding: 22px 0 clamp(64px, 18vw, 78px);
  }

  .property-grid {
    --property-gap: 18px;

    grid-template-columns: 1fr;
  }

  .property-hero {
    min-height: 640px;
  }

  .about-hero {
    min-height: 640px;
  }

  .property-hero__content {
    width: calc(100% - 40px);
    padding: calc(var(--page-header-height) + 36px) 0 48px;
  }

  .about-hero__content {
    width: calc(100% - 40px);
    padding: calc(var(--page-header-height) + 36px) 0 48px;
  }

  .property-hero__bottom {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: 48px;
    line-height: 1.03;
  }

  .about-hero__bottom p {
    max-width: 320px;
    font-size: 18px;
    line-height: 1.45;
  }

  .property-hero__copy h1 {
    font-size: 48px;
    line-height: 1.02;
  }

  .property-hero__copy strong {
    font-size: 34px;
  }

  .property-hero__details {
    display: none;
  }

  .property-description__inner,
  .property-gallery__inner,
  .property-plan__inner {
    width: calc(100% - 40px);
  }

  .property-description__inner,
  .property-plan__inner {
    padding: 64px 0;
  }

  .property-description h2,
  .property-gallery h2,
  .property-plan h2 {
    font-size: 42px;
  }

  .property-specs__table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
  }

  .property-specs__table > div {
    display: contents;
    min-width: 0;
  }

  .property-specs__table span {
    min-width: 0;
    padding: 14px 10px;
    border-right: 0;
  }

  .property-specs__table div:first-child span {
    display: flex;
    align-items: end;
    min-height: 42px;
    font-size: 10px;
  }

  .property-specs__table div:last-child span {
    min-height: 64px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .property-specs__table div:first-child span:nth-child(1) {
    order: 1;
  }

  .property-specs__table div:first-child span:nth-child(2) {
    order: 2;
  }

  .property-specs__table div:last-child span:nth-child(1) {
    order: 3;
  }

  .property-specs__table div:last-child span:nth-child(2) {
    order: 4;
  }

  .property-specs__table div:first-child span:nth-child(3) {
    order: 5;
  }

  .property-specs__table div:first-child span:nth-child(4) {
    order: 6;
  }

  .property-specs__table div:last-child span:nth-child(3) {
    order: 7;
  }

  .property-specs__table div:last-child span:nth-child(4) {
    order: 8;
  }

  .property-specs__table div:first-child span:nth-child(5) {
    order: 9;
  }

  .property-specs__table div:first-child span:nth-child(6) {
    order: 10;
  }

  .property-specs__table div:last-child span:nth-child(5) {
    order: 11;
  }

  .property-specs__table div:last-child span:nth-child(6) {
    order: 12;
  }

  .property-features li {
    width: 100%;
    text-align: center;
  }

  .property-gallery__header {
    grid-template-columns: 1fr;
  }

  .property-gallery__controls {
    justify-self: start;
  }

  .property-gallery__track {
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
  }

  .property-gallery__track figure {
    flex-basis: min(82vw, 340px);
    height: 360px;
  }

  .property-gallery__track figure.is-active,
  .property-gallery__track figure.is-hovered,
  .property-gallery__track.is-hovering figure.is-active:not(.is-hovered) {
    flex-basis: min(82vw, 340px);
  }

  .property-gallery__track figure.is-hovered img {
    transform: none;
  }

  .photo-popup {
    padding: 20px;
  }

  .photo-popup__close {
    top: -64px;
  }

  .photo-popup__nav {
    top: auto;
    bottom: -72px;
  }

  .photo-popup__nav--prev {
    left: 0;
  }

  .photo-popup__nav--next {
    right: 0;
  }

  .property-contact .service-item {
    grid-template-columns: 1fr;
  }

  .property-contact .service-item__number,
  .property-contact .service-item h3,
  .property-contact .service-item p {
    grid-column: 1;
  }

  .property-contact .service-item__number {
    grid-row: auto;
  }

  .about-mission__inner,
  .about-history__inner,
  .about-values__inner,
  .about-stats__inner {
    width: calc(100% - 40px);
  }

  .about-mission__inner,
  .about-history__inner {
    padding: clamp(64px, 18vw, 76px) 0;
  }

  .about-eyebrow {
    margin-bottom: clamp(18px, 5.5vw, 24px);
    font-size: 12px;
  }

  .about-mission h2,
  .about-history h2,
  .about-values h2 {
    font-size: clamp(38px, 11.4vw, 48px);
    line-height: 1.08;
  }

  .about-history h2 {
    white-space: normal;
  }

  .about-mission__copy > p:not(.about-eyebrow) {
    margin-top: clamp(24px, 7vw, 30px);
    font-size: 16px;
    line-height: 1.5;
  }

  .about-mission__media {
    min-height: 380px;
  }

  .about-mission__media figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 18px;
  }

  .about-stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 44px 0;
  }

  .about-stats article {
    min-height: 156px;
    padding: 24px 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }

  .about-stats article:nth-child(even),
  .about-stats article:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-stats strong {
    margin-bottom: 14px;
    font-size: clamp(38px, 11vw, 48px);
  }

  .about-stats h2 {
    font-size: 13px;
  }

  .about-stats p {
    font-size: 13px;
  }

  .about-timeline {
    margin-top: 34px;
  }

  .about-timeline li {
    grid-template-columns: 7px 58px minmax(0, 1fr);
    column-gap: 18px;
    padding-bottom: 28px;
  }

  .about-timeline li::before {
    margin-top: 8px;
  }

  .about-timeline li + li {
    padding-top: 28px;
  }

  .about-timeline span {
    font-size: 16px;
  }

  .about-timeline h3 {
    font-size: 15px;
  }

  .about-timeline p {
    font-size: 15px;
  }

  .about-history__image {
    min-height: 340px;
  }

  .about-values__inner {
    padding: clamp(64px, 18vw, 76px) 0;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 44px;
  }

  .about-values article span {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .about-values h3 {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .about-values article p {
    max-width: 100%;
    font-size: 15px;
  }

  .slider-progress {
    margin-top: 34px;
    overflow: hidden;
  }

  .services__inner {
    width: calc(100% - 40px);
    padding: clamp(64px, 18vw, 76px) 0;
    row-gap: clamp(44px, 13vw, 52px);
  }

  .services h2 {
    max-width: 100%;
    font-size: clamp(36px, 10.25vw, 40px);
    line-height: 1.12;
  }

  .services__intro > p {
    max-width: 100%;
    margin-top: clamp(22px, 6.6vw, 26px);
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.5;
  }

  .services__cta {
    align-items: flex-start;
    flex-direction: column;
    gap: clamp(16px, 4.6vw, 18px);
    margin-top: clamp(36px, 10.8vw, 42px);
  }

  .service-item {
    padding-bottom: clamp(34px, 9.7vw, 38px);
  }

  .service-item + .service-item {
    padding-top: clamp(28px, 8.2vw, 32px);
  }

  .service-item p {
    max-width: 100%;
    margin-top: clamp(14px, 4.1vw, 16px);
    font-size: 16px;
    line-height: 1.5;
  }

  .community__inner {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    padding: clamp(64px, 18vw, 76px) 0;
  }

  .community__eyebrow {
    margin-bottom: clamp(16px, 4.6vw, 18px);
    font-size: clamp(12px, 3.4vw, 13px);
  }

  .community h2 {
    max-width: 100%;
    font-size: clamp(36px, 10.25vw, 40px);
    line-height: 1.09;
  }

  .community__text {
    height: 264px;
    margin-top: clamp(26px, 7.7vw, 30px);
    font-size: 16px;
    line-height: 1.5;
  }

  .community__visual {
    display: flex;
    flex-direction: column;
    left: auto;
    height: auto;
    margin-top: clamp(32px, 9.7vw, 38px);
    aspect-ratio: auto;
  }

  .community__control {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 0;
    align-self: center;
    width: min(230px, 84vw);
    aspect-ratio: 1;
    height: auto;
    margin-bottom: clamp(28px, 8.2vw, 32px);
  }

  .community__progress {
    width: 100%;
    height: 100%;
  }

  .community__progress-track,
  .community__progress-value {
    r: 171;
    cx: 173;
    cy: 173;
  }

  .community__image {
    order: 1;
    aspect-ratio: 335 / 420;
    height: auto;
  }

  .community__counter {
    top: 50%;
    left: 50%;
    min-width: 62px;
    font-size: clamp(96px, 32vw, 150px);
    line-height: 1;
    transform: translate(-50%, -50%);
  }

  .community__arrow {
    top: 50%;
    left: calc(50% - 6px);
    transform: translateY(-50%);
  }

  .community__arrow svg {
    width: min(82px, 21vw);
  }

  .lifestyle__inner {
    width: calc(100% - 40px);
    padding: clamp(64px, 18vw, 76px) 0;
  }

  .lifestyle__eyebrow {
    margin-bottom: clamp(16px, 4.6vw, 18px);
    font-size: clamp(12px, 3.4vw, 13px);
  }

  .lifestyle h2 {
    max-width: 100%;
    font-size: clamp(36px, 10.25vw, 40px);
    line-height: 1.09;
  }

  .lifestyle__text {
    padding-top: clamp(26px, 7.7vw, 30px);
    font-size: 16px;
    line-height: 1.5;
  }

  .lifestyle__media {
    grid-template-columns: 1fr;
    gap: clamp(20px, 6.1vw, 24px);
    margin-top: clamp(32px, 9.7vw, 38px);
  }

  .lifestyle__image--main,
  .lifestyle__image--wide {
    aspect-ratio: 335 / 300;
  }

  .mobile-panel__sheet {
    width: 100%;
    padding: 88px 24px 34px;
  }

  .mobile-panel__close {
    top: 24px;
    right: 20px;
  }

  .mobile-panel__mark {
    width: 24px;
    height: 22px;
  }

  .mobile-panel__nav {
    gap: 18px;
    margin-top: 52px;
    margin-bottom: auto;
  }

  .mobile-panel__nav a {
    font-size: clamp(22px, 7.4vw, 32px);
    line-height: 1.18;
  }

  .mobile-panel__social {
    gap: 10px;
  }

  .mobile-panel__social a {
    width: 46px;
    height: 46px;
  }

  .callback-popup {
    padding: 0;
  }

  .callback-popup__dialog {
    min-height: 100svh;
    padding: 0 0 54px;
  }

  .callback-popup__close {
    top: 24px;
    right: 20px;
  }

  .callback-popup__content {
    gap: 36px;
    width: calc(100% - 40px);
    margin: 122px auto 0;
  }

  .callback-popup__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .callback-popup__intro h2 {
    width: auto;
    font-size: clamp(42px, 12.6vw, 42px);
    line-height: 1.02;
  }

  .callback-popup__contacts {
    font-size: 15px;
    line-height: 22px;
  }

  .callback-popup__form {
    gap: 30px;
  }

  .callback-popup__field span {
    font-size: 15px;
  }

  .callback-popup__agree {
    font-size: 13px;
    line-height: 20px;
  }

  .callback-popup__submit {
    grid-auto-flow: column;
    align-items: center;
    justify-items: start;
    gap: 18px;
    font-size: 18px;
    line-height: 24px;
  }

  .callback-popup__submit .round-icon {
    order: 1;
    width: 64px;
    height: 64px;
  }

  .callback-popup__submit .round-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer {
    padding: 0;
  }

  .footer__inner {
    width: calc(100% - 10px);
    padding: 56px 20px 32px;
  }

  .footer__logo {
    width: 218px;
    height: 56px;
  }

  .footer__subscribe {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 18px;
  }

  .footer__submit {
    width: 48px;
    height: 48px;
  }

  .footer__privacy-note {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 54px;
    padding-bottom: 34px;
  }

  .footer__contacts {
    padding: 32px 0;
  }

  .footer__contact a {
    font-size: clamp(26px, 9vw, 34px);
    line-height: 1.2;
    word-break: break-word;
  }

  .footer__social-links a {
    width: 46px;
    height: 46px;
  }

  .footer__bottom {
    padding-top: 30px;
    font-size: 13px;
  }

  .footer__bottom p span {
    margin: 0 10px;
  }
}

@media (max-width: 420px) {
  .header {
    column-gap: 16px;
  }

  .logo {
    font-size: 26px;
  }

  .callback {
    display: none;
  }

  .hero__content {
    padding-right: 64px;
  }
}
