:root {
  --brand: #54c5cf;
  --brand-dark: #12717b;
  --brand-deep: #0c5b63;
  --brand-tint: #e9f7f9;
  --brand-tint-2: #d5eff2;
  --ink: #10242c;
  --ink-2: #17323d;
  --body: #4d6068;
  --muted: #5f7078;
  --paper: #ffffff;
  --paper-2: #f6fafb;
  --line: #e3ecef;
  --line-2: #d3e1e5;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-card: 0 1px 3px rgba(16, 36, 44, 0.05), 0 8px 24px rgba(16, 36, 44, 0.05);
  --shadow-hover: 0 4px 10px rgba(16, 36, 44, 0.06), 0 20px 44px rgba(16, 36, 44, 0.12);
  --shadow-img: 0 18px 44px rgba(16, 36, 44, 0.14);
  --sec-y: clamp(3.2rem, 6vw, 5rem);
  --nav-h: 83px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--body);
  background: var(--paper);
  overflow-x: clip;
}

body h1,
body h2,
body h3,
body h4 {
  font-family: 'Lora', Georgia, serif;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
}

body h1 {
  font-size: clamp(2rem, 4vw, 2.95rem);
  line-height: 1.08;
}

body h2 {
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
}

body h3 {
  font-size: 1.3rem;
}

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

a {
  color: var(--brand-dark);
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #ffffff;
  padding: 11px 18px;
  z-index: 300;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 26px;
  padding-right: 26px;
}

.topbar {
  background: var(--brand-tint);
  border-bottom: 1px solid var(--brand-tint-2);
  color: var(--brand-deep);
  font-size: 0.83rem;
}

.topbar-inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 26px;
  padding-right: 26px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-tag {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  gap: 8px;
  color: var(--brand-deep);
  font-weight: 500;
  white-space: nowrap;
}

.topbar-link svg {
  flex: 0 0 auto;
  opacity: 0.75;
}

.topbar-link:hover {
  color: var(--ink);
}

.topbar-link--alert {
  font-weight: 600;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 130;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav.scrolled {
  box-shadow: 0 4px 22px rgba(16, 36, 44, 0.09);
}

.nav-inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 26px;
  padding-right: 26px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-logo {
  flex: 0 0 auto;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}

.nav-links li a {
  display: inline-block;
  white-space: nowrap;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.93rem;
  border-radius: var(--radius);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links li a:hover {
  color: var(--brand-dark);
  background: var(--brand-tint);
}

.nav-links li a[aria-current="page"] {
  color: var(--brand-dark);
  background: var(--brand-tint);
  font-weight: 600;
}

.nav-links li.has-sub {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-links li.has-sub > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-caret {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.nav-sub {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 254px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-links li.has-sub:hover .nav-sub,
.nav-links li.has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-sub li a {
  display: block;
  white-space: nowrap;
  padding: 9px 12px;
}

.nav-sub strong {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-sub span {
  display: block;
  margin-top: 1px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

.nav-sub li a:hover strong {
  color: var(--brand-dark);
}

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

.nav-divider {
  display: block;
  width: 1px;
  height: 26px;
  background: var(--line-2);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-phone svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.nav-phone:hover {
  color: var(--brand-dark);
}

.btn-sm {
  padding: 12px 20px;
  font-size: 0.9rem;
}

.nav-icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--brand-tint);
  color: var(--brand-dark);
}

.nav-mobile-head,
.nav-mobile-cta,
.nav-group-label {
  display: none;
}

.nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
}

.nav-close:hover {
  background: var(--brand-dark);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--paper-2);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle:hover {
  background: var(--brand-tint);
  border-color: var(--brand);
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  flex: 0 0 auto;
}

.nav-toggle-bars span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-icon-btn {
  border: 1px solid var(--line-2);
}

.nav-toggle.active .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(16, 36, 44, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 120;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--ink);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--ink-2);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(16, 36, 44, 0.22);
}

.btn-brand {
  background: var(--brand-dark);
  color: #ffffff;
}

.btn-brand:hover {
  background: var(--brand-deep);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(12, 91, 99, 0.28);
}

.btn-light {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line-2);
}

.btn-light:hover {
  background: #e7eef0;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(16, 36, 44, 0.03);
  color: var(--ink);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.arrow-link svg {
  transition: transform 0.2s ease;
}

.arrow-link:hover {
  color: var(--brand-deep);
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(480px, 72vh, 680px);
  overflow: clip;
}

.hero--compact {
  min-height: clamp(400px, 54vh, 540px);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(16, 36, 44, 0.5) 0%, rgba(16, 36, 44, 0.28) 30%, rgba(16, 36, 44, 0.42) 58%, rgba(16, 36, 44, 0.8) 80%, rgba(16, 36, 44, 0.93) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.hero--compact .hero-content {
  padding-bottom: clamp(5.5rem, 8vw, 7rem);
}

.hero-content h1 {
  color: #ffffff;
  max-width: 20ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.34);
}

.hero-text {
  font-size: 1.1rem;
  max-width: 52ch;
  margin-top: 20px;
}

.hero-content .hero-text {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-content .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-content .btn-ghost:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-deep);
  border-radius: 100px;
  padding: 7px 17px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.chooser-wrap {
  position: relative;
  z-index: 3;
  margin-top: -64px;
}

.chooser {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: clamp(1.4rem, 2.8vw, 1.9rem) clamp(1.5rem, 3vw, 2.1rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 2.6vw, 2rem);
  align-items: center;
}

.chooser-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
  flex-wrap: wrap;
}

.chooser-label h2 {
  font-size: 1.3rem;
}

.chooser-label p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

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

.chooser-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 124px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.chooser-opt svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.chooser-opt:hover {
  border-color: var(--brand-dark);
  background: var(--brand-tint);
  color: var(--brand-deep);
}

.factstrip-wrap {
  position: relative;
  z-index: 3;
  margin-top: -56px;
}

.factstrip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: clamp(1.4rem, 2.8vw, 2rem) clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2.2rem);
}

