:root {
  --bg: #f4f4f4;
  --text-dark: #1d1d1d;
  --muted: #f4f3ee;
  --brand-blue: #7da6c5;
  --cta-yellow: #e8bc11;
  --page-gutter: 56px;
  --navbar-height: 76px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Darker Grotesque", sans-serif;
  background: white;
  color: var(--text-dark);
}

html.site-preloader-active,
html.site-preloader-active body {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__logo {
  width: min(220px, 54vw);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  animation: site-preloader-pulse 1.1s ease-in-out infinite;
}

@keyframes site-preloader-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(0.97);
  }
}

.page {
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--navbar-height) + 12px) 0 24px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px 10px;
}

.navbar.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--navbar-height);
  padding: 10px max(20px, var(--page-gutter)) 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 78, 118, 0.08), 0 6px 24px rgba(15, 30, 50, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 158px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  text-decoration: none;
  color: #161616;
  font-size: 17px;
  font-weight: 600;
}

.menu a.active {
  color: #0f4e76;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #12377f;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-navbar.is-menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-navbar.is-menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-navbar.is-menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-logout-form {
  display: block;
  margin: 0;
}

.menu-logout-form button {
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 0;
  color: inherit;
  font-weight: 600;
  font-size: inherit;
}

.properties-page {
  background: #fff;
}

.properties-page .page {
  padding-top: calc(var(--navbar-height) + 12px);
}

.properties-hero {
  position: relative;
  margin: 0 56px;
  height: 350px;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.properties-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.52) 10%, rgba(14, 14, 14, 0.12) 56%, rgba(14, 14, 14, 0.08));
}

.properties-hero-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  color: #fff;
  z-index: 2;
}

.properties-title-wrap h1 {
  margin: 0;
  font-size: clamp(56px, 4.3vw, 74px);
  font-weight: 500;
  line-height: 0.95;
}

.properties-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
}

.properties-hero-content p {
  margin: 12px 0 0 auto;
  max-width: 500px;
  text-align: right;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.04;
}

.properties-strip {
  margin-top: 24px;
  overflow: hidden;
}

.properties-strip-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: properties-strip-scroll 24s linear infinite;
}

.properties-strip-card {
  width: min(25vw, 320px);
  min-width: 220px;
  border-radius: 34px;
  overflow: hidden;
  flex-shrink: 0;
}

.properties-strip-card img {
  width: 100%;
  aspect-ratio: 16 / 12.4;
  object-fit: cover;
  display: block;
}

.properties-catalog {
  margin-top: 30px;
  padding-inline: 56px;
}

.properties-catalog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}

.properties-catalog-head h2 {
  margin: 0;
  color: #6f97b5;
  font-size: clamp(44px, 3.2vw, 58px);
  font-weight: 500;
  line-height: 0.92;
}

.properties-catalog-head p {
  margin: 8px 0 0;
  max-width: 470px;
  color: #1f1f1f;
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1.04;
}

.properties-catalog-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.properties-catalog-tab {
  border: none;
  background: transparent;
  color: #2d5978;
  font-family: inherit;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.properties-catalog-tab.active {
  background: #0f4e76;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  padding: 12px 48px;
}

.properties-catalog-tabs a.properties-catalog-tab {
  display: inline-block;
}

.properties-catalog-page {
  padding-top: 32px;
}

.properties-catalog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.properties-catalog-sidebar {
  position: sticky;
  top: 100px;
  padding: 20px 18px 22px;
  border-radius: 20px;
  background: #f4f8fc;
  border: 1px solid #dce8f4;
}

.properties-filter-group + .properties-filter-group {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #d4e3f0;
}

.properties-filter-group-title {
  margin: 0 0 12px;
  color: #0f4e76;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.properties-filter-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.properties-filter-link {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: #2d5978;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.properties-filter-link:hover {
  background: rgba(15, 78, 118, 0.08);
  color: #0f4e76;
}

.properties-filter-link.active {
  background: #0f4e76;
  color: #fff;
}

.properties-filter-group.is-open .properties-filter-group-title {
  color: #0a3d5c;
}

.properties-catalog-main {
  min-width: 0;
}

.properties-catalog-browse-note {
  margin-top: 8px;
  font-size: 16px;
  color: #475569;
}

.properties-catalog-empty {
  grid-column: 1 / -1;
  padding: 24px 8px;
  color: #334155;
  font-size: 17px;
  line-height: 1.5;
}

.properties-catalog-empty a {
  color: #0f4e76;
  font-weight: 700;
}

.properties-catalog-inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}

.properties-catalog-pagination {
  padding-bottom: 40px;
}

.stayces-pagination {
  margin-top: 8px;
}

