:root {
  --property-ink: #0a2742;
  --property-ink-soft: #29445c;
  --property-ocean: #0b5377;
  --property-gold: #c9a360;
  --property-sand: #f5f2eb;
  --property-details-sand: #fcfaf6;
  --property-paper: #ffffff;
  --property-line: #dfe5e8;
  --property-muted: #6d7d89;
  --property-shadow: 0 22px 55px rgba(10, 39, 66, .09);
}

.property-page {
  color: var(--property-ink);
  background: #f8f9f9;
  overflow: hidden;
}

.property-intro {
  padding: 21px 0 18px;
  background:
    radial-gradient(circle at 88% -40%, rgba(201, 163, 96, .2), transparent 38%),
    linear-gradient(180deg, #fff 0%, #faf9f6 100%);
}

.property-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.property-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 0;
  color: var(--property-ocean);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.property-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e9b75;
  box-shadow: 0 0 0 5px rgba(46, 155, 117, .12);
}

.property-title-row h1 {
  max-width: 790px;
  margin: 0;
  color: var(--property-ink);
  font-size: clamp(38px, 4.6vw, 67px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.property-title-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  color: var(--property-muted);
  font-size: 16px;
  line-height: 1.4;
}

.property-title-location i {
  color: var(--property-gold);
  font-size: 17px;
}

.property-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding-bottom: 7px;
  color: var(--property-ocean);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 700;
  letter-spacing: .05em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.property-gallery-wrap {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.property-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 230px);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(10, 39, 66, .08);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--property-shadow);
  overflow: hidden;
}

.property-gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #e8ecee;
}

.property-gallery-item::after {
  position: absolute;
  inset: 0;
  content: '';
  background: rgba(9, 35, 57, 0);
  transition: background .3s ease;
}

.property-gallery-item:hover::after {
  background: rgba(9, 35, 57, .13);
}

.property-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.property-gallery-item:hover img {
  transform: scale(1.035);
}

.property-gallery-item--1 {
  grid-row: 1 / 3;
  border-radius: 18px 4px 4px 18px;
}

.property-gallery-item--2 { border-radius: 4px; }
.property-gallery-item--3 { border-radius: 4px 18px 4px 4px; }
.property-gallery-item--4 { border-radius: 4px; }
.property-gallery-item--5 { border-radius: 4px 4px 18px 4px; }

.property-gallery--1 {
  grid-template-columns: 1fr;
  grid-template-rows: 510px;
}

.property-gallery--1 .property-gallery-item--1 {
  grid-row: auto;
  border-radius: 18px;
}

.property-gallery--2 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 510px;
}

.property-gallery--2 .property-gallery-item--1 {
  grid-row: auto;
}

.property-gallery--2 .property-gallery-item--2 {
  border-radius: 4px 18px 18px 4px;
}

.property-gallery--3 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 251px);
}

.property-gallery--3 .property-gallery-item--2 { border-radius: 4px 18px 4px 4px; }
.property-gallery--3 .property-gallery-item--3 { border-radius: 4px 4px 18px 4px; }

.property-gallery--4 .property-gallery-item--4 {
  grid-column: 2 / 4;
  border-radius: 4px 4px 18px 4px;
}

.property-gallery-button {
  position: absolute;
  right: 25px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--property-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(9px);
}

.property-gallery-button span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--property-ink);
  color: #fff;
  font-size: 13px;
}

.property-gallery-empty {
  display: grid;
  min-height: 390px;
  place-items: center;
  align-content: center;
  gap: 16px;
  border-radius: 26px;
  background: linear-gradient(145deg, #e6ebed, #f3f5f5);
  color: var(--property-muted);
}

.property-gallery-empty i { font-size: 50px; }

.property-facts {
  display: grid;
	grid-template-columns: repeat(var(--property-fact-count, 6), minmax(0, 1fr));
	gap: 1px;
  margin-top: 29px;
  margin-bottom: 42px;
  padding: 0;
  border: 1px solid var(--property-line);
  border-radius: 18px;
	background: var(--property-line);
  overflow: hidden;
}

.property-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 106px;
  padding: 19px 22px;
	border: 0;
	background: #fff;
}

