:root {
  color-scheme: dark;
  --ink: #f4efe7;
  --muted: #938979;
  --paper: #070708;
  --panel: #101012;
  --panel-2: #151416;
  --line: #2b251f;
  --line-strong: #4a3b2b;
  --green: #c9a96e;
  --green-2: #d9bd82;
  --red: #ed1c24;
  --gold: #c9a96e;
  --blue: #254766;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.44);
  --radius: 0;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-family: var(--font-sans);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 7, 8, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: .04em;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name strong {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.25;
}

.brand-name span {
  color: var(--gold);
  font-size: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-select,
.input,
.select,
.textarea {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 7, 8, 0.76);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0 12px;
  outline: none;
}

.input:focus,
.select:focus,
.textarea:focus,
.lang-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 59, 0.18);
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.btn:active { transform: translateY(1px); }

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

.btn-primary:hover { background: #7f1e23; }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--line-strong);
}

.btn-ghost:hover { border-color: var(--green); }

.mobile-toggle { display: none; }

.mobile-toggle span {
  width: 12px;
  height: 1px;
  background: currentColor;
  display: block;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  background: #070708;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(7,7,8,.94), rgba(7,7,8,.26) 52%, rgba(7,7,8,.62)),
    radial-gradient(circle at 50% 46%, rgba(201,169,110,.08), transparent 22%);
}

.hero-content {
  min-height: calc(100vh - 72px);
  padding: 78px 0 34px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  align-content: center;
}

.eyebrow {
  color: #e0c078;
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero h1,
.page-title h1,
.property-title h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 8vw, 86px);
}

.hero-logo {
  width: min(330px, 58vw);
  min-height: 178px;
  display: grid;
  place-items: center;
  color: rgba(201, 169, 110, 0.82);
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 18px 55px rgba(0,0,0,.45);
}

.hero-logo img {
  width: 100%;
  height: auto;
  opacity: .46;
}

.hero-lead {
  max-width: 620px;
  color: rgba(244,239,231,.64);
  font-size: 16px;
  line-height: 1.625;
  margin: 0;
}

.hero-search {
  width: min(1060px, 100%);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 0;
  background: rgba(7, 7, 8, .78);
  padding: 0;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.hero-search .input,
.hero-search .select {
  width: 100%;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  min-height: 54px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-search .btn {
  border-radius: 0;
  min-height: 54px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-mini-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-mini-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
}

.hero-mini-stats em {
  display: block;
  font-style: normal;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  background: var(--panel);
  padding: 26px;
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--gold);
  line-height: 1.2;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section {
  padding: 76px 0;
}

.section-head,
.page-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.section-head p,
.page-title p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1.7fr repeat(6, minmax(110px, 1fr));
  gap: 0;
  margin-bottom: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 7, 8, .62);
  align-items: center;
}

.catalog-toolbar .input,
.catalog-toolbar .select {
  width: 100%;
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--line);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.catalog-toolbar > *:last-child { border-right: 0; }

.city-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.city-chip {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.city-chip.is-active,
.city-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.results-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 18px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  cursor: pointer;
}

.chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  background: var(--panel);
  min-width: 0;
}

.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd5c6;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.property-card:hover .card-media img { transform: scale(1.04); }

.badge-row {
  position: absolute;
  inset: 12px 12px auto;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.badge {
  background: rgba(7,7,8,.72);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.card-body {
  padding: 20px;
  display: grid;
  gap: 6px;
  flex: 1;
}

.location-line {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.card-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.375;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.price {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
  line-height: 1.333;
  letter-spacing: -0.025em;
}

.id {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 10px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 26px;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: start;
}

.split > * {
  min-width: 0;
  max-width: 100%;
}

.about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--panel);
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-block {
  display: grid;
  gap: 18px;
}

.text-block h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.text-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.625;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

.advisory-card {
  background: var(--panel-2);
  color: white;
  padding: 34px;
  border-radius: var(--radius);
}

.advisory-card p { color: rgba(255,255,255,.78); }

.site-footer {
  background: #070708;
  color: rgba(255,255,255,.78);
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-sm {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: .1em;
  line-height: 1;
}

.footer-sub,
.footer-links h4 {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.625;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 42px;
}

.footer-links h4 {
  margin: 0 0 12px;
  color: var(--gold);
}

.footer-links a,
.footer-bottom a,
.footer-bottom p {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.333;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 10px;
  letter-spacing: .025em;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.property-hero {
  padding: 38px 0 20px;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.property-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
}

.property-title h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
}

.property-title .price {
  font-size: clamp(30px, 4vw, 48px);
  white-space: nowrap;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, .9fr);
  gap: 10px;
  margin: 24px 0 46px;
  align-items: stretch;
  background: rgba(201, 169, 110, .08);
  border: 1px solid rgba(201, 169, 110, .16);
  padding: 10px;
}

.gallery-main-wrap {
  position: relative;
  min-width: 0;
}

.gallery-main,
.gallery-side button {
  border: 0;
  padding: 0;
  background: #111113;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-main {
  aspect-ratio: 16 / 10.4;
  position: relative;
  width: 100%;
  min-height: clamp(440px, 54vw, 680px);
}
.gallery-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  pointer-events: none;
}
.gallery-main img,
.gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, opacity .25s ease;
}