.stayces-pagination-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stayces-pagination-list a,
.stayces-pagination-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.stayces-pagination-list a {
  color: #0f4e76;
  background: #fff;
  border: 1px solid #c5d8e8;
}

.stayces-pagination-list a:hover {
  background: #eef5fb;
}

.stayces-pagination-current {
  color: #fff;
  background: #0f4e76;
  border: 1px solid #0f4e76;
}

.stayces-pagination-disabled,
.stayces-pagination-ellipsis {
  color: #8aa3b8;
  background: #f3f7fb;
  border: 1px solid #e3ebf7;
}

.properties-catalog-pagination nav[aria-label="Pagination Navigation"] svg,
.properties-catalog-pagination .w-5 {
  width: 1.25rem !important;
  height: 1.25rem !important;
  max-width: 1.25rem;
  max-height: 1.25rem;
}

.properties-catalog-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 48px;
}

.properties-catalog-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #0f4e76;
}

.properties-catalog-card.is-hidden {
  display: none;
}

.properties-catalog-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8e6f0;
}

.properties-catalog-bed {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(15, 78, 118, 0.88);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.properties-catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.properties-catalog-card:hover img {
  transform: scale(1.04);
}

.properties-catalog-overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #0f4e76;
  min-height: 52px;
}

.properties-catalog-overlay span {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  padding: 10px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.properties-catalog-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-decoration: none;
  color: #1f1f1f;
  background: #e8bc11;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 12px;
  margin: 6px 6px 6px 0;
  white-space: nowrap;
}

.single-property-page {
  background: #fff;
}

.single-property-overview {
  margin: 22px 44px 0;
}

.single-property-cta {
  background: #0f4e76;
  border-radius: 38px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.single-property-cta span {
  color: #fff;
  font-size: clamp(34px, 2.8vw, 46px);
  line-height: 1;
  padding: 0 24px;
}

.single-property-cta a {
  text-decoration: none;
  background: #e8bc11;
  color: #1f1f1f;
  min-height: 62px;
  min-width: 208px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: 500;
  padding: 0 16px;
}

.single-property-divider {
  height: 1px;
  background: #ddccbb;
  margin-top: 18px;
}

.single-property-amenities {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 16px;
  column-gap: 30px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.amenity-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.98;
}

.amenity-item span:last-child {
  color: #1f1f1f;
  font-size: clamp(22px, 1.4vw, 28px);
  line-height: 1;
}

.single-property-gallery {
  margin: 26px 44px 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "top-left top-left top-left top-right top-right top-right"
    "bottom-left bottom-left bottom-right bottom-right bottom-right bottom-right";
  gap: 16px;
  align-items: end;
}

.single-gallery-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  align-self: end;
}

.single-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-gallery-card.top-left {
  grid-area: top-left;
  aspect-ratio: 16 / 7.9;
}

.single-gallery-card.top-right {
  grid-area: top-right;
  aspect-ratio: 16 / 7.9;
}

.single-gallery-card.bottom-left {
  grid-area: bottom-left;
  aspect-ratio: 3.6 / 4;
}

.single-gallery-card.bottom-right {
  grid-area: bottom-right;
  aspect-ratio: 16 / 8.7;
}

@keyframes properties-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 620px;
  padding-inline: 0;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  width: 100%;
}

.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 560px;
}

.hero-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  min-height: 560px;
  will-change: transform;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-carousel-track.is-dragging {
  transition: none;
}

.hero-carousel-slide {
  position: relative;
  flex: 0 0 auto;
  height: 560px;
  border-radius: 38px;
  overflow: hidden;
  user-select: none;
  background-color: #dfe8f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-carousel-slide:not(.is-active) {
  cursor: pointer;
}

.hero-slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 50%;
  bottom: 118px;
  transform: translateX(-50%);
  width: min(52vw, 500px);
  z-index: 5;
  color: #fff;
  pointer-events: none;
}

.hero-caption-slide {
  display: none;
}

.hero-caption-slide.is-active {
  display: block;
  pointer-events: auto;
}

.hero-caption .hero-title-wrap {
  width: 100%;
}

.hero-caption .hero-title-wrap h1 {
  margin: 0;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.95;
  color: #fff;
}

.hero-caption .title-line {
  width: 100%;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  display: block;
  margin-top: 14px;
  margin-bottom: 16px;
}

.hero-caption .hero-footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px 20px;
  width: 100%;
}

.hero-caption .hero-footer p {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  text-align: left;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.05;
}

.hero-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 8;
  width: min(12%, 130px);
  min-width: 52px;
  border: none;
  color: #033c6a;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.0);
  transition: background 180ms ease, opacity 180ms ease;
}



.hero-arrow-prev {
  left: 0;
  
}