.property-fact-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: var(--property-sand);
  color: var(--property-ocean);
  font-size: 21px;
}

.property-fact > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.property-fact small {
  margin-bottom: 3px;
  color: var(--property-muted);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.property-fact strong {
  overflow: hidden;
  color: var(--property-ink);
  font-size: 19px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-fact:first-child strong {
  font-size: 18px;
  line-height: 1.25;
  white-space: normal;
}

.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.92fr) minmax(310px, .88fr);
  align-items: start;
  gap: 34px;
  padding-bottom: 70px;
}

.property-main-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
}

.property-lead-card,
.property-content-card,
.property-contact-card,
.property-trust-card {
  border: 1px solid rgba(10, 39, 66, .08);
  border-radius: 22px;
  background: var(--property-paper);
  box-shadow: 0 12px 35px rgba(10, 39, 66, .055);
}

.property-lead-card {
  position: relative;
  padding: 30px 36px 30px 43px;
  overflow: hidden;
}

.property-lead-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: '';
  background: var(--property-gold);
}

.property-lead-card p {
  margin: 0;
  color: var(--property-ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

.property-content-card { padding: 34px 36px; }

/* Sale sections are intentionally separate cards so each group remains easy to scan. */
.property-detail-panel {
  border-color: rgba(10, 39, 66, .14);
}

.property-detail-panel .middle-subpage-content:last-child,
.property-detail-panel .PropertyVideos:last-child,
.property-detail-panel .property-description-body:last-child {
  margin-bottom: 0 !important;
}

.property-description-body {
  color: var(--property-ink-soft);
  line-height: 1.7;
}

.property-description-body > :last-child { margin-bottom: 0; }

.property-key-fact {
  min-width: 0;
}

.property-key-facts-grid {
  background: transparent;
}

/* Keep the icon and its numeric value visually distinct in key facts. */
.property-key-fact > i {
  display: inline-block;
  margin-inline-end: 0.38rem;
}

.property-rent-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.property-rent-list-item {
  display: flex;
  min-width: 0;
  min-height: 82px;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid var(--property-line);
  border-radius: 15px;
  background: transparent;
  color: var(--property-ink-soft);
}

.property-rent-list-item > i {
  flex: 0 0 28px;
  color: var(--property-ocean);
  font-size: 24px;
  text-align: center;
}

.property-rent-list-item > span {
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.property-rent-list-item small {
  display: block;
  margin-top: 3px;
  color: var(--property-muted);
  font-size: 14px;
  font-weight: 400;
}

.property-rent-pricing .property-rent-list-item { align-items: flex-start; }

.property-key-fact--hoa .fs-4 {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  white-space: nowrap;
}

.property-section-heading,
.property-contact-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
}

.property-section-heading > span,
.property-contact-heading > span {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--property-sand);
  color: var(--property-ocean);
  font-size: 21px;
}

.property-section-heading small,
.property-contact-heading small,
.property-related-heading small {
  display: block;
  margin-bottom: 2px;
  color: var(--property-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.property-section-heading h2,
.property-contact-heading h2,
.property-related-heading h2 {
  margin: 0;
  color: var(--property-ink);
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -.02em;
}

/* The legacy conditional partials live inside the new visual system. */
.property-dynamic-details > h2 {
  margin: 36px 0 18px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid var(--property-line) !important;
  color: var(--property-ink);
  font-size: 25px;
  font-weight: 550;
  letter-spacing: -.018em;
}

.property-dynamic-details > h2:first-child { margin-top: 0 !important; }

.property-dynamic-details > h2 i {
  width: 34px;
  color: var(--property-gold);
  font-size: 21px;
}

.property-dynamic-details > .container,
.property-dynamic-details > .container-fluid {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.property-dynamic-details .middle-subpage-content.bg-light,
.property-dynamic-details .middle-subpage-content .bg-light,
.property-dynamic-details .row.middle-subpage-content.bg-light {
  border: 0 !important;
  border-radius: 15px;
  background: var(--property-details-sand) !important;
}

.property-dynamic-details .middle-subpage-content {
  color: var(--property-ink-soft);
  line-height: 1.65;
}

.property-dynamic-details .middle-subpage-content i { color: var(--property-ocean); }
.property-dynamic-details .middle-subpage-content .fa-check { color: #2e9b75; }

.property-dynamic-details .border-bottom {
  border-color: var(--property-line) !important;
}

.property-dynamic-details img { max-width: 100%; }

.property-dynamic-details .nav-tabs .nav-link.active,
.property-dynamic-details .nav-pills .nav-link.active {
  background: var(--property-ink);
  color: #fff;
}

.property-dynamic-details a { color: var(--property-ocean); }

.property-status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9f6f0;
  color: #247b5f;
  font-size: 14px;
  font-weight: 700;
}

.property-status--closed {
  background: #f4e9e5;
  color: #9b4738;
}

.property-location-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.property-location-facts > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--property-line);
  border-radius: 14px;
}

.property-location-facts i {
  grid-row: 1 / 3;
  color: var(--property-gold);
  font-size: 17px;
}

.property-location-facts span {
  color: var(--property-muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.property-location-facts strong { font-size: 19px; font-weight: 400; line-height: 1.35; }

.property-map {
  height: 390px;
  border-radius: 17px;
  background: var(--property-sand);
  overflow: hidden;
}

.property-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.78) contrast(.97);
}

.property-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 17px 0 0 auto;
  color: var(--property-ocean);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.property-documents { display: grid; gap: 10px; }

.property-documents > a {
  display: grid;
  grid-template-columns: 47px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--property-line);
  border-radius: 14px;
  color: var(--property-ink);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}

.property-documents > a:hover {
  border-color: var(--property-gold);
  transform: translateY(-1px);
}

.property-document-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 12px;
  background: #f7ece9;
  color: #b75343;
  font-size: 20px;
}