.factstrip .facts-row {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.section {
  padding-top: var(--sec-y);
  padding-bottom: var(--sec-y);
}

.section--gray {
  background: var(--paper-2);
}

.section--tint {
  background: var(--brand-tint);
  padding-top: clamp(2.4rem, 4vw, 3.4rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.4rem);
}

.section--tight {
  padding-bottom: clamp(2rem, 3.5vw, 2.8rem);
}

.section-head {
  max-width: 700px;
  margin-bottom: clamp(2.6rem, 5vw, 3.8rem);
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.section-head--center .hero-buttons,
.section-head--center .cta-band-buttons {
  justify-content: center;
}

.section--tint .section-head--center {
  margin-bottom: 0;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.4rem, 4.5vw, 3.4rem);
}

.section-head-row .section-head {
  margin-bottom: 0;
}

.count-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brand-tint);
  color: var(--brand-deep);
  border-radius: 100px;
  padding: 8px 17px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pagehead {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding-top: clamp(2.4rem, 5vw, 3.2rem);
  padding-bottom: clamp(2.6rem, 5vw, 3.4rem);
}

.pagehead h1 {
  max-width: 820px;
}

.pagehead-lead a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: underline;
}

.pagehead-lead {
  font-size: 1.06rem;
  max-width: 640px;
  margin-top: 16px;
}

.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.crumbs a {
  color: var(--brand-dark);
  font-weight: 500;
}

.crumbs a:hover {
  text-decoration: underline;
}

.crumbs span {
  color: var(--muted);
}

.crumbs-sep {
  color: var(--line-2);
}

.hero-content .crumbs a {
  color: rgba(255, 255, 255, 0.94);
}

.hero-content .crumbs span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-content .crumbs-sep {
  color: rgba(255, 255, 255, 0.45);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

h2 + p,
h3 + p {
  margin-top: 18px;
}

.contact-grid > div p + p,
.split-text p + p,
.intro-text p + p {
  margin-top: 16px;
}

.intro-text h2 + p {
  margin-top: 20px;
}

.intro-text p + p {
  margin-top: 18px;
}

.intro-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-img);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--ink);
  font-weight: 500;
}

.check-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-dark);
  flex: 0 0 auto;
  margin-top: 2px;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.prop-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand);
}

.prop-card--wide {
  grid-column: span 2;
}