.hero-arrow-next {
  right: 0;
  
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track {
    transition: none;
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.45) 11%, rgba(14, 14, 14, 0.1) 58%, rgba(14, 14, 14, 0.08));
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1f1f1f;
  background: var(--cta-yellow);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 26px;
  font-weight: 600;
  white-space: nowrap;
}

.booking-overlay {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 80px));
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr auto;
  gap: 10px;
  z-index: 6;
  background: linear-gradient(145deg, rgba(8, 62, 96, 0.92), rgba(12, 85, 126, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  padding: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.booking-overlay-title {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.booking-field {
  display: grid;
  gap: 5px;
  color: #fff;
  font-size: 17px;
}

.booking-field span {
  opacity: 0.94;
  padding-left: 10px;
  letter-spacing: 0.02em;
}

.booking-field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.19);
  color: #fff;
  border-radius: 12px;
  min-height: 46px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 19px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-field input:focus {
  border-color: rgba(232, 188, 17, 0.9);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(232, 188, 17, 0.18);
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.booking-field input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.95;
  cursor: pointer;
}

.booking-submit {
  border: none;
  border-radius: 14px;
  background: #e8bc11;
  color: #1f1f1f;
  font-family: inherit;
  font-size: 21px;
  font-weight: 700;
  padding: 0 20px;
  min-height: 76px;
  align-self: end;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.booking-submit:hover {
  transform: translateY(-1px);
  background-color: #f1c623;
}

.booking-submit:active {
  transform: translateY(0);
}

.stats {
  margin-top: 24px;
  padding-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-inline: var(--page-gutter);
}

.stat-card {
  background: #ececec;
  border-radius: 22px;
  padding: 14px 18px;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-card .value {
  color: var(--brand-blue);
  font-size: clamp(40px, 3.1vw, 56px);
  line-height: 1;
  font-weight: 500;
}

.stat-card .label {
  color: #2a2a2a;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1;
  font-weight: 500;
}

.comfort-section {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: stretch;
  padding-inline: var(--page-gutter);
  overflow: hidden;
  position: relative;
}

.comfort-image-wrap {
  margin: 0;
  position: relative;
  z-index: 2;
}

.comfort-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.comfort-content {
  position: static;
  overflow: visible;
  padding: 18px 0 0;
}

.comfort-content h2 {
  margin: 0;
  max-width: 700px;
  color: #7ea5c3;
  font-size: 50px;
  font-weight: 500;
  line-height: 0.93;
  position: relative;
  z-index: 2;
}

.comfort-content p {
  max-width: 540px;
  margin: 16px 0 30px;
  color: #1f1f1f;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.02;
  position: relative;
  z-index: 2;
}

.comfort-marquee-bg {
  position: absolute;
  top: 205px;
  left: 0;
  right: 0;
  bottom: 56px;
  z-index: 1;
  pointer-events: none;
}

.marquee-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  padding-inline: 2px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation-duration: 26s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.row-one .marquee-track {
  animation-name: marquee-left;
}

.row-two .marquee-track {
  animation-name: marquee-right;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 245px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(237, 237, 237, 0.55);
  color: rgb(41 90 123);
  font-size: 24px;
  white-space: nowrap;
}

.marquee-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 188, 17, 0.7);
}

.comfort-tags {
  position: relative;
  z-index: 2;
  display: none;
  flex-wrap: wrap;
  gap: 16px 14px;
  max-width: 830px;
  margin-top: 4px;
}

.comfort-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 238px;
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(236, 236, 236, 0.97);
  color: #3f6987;
  font-size: clamp(20px, 1.3vw, 24px);
  line-height: 1;
  white-space: nowrap;
}

.comfort-tags span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8bc11;
}

.known-section {
  margin-top: 52px;
  background-color: #7EA8C124;
  padding-inline: var(--page-gutter);
  padding: 70px;
}

.known-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.known-head h2 {
  margin: 0;
  color: #6f96b4;
  font-size: clamp(54px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.9;
}

.known-head p {
  max-width: 580px;
  margin: 10px 0 0;
  color: #222;
  font-size: clamp(24px, 1.7vw, 32px);
  line-height: 1.03;
}

.known-tabs {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 6px;
  flex-shrink: 0;
}

.known-tab {
  border: none;
  background: transparent;
  color: #24506f;
  font-family: inherit;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.known-tab.active {
  background: #0f4e76;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  padding: 16px 62px;
}

.known-slider-wrap {
  overflow: hidden;
}

.known-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 2.5);
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.known-slider::-webkit-scrollbar {
  display: none;
}

.known-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
}

.known-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.known-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  border-radius: 999px;
  overflow: hidden;
  background: #0f4e76;
}