.gallery-main:hover img,
.gallery-side button:hover img {
  transform: scale(1.025);
}

.gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 100%;
}

.gallery-side button {
  aspect-ratio: auto;
  min-height: 0;
  position: relative;
}

.gallery-side button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.gallery-count {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(18, 44, 39, .66);
  color: white;
  font-size: 24px;
  font-family: var(--font-serif);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,169,110,.34);
  background: rgba(7,7,8,.72);
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.gallery-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #09090b;
}

.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }

.gallery-indicator {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  padding: 7px 12px;
  font-size: 10px;
  letter-spacing: .2em;
}

.gallery-thumbs {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 0;
  scrollbar-width: thin;
}

.gallery-thumbs button {
  width: 104px;
  height: 72px;
  flex: 0 0 auto;
  border: 1px solid rgba(201,169,110,.16);
  opacity: .5;
  padding: 0;
  background: var(--panel);
  overflow: hidden;
  cursor: pointer;
  transition: opacity .18s ease, border-color .18s ease;
}

.gallery-thumbs button.is-active {
  opacity: 1;
  border-color: var(--gold);
}

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

.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec {
  background: var(--panel);
  padding: 18px;
}

.spec span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.spec strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.025em;
}

.description {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.description h2,
.features h2,
.form-card h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.description p { margin: 0; color: #454a46; font-size: 14px; line-height: 1.625; }
.description p { color: rgba(244,239,231,.72); }

.features {
  margin-top: 34px;
}

.feature-grid {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-grid li {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: var(--radius);
}

.form-card {
  position: sticky;
  top: 96px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 14px;
}

.form-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.textarea {
  width: 100%;
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.82);
  padding: 18px;
}

.modal.is-open { display: flex; }

.modal img {
  max-height: 88vh;
  width: auto;
  border-radius: var(--radius);
}

.modal button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.empty {
  padding: 70px 20px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    padding: 18px 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .mobile-toggle {
    width: 48px;
    padding: 0;
    flex-direction: column;
  }
  .nav-actions .btn-primary { display: none; }
  .hero-search,
  .catalog-toolbar,
  .split,
  .property-layout,
  .property-title,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .gallery-side { display: none; }
  .gallery-thumbs { display: flex; }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 22px);
    max-width: 1180px;
  }
  .brand { min-width: 0; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name strong { font-size: 18px; }
  .brand-name span { display: none; }
  .nav { min-height: 72px; gap: 12px; }
  .nav-actions { gap: 0; }
  .hero { min-height: calc(100vh - 72px); }
  .hero-content {
    min-height: calc(100vh - 72px);
    padding: 52px 0 22px;
    gap: 14px;
  }
  .hero-logo {
    width: min(248px, 62vw);
    min-height: 132px;
  }
  .hero-media img { object-position: center center; }
  .hero-logo img { opacity: .34; }
  .hero-lead { font-size: 16px; }
  .hero-search .input,
  .hero-search .select,
  .hero-search .btn {
    min-height: 51px;
  }
  .hero-mini-stats {
    width: 100%;
    gap: 0;
    justify-content: space-between;
    font-size: 9px;
    letter-spacing: .12em;
  }
  .hero-mini-stats span {
    flex: 1;
    padding: 0 4px;
  }
  .text-block,
  .text-block > *,
  .check-list,
  .check-list li {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .grid,
  .stats-band,
  .spec-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 52px 0; }
  .section-head,
  .page-title {
    display: block;
  }
  .property-title .price { white-space: normal; }
}