.prop-card-media {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.prop-card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prop-card--wide .prop-card-media img {
  aspect-ratio: 16 / 7.6;
}

.prop-card:hover .prop-card-media img {
  transform: scale(1.045);
}

.prop-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-deep);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prop-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 26px 28px 28px;
}

.prop-card-body h3 {
  font-size: 1.4rem;
}

.prop-addr {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

.prop-addr svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.prop-card-body p {
  margin-top: 15px;
  font-size: 0.97rem;
}

.prop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.prop-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.prop-meta svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.prop-card-body .arrow-link {
  margin-top: auto;
  padding-top: 22px;
}

.tenant-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.tenant-pills li {
  background: var(--brand-tint);
  color: var(--brand-deep);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.87rem;
  font-weight: 600;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

.facts-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.facts-row dt {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.facts-row dd {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.08rem;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.facts-row dd a {
  color: var(--brand-dark);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.split-text h2 + p {
  margin-top: 20px;
}

.split-text p + p {
  margin-top: 18px;
}

.split-text h3 {
  margin-top: 30px;
  font-size: 1.1rem;
}

.split-media img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-img);
}

.object {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.object-head {
  padding: clamp(1.6rem, 3vw, 2.3rem) clamp(1.6rem, 3vw, 2.6rem) clamp(1.4rem, 2.6vw, 1.9rem);
}

.object-head h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  max-width: 30ch;
}

.object-head h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.object-head p {
  margin-top: 14px;
  font-size: 0.99rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brand-tint);
  color: var(--brand-deep);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.object-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.object-photo {
  background: var(--paper-2);
}

.object-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.object-plan {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border-left: 1px solid var(--line);
  padding: clamp(1.1rem, 2.2vw, 1.7rem);
}

.object-plan-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.object-plan-label svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
}



.object-body {
  padding: clamp(1.6rem, 3vw, 2.3rem) clamp(1.6rem, 3vw, 2.6rem) clamp(1.8rem, 3vw, 2.5rem);
}

.object-body .facts {
  margin-top: 0;
  grid-template-columns: repeat(4, 1fr);
}

.object-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

.object-list {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.object-jump {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.object-jump a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-deep);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.object-jump a:hover {
  background: var(--brand-tint);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.object-jump svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.object-features {
  margin-top: clamp(1.5rem, 2.8vw, 2rem);
}

.object-subhead {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.object-features .check-list {
  margin-top: 16px;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px clamp(1.5rem, 4vw, 3rem);
}

.object-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: clamp(1.5rem, 2.8vw, 2rem);
  padding: 15px 19px;
  background: var(--brand-tint);
  border-radius: var(--radius);
  color: var(--brand-deep);
  font-size: 0.95rem;
  line-height: 1.6;
}

.object-note svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
  margin-top: 4px;
}

.object-note a {
  color: var(--brand-deep);
  font-weight: 700;
}

.facts-row--price dd {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.unit-grid + .object {
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
}

.unit-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand);
}

.unit-card .badge {
  align-self: flex-start;
}

.unit-card h3 {
  font-size: 1.3rem;
}

.unit-card p {
  margin-top: 14px;
  font-size: 0.96rem;
}

.unit-card .prop-meta {
  margin-top: auto;
}

.unit-card .arrow-link {
  padding-top: 20px;
}

.unit-price {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.imgband {
  position: relative;
  height: clamp(280px, 40vw, 480px);
  overflow: clip;
}

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

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.place-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.place-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.place-card figcaption {
  padding: 18px 20px 20px;
}

.place-card figcaption strong {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.06rem;
  color: var(--ink);
}

.place-card figcaption span {
  display: block;
  margin-top: 5px;
  font-size: 0.92rem;
  color: var(--body);
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.person {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.person:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-card);
}

.person-name {
  font-size: 1.24rem;
}

.person-role {
  display: block;
  margin-top: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.person-contact {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.person-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.person-contact svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.person-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 0.95rem;
  color: var(--brand-dark);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.person-contact a:hover {
  color: var(--brand-dark);
}

.alert-panel {
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-top: 30px;
}

.alert-panel h3 {
  font-size: 1.2rem;
}

.alert-panel p {
  margin-top: 12px;
  font-size: 0.97rem;
}

.alert-numbers {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.alert-numbers li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-numbers svg {
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.alert-numbers a {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
}

.alert-numbers a:hover {
  color: var(--brand-dark);
}

.alert-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-info-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--brand-tint);
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.contact-info-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-info-text strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.contact-info-text span {
  color: var(--body);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.contact-info-text a {
  color: var(--brand-dark);
  font-size: 0.98rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-info-text a:hover {
  color: var(--brand-dark);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

.map-tall iframe {
  height: 420px;
}

.infocard {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.infocard-body {
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.infocard-body h3 {
  margin-top: 26px;
  font-size: 1.05rem;
}

.infocard-map {
  border-left: 1px solid var(--line);
  background: var(--paper-2);
  min-height: 340px;
}

.infocard-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
}

.contact-aside-img {
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact-aside-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
}

.form-panel > p {
  margin-top: 10px;
  margin-bottom: 24px;
  font-size: 0.96rem;
}

#contact-form {
  max-width: 100%;
  min-width: 0;
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group .form-label {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.form-group label {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper-2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7d85;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--paper);
  border-color: var(--brand-dark);
  box-shadow: 0 0 0 3px rgba(18, 113, 123, 0.32);
}

.choice-set {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 12px 17px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.choice:hover {
  border-color: var(--brand-dark);
  background: var(--brand-tint);
}

.choice input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--body);
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.btn-submit {
  width: 100%;
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ms-recaptcha-notice {
  text-align: center;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}

.city-grid figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
}

.city-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.plan-btn {
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.plan-btn img {
  max-height: 320px;
  max-width: 100%;
  width: auto;
}

.object-plan-frame {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: rgba(10, 22, 28, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 300;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  width: auto;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 14px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.26);
}

.footer {
  background: var(--ink);
  color: #a7bcc4;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  padding-bottom: clamp(2.6rem, 5vw, 3.6rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-cta h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.9vw, 2.3rem);
  max-width: 26ch;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 12px;
  max-width: 52ch;
}

.footer-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-cta .btn-light:hover {
  background: #dde7ea;
}

.footer-cta .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-cta .btn-ghost:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(2.6rem, 5vw, 3.6rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.2rem);
}

.footer-brand img {
  height: 52px;
  width: auto;
  border-radius: var(--radius);
}

.footer-brand p {
  font-size: 0.94rem;
  margin-top: 20px;
  max-width: 36ch;
}

.footer-bignum {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.footer-bignum .footer-ico {
  color: var(--brand);
}

.footer-bignum-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.footer-bignum:hover .footer-bignum-text {
  color: var(--brand);
}

.footer-col h3 {
  color: #ffffff;
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 2px;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #b3c6cd;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.footer-col span {
  color: #b3c6cd;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-icon-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.footer-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: #6f868f;
  flex: 0 0 auto;
}

.footer-icon-list {
  display: grid;
  gap: 6px;
}

.footer-companies {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f959d;
  font-size: 0.86rem;
  line-height: 1.75;
}

.footer-num-label {
  display: block;
  width: 100%;
  margin-top: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #82989f;
}

.footer-bottom-addr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-addr svg {
  color: var(--brand);
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 24px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.86rem;
  color: #7f959d;
}

.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (min-width: 1025px) {
  .fade-in-left {
    transform: translateX(-28px);
  }

  .fade-in-right {
    transform: translateX(28px);
  }
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1240px) {
  .nav-links li a {
    padding: 10px 9px;
    font-size: 0.89rem;
  }

  .nav-phone {
    display: none;
  }

  .nav-divider {
    display: none;
  }
}

@media (max-width: 1100px) {
  .prop-card-body {
    padding: 22px 22px 24px;
  }

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

  .object-body .facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .topbar {
    font-size: 0.78rem;
  }

  .topbar-inner {
    min-height: 38px;
    gap: 12px;
  }

  .topbar-links {
    gap: 16px;
    width: 100%;
    justify-content: space-between;
  }

  .nav-inner {
    height: 66px;
    gap: 14px;
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-icon-btn {
    display: inline-flex;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    overflow-y: auto;
    box-shadow: none;
    padding-bottom: 0;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
    z-index: 140;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-mobile-head img {
    height: 30px;
    width: auto;
    max-width: 60%;
    border-radius: var(--radius);
  }

  .nav-links > li {
    flex: 0 0 auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .nav-links li a:hover {
    background: none;
    color: var(--brand-dark);
  }

  .nav-links li a[aria-current="page"] {
    background: none;
    color: var(--brand-dark);
  }

  .nav-group-label {
    display: block;
    padding-top: 15px;
    padding-bottom: 4px;
  }

  .nav-group-label span {
    display: block;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .nav-caret {
    display: none;
  }

  .nav-links li.has-sub {
    display: block;
    align-self: auto;
  }

  .nav-links li.has-sub > a {
    display: none;
  }

  .nav-sub {
    position: static;
    min-width: 0;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav-sub li {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-sub li a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-sub strong {
    font-weight: 600;
  }

  .nav-sub strong {
    font-size: 0.93rem;
  }

  .nav-sub span {
    font-size: 0.79rem;
    margin-top: 1px;
  }

  .nav-mobile-cta {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    padding-bottom: 22px;
    border-top: 1px solid var(--line);
    background: var(--brand-tint);
    position: sticky;
    bottom: 0;
  }

  .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.9rem;
    border-bottom: none;
  }

  .nav-mobile-cta a.btn-brand {
    color: #ffffff;
  }

  .nav-mobile-cta a.btn-ghost {
    color: var(--ink);
  }

  .nav-mobile-cta a.nav-mobile-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 2px 0 0;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--brand-deep);
    border-bottom: none;
  }

  .intro-grid,
  .split,
  .contact-grid,
  .chooser,
  .object-media,
  .infocard {
    grid-template-columns: 1fr;
  }

  .infocard-map {
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: 260px;
  }

  .infocard-map iframe {
    min-height: 260px;
  }

  .chooser {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .chooser-controls {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }

  .chooser-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .chooser-wrap {
    margin-top: -46px;
  }

  .chooser-opt svg {
    display: none;
  }

  .chooser-opt {
    min-width: 0;
    padding: 13px 6px;
    font-size: 0.88rem;
    gap: 0;
    white-space: nowrap;
  }

  .chooser-controls .btn {
    width: 100%;
  }

  .factstrip {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .factstrip-wrap {
    margin-top: 18px;
  }

  .object-plan {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .object-photo img {
    aspect-ratio: 16 / 9;
  }

  .intro-media,
  .split-media,
    .prop-grid,
  .place-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-media,
  .split-media {
    order: 2;
  }

  .prop-card--wide {
    grid-column: span 2;
  }

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

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

  .map-tall iframe {
    height: 320px;
  }

  .section-head--center .hero-buttons,
.section-head--center .cta-band-buttons {
  justify-content: center;
}

.section--tint .section-head--center {
  margin-bottom: 0;
}

.section-head-row {
    align-items: flex-start;
  }

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

@media (max-width: 820px) {
  .topbar-tag {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-buttons .btn {
    flex: 1 1 100%;
  }

  .prop-grid,
  .place-grid,
  .city-grid,
  .unit-grid {
    grid-template-columns: 1fr;
  }

  .object-features .check-list {
    grid-template-columns: 1fr;
  }

  .prop-card--wide {
    grid-column: span 1;
  }

  .prop-card--wide .prop-card-media img {
    aspect-ratio: 16 / 10;
  }

  .facts,
  .object-body .facts {
    grid-template-columns: 1fr;
  }

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

  .factstrip .facts-row {
    padding-top: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line);
  }

  .factstrip .facts-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

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

  .footer-cta-actions .btn {
    flex: 1 1 100%;
  }

  .contact-grid > div {
    min-width: 0;
    max-width: 100%;
  }

  .object-actions .btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 380px) {
  .chooser {
    padding: 1.1rem 0.9rem;
  }

  .chooser-options {
    gap: 6px;
  }

  .chooser-opt {
    padding: 12px 2px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .prop-card,
  .prop-card-media img,
  .arrow-link svg,
  .nav-links {
    transition: none;
  }
}