@media (hover: hover) and (pointer: fine) {
  .known-card:hover .known-overlay {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (hover: none), (max-width: 900px) {
  .known-card .known-overlay {
    transform: translateY(0);
    opacity: 1;
  }
}

.known-place {
  flex: 1;
  min-width: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(15px, 1.2vw, 22px);
  line-height: 1.15;
  padding: 14px 18px;
  font-weight: 600;
}

.known-book {
  flex-shrink: 0;
  text-decoration: none;
  color: #1f1f1f;
  background: #e8bc11;
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  margin: 3px;
}

@media (min-width: 901px) {
  .known-overlay {
    padding: 4px;
  }

  .known-place {
    padding: 12px 16px;
    font-size: clamp(14px, 1.1vw, 19px);
    line-height: 1.2;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.lifestyle-section {
  margin-top: 58px;
  padding-inline: var(--page-gutter);
  position: relative;
}

.lifestyle-line {
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: #95afbf;
  transform: translateX(-50%);
}

.lifestyle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 406px;
  position: relative;
  margin-bottom: 46px;
}

.lifestyle-row::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 24px;
  border-radius: 999px;
  background: #0f5a84;
  transform: translate(-50%, -50%);
}

.lifestyle-row.reverse .lifestyle-copy {
  grid-column: 1;
  justify-self: end;
}

.lifestyle-row.reverse .lifestyle-media {
  grid-column: 2;
  justify-self: start;
}

.lifestyle-media {
  margin: 0;
  grid-column: 1;
  justify-self: end;
}

.lifestyle-media img {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.lifestyle-copy {
  max-width: 430px;
  grid-column: 2;
  justify-self: start;
}

.lifestyle-copy h3 {
  margin: 0;
  color: #6f97b5;
  font-size: clamp(44px, 3.4vw, 58px);
  line-height: 0.92;
  font-weight: 500;
}

.lifestyle-copy p {
  margin: 10px 0 0;
  color: #1f1f1f;
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.05;
}

.reviews-section {
  margin-top: 58px;
  padding-inline: var(--page-gutter);
}

.reviews-section-head {
  margin-bottom: 28px;
  max-width: 720px;
}

.reviews-section-head h2 {
  margin: 0;
  color: #6f97b5;
  font-size: clamp(40px, 3.2vw, 54px);
  font-weight: 500;
  line-height: 0.95;
}

.reviews-section-head p {
  margin: 12px 0 0;
  color: #1f1f1f;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.reviews-slider-outer {
  position: relative;
}

.reviews-slider-viewport {
  overflow: hidden;
  border-radius: 4px;
}

.reviews-slider-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 28px 0 32px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  box-sizing: border-box;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #1f1f1f;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
}

.review-tenure {
  font-size: 15px;
  color: #717171;
  font-weight: 500;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.review-stars {
  letter-spacing: 1px;
  font-size: 12px;
  color: #1f1f1f;
  line-height: 1;
}

.review-date {
  font-size: 14px;
  color: #717171;
  font-weight: 500;
}

.review-date::before {
  content: "·";
  margin-right: 8px;
  color: #b0b0b0;
}

.review-body {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #1f1f1f;
  font-weight: 500;
  max-width: 920px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #c5d5e3;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-dot.active {
  background: #0f5a84;
  transform: scale(1.15);
}

@media (min-width: 900px) {
  .review-card {
    flex: 0 0 calc(50% - 14px);
  }
}

.premier-section {
  margin-top: 34px;
  padding-inline: var(--page-gutter);
}

.premier-section h2 {
  margin: 0;
  text-align: center;
  color: #6f97b5;
  font-size: clamp(44px, 3.2vw, 56px);
  font-weight: 500;
}

.premier-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.premier-card {
  min-height: 168px;
  border: 1px solid #e3d5c8;
  border-radius: 24px;
  padding: 22px 22px 18px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.premier-card:hover {
  border-color: #c5d9e8;
  box-shadow: 0 8px 24px rgba(15, 78, 118, 0.08);
}

.premier-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f0f7fc 0%, #e8f4fa 100%);
  color: #0f5a84;
  margin-bottom: 14px;
}

.premier-icon-wrap svg {
  width: 32px;
  height: 32px;
  margin: auto;
}

.premier-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  color: #1f1f1f;
}

.premier-card p {
  margin: 0;
  color: #5c6670;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  max-width: none;
}

.premier-icon {
  width: 42px;
  height: 28px;
  display: inline-block;
  position: relative;
  opacity: 0.4;
}

.icon-hands::before,
.icon-hands::after {
  content: "";
  position: absolute;
  border: 1px solid #b9bfc4;
  width: 19px;
  height: 14px;
  border-radius: 12px 12px 4px 4px;
  top: 8px;
}

.icon-hands::before {
  left: 2px;
}

.icon-hands::after {
  right: 2px;
}

.icon-group::before,
.icon-group::after {
  content: "";
  position: absolute;
  border: 1px solid #b9bfc4;
  border-radius: 50%;
}

.icon-group::before {
  width: 12px;
  height: 12px;
  left: 6px;
  top: 3px;
  box-shadow: 14px 0 0 -1px #f4f4f4, 14px 0 0 0 #b9bfc4;
}

.icon-group::after {
  width: 28px;
  height: 14px;
  left: 7px;
  bottom: 2px;
  border-radius: 14px 14px 4px 4px;
}

.icon-arch::before,
.icon-arch::after {
  content: "";
  position: absolute;
  border: 1px solid #b9bfc4;
}

.icon-arch::before {
  width: 24px;
  height: 18px;
  left: 9px;
  top: 5px;
  border-radius: 11px 11px 3px 3px;
}

.icon-arch::after {
  width: 14px;
  height: 10px;
  left: 14px;
  top: 10px;
  border-radius: 7px 7px 2px 2px;
}

.landlord-inquiry-section {
  margin-top: 28px;
  margin-inline: calc(var(--page-gutter) - 10px);
  background: #0b4f77;
  border-radius: 36px;
  color: #fff;
  padding: 40px 40px 44px;
  overflow: hidden;
}

.landlord-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 36px;
  align-items: stretch;
}

.landlord-inquiry-form-col {
  text-align: left;
}

.landlord-inquiry-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 11px;
  opacity: 0.9;
  font-weight: 600;
}