.property-documents a > span:nth-child(2) { display: flex; flex-direction: column; }
.property-documents small { color: var(--property-muted); font-size: 13px; }

.property-sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.property-contact-card { padding: 29px; }

.property-contact-card > p {
  margin: -8px 0 23px;
  color: var(--property-muted);
  font-size: 17px;
  line-height: 1.55;
}

.property-form-field { margin-bottom: 15px; }

.property-form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--property-ink-soft);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .035em;
}

.property-form-field input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #d8e0e4;
  border-radius: 11px;
  outline: 0;
  background: #fcfdfd;
  color: var(--property-ink);
  font-size: 17px;
  transition: border-color .2s, box-shadow .2s;
}

.property-form-field input:focus {
  border-color: var(--property-ocean);
  box-shadow: 0 0 0 4px rgba(11, 83, 119, .09);
}

.property-form-field input::placeholder { color: #a5b0b8; }

.property-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.property-submit {
  display: flex;
  width: 100%;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 21px;
  border: 0;
  border-radius: 12px;
  background: var(--property-ink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.property-submit:hover {
  background: var(--property-ocean);
  transform: translateY(-1px);
}

.property-submit:disabled { opacity: .65; transform: none; }

.property-contact-direct {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 22px;
  border: 1px solid rgba(10, 39, 66, .11);
  border-radius: 22px;
  background: var(--property-paper);
  box-shadow: 0 12px 35px rgba(10, 39, 66, .055);
}

.property-contact-direct > span {
  margin-bottom: 5px;
  color: var(--property-ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

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

.property-contact-option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 64px;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid var(--property-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(10, 39, 66, .045);
  color: var(--property-ink);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.property-contact-option:hover {
  border-color: var(--property-ocean);
  box-shadow: 0 9px 20px rgba(10, 39, 66, .09);
  transform: translateY(-1px);
}

.property-contact-option > i:first-child {
  width: 24px;
  color: var(--property-ocean);
  font-size: 20px;
  text-align: center;
}

.property-contact-option--whatsapp > i:first-child { color: #1f9c5b; }

.property-contact-option span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.property-contact-option strong {
  display: block;
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
}

.property-contact-option small {
  color: var(--property-muted);
  font-size: 15px;
  line-height: 1.35;
}

.property-contact-option > i:last-child {
  width: auto;
  color: var(--property-muted);
  font-size: 16px;
}

.property-trust-card {
  display: flex;
  gap: 14px;
  padding: 20px 21px;
}

.property-trust-card > i {
  flex: 0 0 auto;
  color: var(--property-gold);
  font-size: 23px;
}

.property-trust-card strong { display: block; margin-bottom: 5px; font-size: 17px; }

.property-trust-card p {
  margin: 0;
  color: var(--property-muted);
  font-size: 16px;
  line-height: 1.55;
}

.property-related {
  padding: 62px 0 55px;
  background: #fff;
}

.property-related-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.property-related-heading { margin: 0; }
.property-related-heading h2 { font-size: clamp(28px, 3vw, 42px); }
.property-related .home-list-for-sale h6 { display: none; }
.property-related .home-font-items { color: var(--property-ink); }

.property-related-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.property-related-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(10, 39, 66, .18);
  border-radius: 50%;
  background: #fff;
  color: var(--property-ink);
  font-size: 16px;
  transition: border-color .2s, background .2s, color .2s;
}

.property-related-controls button:hover:not(:disabled) {
  border-color: var(--property-ink);
  background: var(--property-ink);
  color: #fff;
}

.property-related-controls button:disabled {
  cursor: default;
  opacity: .3;
}

.property-related-viewport {
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.property-related-track {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  margin: 0;
}

.property-related-item {
  flex: 0 0 25%;
  min-width: 0;
  padding: 0 10px;
  scroll-snap-align: start;
}

.property-related-item:first-child { padding-left: 0; }
.property-related-item:nth-child(4n) { padding-right: 0; }

.property-related-card {
  height: 100%;
  border: 1px solid rgba(10, 39, 66, .14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(10, 39, 66, .045);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.property-related-card:hover {
  border-color: rgba(11, 83, 119, .35);
  box-shadow: 0 13px 30px rgba(10, 39, 66, .1);
  transform: translateY(-2px);
}

.property-related-card > .carousel {
  width: 100%;
  height: clamp(175px, 13vw, 250px);
  margin-bottom: 0 !important;
  background: var(--property-sand);
  overflow: hidden;
}

.property-related-card > .carousel .carousel-inner,
.property-related-card > .carousel .carousel-item { height: 100%; }

.property-related-card > .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.property-related-card-body { padding: 15px 16px 0; }

.property-related .for-sale-top-image {
  top: 17px;
  right: auto;
  left: 17px;
  width: auto;
  margin: 0;
}

.property-related-operation {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #e5c17a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.4;
  text-shadow: none;
  text-transform: uppercase;
}

.property-related-operation::before {
  display: block;
  width: 27px;
  height: 1px;
  background: var(--property-gold);
  content: '';
}

.property-related-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 12px;
  min-height: 128px;
  padding: 15px 0 18px;
  color: var(--property-ink);
  text-decoration: none;
}

.property-related-metric {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  align-items: start;
  min-width: 0;
  gap: 8px;
}

.property-related-metric > i {
  width: 23px;
  padding-top: 2px;
  color: var(--property-ocean);
  font-size: 18px;
  text-align: center;
}

.property-related-metric > span {
  display: block;
  min-width: 0;
}

.property-related-metric small {
  display: block;
  margin-bottom: 2px;
  color: var(--property-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.property-related-metric strong {
  display: block;
  color: var(--property-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.property-related-metrics:hover .property-related-metric strong { color: var(--property-ocean); }

@media (max-width: 1199px) {
  .property-facts { grid-template-columns: repeat(3, 1fr); }
  .property-layout { grid-template-columns: minmax(0, 1.7fr) minmax(300px, .9fr); gap: 24px; }
  .property-content-card { padding: 29px 28px; }
  .property-rent-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-location-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .property-title-row { align-items: flex-start; flex-direction: column; gap: 10px; }
	.property-availability { padding: 0; text-align: left; }
  .property-gallery { grid-template-rows: repeat(2, 190px); }
  .property-gallery--1, .property-gallery--2 { grid-template-rows: 410px; }
  .property-gallery--3 { grid-template-rows: repeat(2, 201px); }
  .property-layout { grid-template-columns: 1fr; }
  .property-sidebar { position: static; display: grid; grid-template-columns: 1.3fr .7fr; }
  .property-contact-direct { grid-column: 1 / -1; }
  .property-trust-card { align-self: start; }
  .property-related-item { flex-basis: 50%; }
  .property-related-item:nth-child(4n) { padding-right: 10px; }
  .property-related-item:nth-child(2n) { padding-right: 0; }
  .property-related-card > .carousel { height: clamp(230px, 31vw, 310px); }
}

@media (max-width: 767px) {
  .property-intro { padding: 16px 0 14px; }
  .property-title-row h1 { font-size: clamp(34px, 11vw, 48px); }
  .property-gallery { display: block; height: 355px; padding: 6px; }
  .property-gallery .property-gallery-item { display: none; }
  .property-gallery .property-gallery-item--1 { display: block; width: 100%; height: 100%; border-radius: 19px; }
  .property-gallery-button { right: 19px; bottom: 18px; }
  .property-facts { grid-template-columns: repeat(2, 1fr); margin-top: 20px; margin-bottom: 28px; }
  .property-fact { min-height: 88px; padding: 13px; border: 0; }
  .property-fact-icon { flex-basis: 38px; width: 38px; height: 38px; font-size: 17px; }
  .property-fact small { font-size: 12px; }
  .property-fact strong { font-size: 16px; }
  .property-fact:first-child strong { font-size: 15px; }
  .property-layout { gap: 20px; padding-bottom: 45px; }
  .property-lead-card { padding: 25px 25px 25px 31px; }
  .property-lead-card p { font-size: 17px; }
  .property-content-card { padding: 25px 20px; border-radius: 18px; }
  .property-rent-list { grid-template-columns: 1fr; gap: 10px; }
  .property-rent-list-item { min-height: 68px; padding: 14px 15px; }
  .property-dynamic-details > h2 { font-size: 22px; }
  .property-dynamic-details .middle-subpage-content { padding-left: 0 !important; }
  .property-location-facts { grid-template-columns: 1fr; }
  .property-map { height: 320px; }
  .property-sidebar { display: flex; }
  .property-contact-card { padding: 25px 21px; }
  .property-contact-direct { padding: 21px; }
  .property-contact-direct > span { font-size: 20px; }
  .property-contact-option { grid-template-columns: 28px minmax(0, 1fr) auto; min-height: 70px; gap: 13px; padding: 14px 16px; }
  .property-contact-option > i:first-child { width: 28px; font-size: 24px; }
  .property-contact-option strong { font-size: 18px; }
  .property-contact-option small { font-size: 16px; }
  .property-contact-option > i:last-child { font-size: 17px; }
  .property-contact-heading small { font-size: 13px; }
  .property-contact-heading h2 { font-size: 30px; }
  .property-contact-card > p { font-size: 18px; line-height: 1.55; }
  .property-form-field label { font-size: 16px; }
  .property-form-field input { height: 58px; font-size: 18px; }
  .property-submit { min-height: 58px; font-size: 18px; }
  .property-trust-card > i { font-size: 28px; }
  .property-trust-card strong { font-size: 18px; }
  .property-trust-card p { font-size: 17px; line-height: 1.55; }
  .property-related-heading-row { align-items: flex-start; margin-bottom: 24px; }
  .property-related-controls button { width: 42px; height: 42px; }
  .property-related-item,
  .property-related-item:nth-child(2n),
  .property-related-item:nth-child(4n) { flex-basis: 100%; padding: 0; }
  .property-related-card > .carousel { height: clamp(220px, 62vw, 300px); }
}

@media (max-width: 420px) {
  .property-gallery { height: 295px; }
  .property-gallery-button { padding: 10px 12px; }
  .property-section-heading > span, .property-contact-heading > span { flex-basis: 44px; width: 44px; height: 44px; }
  .property-section-heading h2, .property-contact-heading h2 { font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  .property-gallery-item img,
  .property-documents > a,
  .property-submit { transition: none; }
}