.landlord-inquiry-section h3 {
  margin: 14px 0 0;
  font-size: clamp(32px, 2.8vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  max-width: 520px;
}

.landlord-inquiry-intro {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.35;
  opacity: 0.92;
  max-width: 480px;
  font-weight: 500;
}

.landlord-inquiry-flash {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  max-width: 480px;
}

.landlord-inquiry-flash-ok {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.landlord-inquiry-flash-err {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.landlord-inquiry-form {
  margin-top: 24px;
  max-width: 480px;
  display: grid;
  gap: 14px;
}

.landlord-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.landlord-field input,
.landlord-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
}

.landlord-field input::placeholder,
.landlord-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.landlord-field input:focus,
.landlord-field textarea:focus {
  outline: none;
  border-color: #e8bc11;
  background: rgba(255, 255, 255, 0.12);
}

.landlord-field textarea {
  resize: vertical;
  min-height: 110px;
}

.landlord-field-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #fecaca;
  font-weight: 600;
}

.landlord-inquiry-submit {
  margin-top: 6px;
  border: 0;
  border-radius: 12px;
  padding: 14px 24px;
  background: #e8bc11;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  justify-self: start;
  transition: background 0.2s ease, transform 0.15s ease;
}

.landlord-inquiry-submit:hover {
  background: #f0c92a;
  transform: translateY(-1px);
}

.landlord-inquiry-media {
  margin: 0;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  align-self: stretch;
}

.landlord-inquiry-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.main-footer {
  margin-top: 22px;
  margin-inline: calc(var(--page-gutter) - 10px);
  min-height: 280px;
  background: #0b4f77;
  border-radius: 36px;
  padding: 28px 40px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top-line {
  height: 1px;
  background: rgba(70, 140, 180, 0.35);
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.footer-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-top: 4px;
}

.footer-brand {
  display: inline-block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.footer-brand img {
  width: 130px;
  max-height: 52px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-contact-block {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact-block p {
  margin: 0 0 6px;
}

.footer-contact-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px !important;
}

.footer-contact-block a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.footer-contact-block a:hover {
  text-decoration: underline;
}

.footer-contact-emails {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
}

.footer-contact-sep {
  opacity: 0.65;
}

.footer-inquire-btn {
  display: inline-block;
  text-decoration: none;
  color: #0b4f77;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 10px 18px;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.05;
  font-weight: 600;
}

.footer-links a:hover {
  opacity: 0.85;
}

.footer-up {
  color: #fff;
  text-decoration: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-size: 12px;
  opacity: 0.9;
  flex-shrink: 0;
}

.footer-up:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-curve {
  position: absolute;
  left: 38%;
  top: 72px;
  width: 52%;
  height: 160px;
  border: 1px solid rgba(42, 118, 159, 0.45);
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 100px;
  border-top-left-radius: 100px;
  pointer-events: none;
  z-index: 1;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 600;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-legal {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(70, 140, 180, 0.3);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-legal span {
  opacity: 0.5;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1120px) {
  .properties-hero {
    margin-inline: 28px;
    height: 290px;
    border-radius: 24px;
  }

  .properties-strip {
    margin-top: 18px;
  }

  .properties-strip-track {
    gap: 14px;
  }

  .properties-strip-card {
    width: min(32vw, 280px);
    border-radius: 24px;
  }

  .properties-catalog {
    padding-inline: 28px;
  }

  .properties-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .properties-catalog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .properties-catalog-sidebar {
    position: static;
  }

  .properties-catalog-head {
    flex-direction: column;
    gap: 12px;
  }

  .properties-catalog-tabs {
    flex-wrap: wrap;
  }

  .properties-catalog-tab.active {
    padding: 10px 28px;
  }

  .single-property-overview {
    margin-inline: 28px;
  }

  .single-property-amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-property-gallery {
    margin-inline: 28px;
  }

  .properties-hero-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .properties-hero-content p {
    max-width: 420px;
  }

  .menu a {
    font-size: 16px;
  }

  .hero-wrapper {
    min-height: 560px;
  }

  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide {
    min-height: 500px;
    height: 500px;
  }

  .hero-content {
    bottom: 108px;
  }

  .booking-overlay {
    width: calc(100% - 150px);
    grid-template-columns: 1fr 1fr;
  }

  .booking-overlay-title {
    font-size: 16px;
  }

  .booking-submit {
    min-height: 48px;
    grid-column: span 2;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 28px;
  }

  .comfort-section {
    grid-template-columns: 1fr;
    padding-inline: 28px;
  }

  .comfort-image-wrap {
    aspect-ratio: 16 / 10;
    max-height: 260px;
    overflow: hidden;
  }

  .comfort-image-wrap img {
    min-height: 0;
    height: 100%;
    max-height: 260px;
  }

  .comfort-content {
    padding: 4px 0 0;
    min-width: 0;
    max-width: 100%;
  }

  .comfort-content h2,
  .comfort-content p {
    max-width: 100%;
  }

  .comfort-marquee-bg {
    top: auto;
    position: relative;
    margin-top: 16px;
    width: 100%;
    overflow: hidden;
  }

  .known-section {
    padding-inline: 28px;
  }

  .known-head {
    flex-direction: column;
    gap: 14px;
  }

  .known-tabs {
    flex-wrap: wrap;
    gap: 14px;
  }

  .known-tab.active {
    padding: 13px 34px;
  }

  .known-slider {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .known-card {
    aspect-ratio: 1 / 1;
  }

  .lifestyle-section {
    padding-inline: 28px;
  }

  .lifestyle-row {
    column-gap: 36px;
    margin-bottom: 40px;
  }

  .lifestyle-media img,
  .lifestyle-copy {
    max-width: none;
  }

  .premier-section {
    padding-inline: 28px;
  }

  .premier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landlord-inquiry-section,
  .main-footer {
    margin-inline: 18px;
  }

}

@media (max-width: 900px) {
  :root {
    --page-gutter: 14px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body.nav-menu-open {
    overflow: hidden;
  }

  .navbar.site-navbar {
    padding: 8px 14px 10px;
    gap: 8px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-navbar .menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 14px 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 30, 50, 0.12);
    border-top: 1px solid rgba(15, 78, 118, 0.08);
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
  }

  .site-navbar.is-menu-open .menu {
    display: flex;
  }

  .site-navbar .menu a,
  .site-navbar .menu-logout-form button {
    display: block;
    padding: 14px 12px;
    font-size: 18px;
    border-bottom: 1px solid rgba(15, 78, 118, 0.08);
  }

  .site-navbar .menu-logout-form {
    border-bottom: 1px solid rgba(15, 78, 118, 0.08);
  }

  .site-navbar .menu-logout-form button {
    width: 100%;
    text-align: left;
    border-bottom: 0;
  }

  .hero-wrapper {
    min-height: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .hero-stage {
    display: flex;
    flex-direction: column;
  }

  .hero-carousel {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .hero-carousel-track {
    min-height: 0;
    height: clamp(200px, 50vw, 260px);
  }

  .hero-carousel-slide {
    min-height: 0;
    height: clamp(200px, 50vw, 260px);
    border-radius: 0;
  }

  .hero-slide-photo {
    object-position: center center;
  }

  .hero-arrow {
    width: 40px;
    min-width: 40px;
    font-size: 26px;
    background: rgba(0, 0, 0, 0.35);
  }

  .hero-caption {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    flex: 0 0 auto;
    padding: 14px var(--page-gutter) 6px;
    color: #1f1f1f;
    pointer-events: auto;
  }

  .hero-caption .hero-title-wrap h1 {
    font-size: clamp(26px, 7vw, 36px);
    color: #6f96b4;
    line-height: 1;
  }

  .hero-caption .title-line {
    width: min(50vw, 180px);
    margin-top: 8px;
    margin-bottom: 10px;
    background: rgba(111, 150, 180, 0.55);
  }

  .hero-caption .hero-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-caption .hero-footer p {
    text-align: left;
    font-size: clamp(14px, 3.8vw, 17px);
    max-width: 100%;
    color: #333;
    line-height: 1.25;
    margin: 0;
  }

  .hero-caption .explore-btn {
    font-size: 15px;
    padding: 8px 16px;
    flex-shrink: 0;
  }

  .comfort-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-inline: var(--page-gutter);
    overflow-x: hidden;
    overflow-y: visible;
  }

  .comfort-image-wrap {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 16 / 10;
    max-height: 220px;
    border-radius: 18px;
    overflow: hidden;
  }

  .comfort-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    max-height: 220px;
    object-fit: cover;
    object-position: center center;
    border-radius: 18px;
  }

  .comfort-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    overflow: hidden;
  }

  .comfort-content h2 {
    font-size: clamp(28px, 7.5vw, 38px);
    line-height: 1.08;
    max-width: 100%;
  }

  .comfort-content p {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.35;
    margin: 10px 0 14px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .comfort-marquee-bg {
    display: block !important;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    overflow: hidden;
  }

  .marquee-row {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .comfort-tags {
    display: none !important;
  }

  .marquee-row {
    margin-bottom: 12px;
  }

  .marquee-track span {
    min-width: 168px;
    font-size: 16px;
    padding: 10px 16px;
  }

  .booking-overlay,
  .home-booking-overlay {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 16px;
    padding: 14px;
  }

  .booking-overlay-title,
  .home-booking-overlay .booking-overlay-title {
    grid-column: auto;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
  }

  .booking-submit,
  .home-booking-overlay .booking-submit {
    grid-column: auto;
    width: 100%;
    min-height: 46px;
    height: auto;
    font-size: 17px;
    align-self: stretch;
  }

  .booking-field input {
    min-height: 44px;
    font-size: 16px;
  }

  .site-flash-wrap {
    padding-inline: var(--page-gutter);
  }

  .properties-hero {
    margin-inline: var(--page-gutter);
  }

  .properties-catalog {
    padding-inline: var(--page-gutter);
  }

  .known-section {
    padding: 40px var(--page-gutter);
  }

  .known-head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .known-tabs {
    width: 100%;
    margin-top: 0;
    gap: 10px;
  }

  .known-slider {
    grid-auto-columns: min(78vw, 320px);
    gap: 14px;
  }

  .known-card .known-overlay {
    transform: translateY(0);
    opacity: 1;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px 12px;
    overflow: visible;
  }

  .known-place {
    flex: none;
    width: 100%;
    font-size: 13px;
    line-height: 1.3;
    padding: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
  }

  .known-book {
    align-self: flex-end;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 11px;
    margin: 0;
    gap: 4px;
    border-radius: 999px;
  }

  .known-book span {
    font-size: 12px;
  }

  .comfort-section,
  .lifestyle-section,
  .reviews-section,
  .premier-section {
    padding-inline: var(--page-gutter);
  }

  .stats {
    padding-inline: var(--page-gutter);
  }

  .landlord-inquiry-section,
  .main-footer {
    margin-inline: var(--page-gutter);
  }
}

@media (max-width: 768px) {
  .properties-hero {
    margin-inline: 14px;
    height: 240px;
    border-radius: 20px;
  }

  .properties-strip {
    margin-top: 14px;
  }

  .properties-strip-track {
    gap: 10px;
    animation-duration: 18s;
  }

  .properties-strip-card {
    width: min(62vw, 250px);
    min-width: 180px;
    border-radius: 16px;
  }

  .properties-catalog {
    margin-top: 22px;
    padding-inline: 14px;
  }

  .properties-catalog-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .properties-catalog-sidebar {
    padding: 16px 14px;
  }

  .properties-filter-link {
    padding: 9px 12px;
    font-size: 14px;
  }

  .properties-catalog-head h2 {
    font-size: clamp(34px, 9.5vw, 44px);
  }

  .properties-catalog-head p {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .properties-catalog-tabs {
    gap: 10px;
  }

  .properties-catalog-tab {
    font-size: 12px;
  }

  .properties-catalog-tab.active {
    padding: 8px 16px;
  }

  .properties-catalog-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .single-property-overview {
    margin: 12px 14px 0;
  }

  .single-property-cta {
    min-height: 54px;
  }

  .single-property-cta span {
    font-size: clamp(24px, 7vw, 34px);
    padding: 0 14px;
  }

  .single-property-cta a {
    min-height: 54px;
    min-width: 132px;
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .single-property-amenities {
    margin-top: 16px;
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .amenity-item span:last-child {
    font-size: clamp(18px, 5vw, 22px);
  }

  .single-property-gallery {
    margin: 18px 14px 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "top-left"
      "top-right"
      "bottom-left"
      "bottom-right";
    gap: 12px;
  }

  .single-gallery-card.top-left,
  .single-gallery-card.top-right,
  .single-gallery-card.bottom-left,
  .single-gallery-card.bottom-right {
    aspect-ratio: 16 / 10;
  }

  .properties-title-wrap h1 {
    font-size: clamp(42px, 11vw, 52px);
  }

  .properties-hero-content p {
    max-width: 300px;
    font-size: clamp(18px, 4.6vw, 22px);
  }

  .page {
    padding: calc(var(--navbar-height) + 8px) 0 18px;
  }

  :root {
    --navbar-height: 64px;
  }

  .brand img {
    width: 120px;
    max-height: 44px;
  }

  .hero-carousel-track,
  .hero-carousel-slide {
    height: clamp(190px, 48vw, 240px);
  }

  .stats {
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }

  .comfort-section {
    margin-top: 28px;
    gap: 14px;
    padding-inline: 14px;
  }

  .comfort-image-wrap {
    max-height: 200px;
    aspect-ratio: 16 / 11;
  }

  .comfort-image-wrap img {
    max-height: 200px;
    min-height: 0 !important;
    border-radius: 16px;
  }

  .comfort-content h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .comfort-content p {
    font-size: 15px;
    line-height: 1.4;
  }

  .comfort-marquee-bg {
    margin-top: 10px;
  }

  .marquee-track span {
    min-width: 150px;
    font-size: 15px;
    padding: 9px 14px;
  }

  .known-section {
    margin-top: 34px;
    padding-inline: 14px;
  }

  .known-head h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .known-head p {
    font-size: clamp(21px, 6vw, 28px);
  }

  .known-tabs {
    gap: 10px;
  }

  .known-tab {
    font-size: 12px;
  }

  .known-tab.active {
    padding: 10px 20px;
  }

  .known-slider {
    grid-auto-columns: minmax(240px, 84vw);
  }

  .known-card {
    aspect-ratio: 1 / 1;
  }

  .lifestyle-section {
    margin-top: 36px;
    padding-inline: 14px;
  }

  .reviews-section {
    margin-top: 36px;
    padding-inline: 14px;
  }

  .review-card {
    padding: 22px 0 26px;
  }

  .review-body {
    font-size: 16px;
  }

  .lifestyle-line {
    left: 18px;
    top: 10px;
    bottom: 10px;
    transform: none;
  }

  .lifestyle-row,
  .lifestyle-row.reverse {
    grid-template-columns: 1fr;
    row-gap: 12px;
    margin-bottom: 30px;
    padding-left: 34px;
  }

  .lifestyle-row::before {
    left: 18px;
    top: 22px;
    transform: translate(-50%, 0);
  }

  .lifestyle-row.reverse .lifestyle-copy,
  .lifestyle-row.reverse .lifestyle-media {
    grid-column: auto;
  }

  .lifestyle-row .lifestyle-copy,
  .lifestyle-row .lifestyle-media,
  .lifestyle-row.reverse .lifestyle-copy,
  .lifestyle-row.reverse .lifestyle-media {
    justify-self: stretch;
  }

  .lifestyle-media img {
    max-width: 100%;
    border-radius: 16px;
  }

  .lifestyle-copy h3 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .lifestyle-copy p {
    font-size: clamp(17px, 4.5vw, 20px);
  }

  .premier-section {
    margin-top: 16px;
    padding-inline: 14px;
  }

  .premier-section h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .premier-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .premier-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .premier-card-title {
    font-size: 17px;
  }

  .premier-card p {
    font-size: 14px;
  }

  .landlord-inquiry-section,
  .main-footer {
    margin-inline: 10px;
    border-radius: 24px;
  }

  .landlord-inquiry-section {
    padding: 28px 20px 32px;
  }

  .landlord-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .landlord-inquiry-section h3 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .landlord-inquiry-media {
    min-height: 240px;
    order: -1;
  }

  .main-footer {
    min-height: auto;
    padding: 22px 18px 18px;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col-right {
    align-items: flex-start;
  }

  .footer-col-right .footer-up {
    align-self: flex-end;
  }

  .footer-brand img {
    width: 110px;
    max-height: 44px;
  }

  .footer-contact-block {
    max-width: 100%;
    font-size: 12px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-links a {
    font-size: 26px;
  }

  .footer-curve {
    display: none;
  }
}
