@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Philosopher";
  src: url("fonts/philosopher-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Philosopher";
  src: url("fonts/philosopher-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #13233b;
  --navy-deep: #0b1728;
  --cream: #e9e3cc;
  --gold: #bea575;
  --gold-hover: #cbb791;
  --gold-active: #b79f70;
  --green: #0b392c;
  --gray: #e7e9eb;
  --paper: #f7f7f4;
  --ink: #13233b;
  --muted: rgba(19, 35, 59, .68);
  --line: rgba(19, 35, 59, .12);
  --side: max(18px, calc((100vw - 1740px) / 2));
  --font-body: "Gilroy", "Segoe UI", Arial, sans-serif;
  --font-display: "Philosopher", Georgia, "Times New Roman", serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-wrap {
  overflow: clip;
}

.site-header {
  min-height: 111px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 var(--side);
  background: var(--navy);
  color: var(--cream);
  position: relative;
  z-index: 20;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: flex-start;
  color: var(--cream);
}

.brand-logo {
  width: 240px;
  height: 79px;
  gap: 13px;
}

.brand-emblem {
  width: 54px;
  height: 79px;
  flex: 0 0 54px;
  object-fit: contain;
}

.brand-lockup {
  display: grid;
  gap: 5px;
  padding-top: 7px;
}

.brand-wordmark {
  width: 173px;
  height: 52px;
  object-fit: contain;
}

.brand-tagline {
  width: 120px;
  height: 7px;
  object-fit: contain;
}

.header-nav,
.header-actions,
.chip-row,
.meta-row,
.pagination,
.tabs {
  display: flex;
  align-items: center;
}

.header-nav {
  flex: 1;
  justify-content: flex-start;
  gap: 0;
  margin-left: 36px;
}

.header-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .94);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.header-nav a.has-chevron::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .85;
}

.chip,
.tab-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(233, 227, 204, .08);
  border-radius: 999px;
  background: rgba(233, 227, 204, .10);
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  white-space: nowrap;
}

.header-nav a:hover {
  background: rgba(233, 227, 204, .08);
  border-color: rgba(233, 227, 204, .08);
}

.chip:hover,
.tab-button:hover {
  background: rgba(190, 165, 117, .32);
}

.header-actions {
  gap: 17px;
  margin-left: auto;
}

.icon-link,
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #3b485c;
  color: var(--cream);
  font-size: 0;
}

.icon-link img,
.favorite-link img,
.social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.favorite-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.favorite-link img {
  width: 46px;
  height: 46px;
  padding: 12px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 46px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
}

.phone-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #3b485c;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--cream);
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  bottom: 17px;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 560px;
  padding: 92px var(--side) 86px;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.hero::before,
.dark-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 100% 100%, transparent 0 80px, rgba(233, 227, 204, .22) 81px 83px, transparent 84px),
    radial-gradient(circle at 0 100%, transparent 0 80px, rgba(233, 227, 204, .12) 81px 83px, transparent 84px);
  background-size: 240px 240px;
  background-position: 40px 18px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1740px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 52px;
  color: rgba(233, 227, 204, .56);
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(233, 227, 204, .82);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 790px) minmax(440px, 760px);
  justify-content: space-between;
  gap: 70px;
  align-items: center;
}

.hero-grid-solo {
  grid-template-columns: minmax(0, 980px);
}

.hero-copy h1,
.section-title,
.feature-copy h2,
.article-body h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .84;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: 88px;
}

.hero-copy p {
  max-width: 680px;
  margin: 38px 0 0;
  color: rgba(233, 227, 204, .78);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.12;
}

.hero-card {
  min-height: 390px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  position: relative;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.hero-card .floating-price {
  position: absolute;
  right: 26px;
  bottom: 26px;
  min-width: 238px;
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
}

.floating-price span {
  color: rgba(19, 35, 59, .58);
  font-size: 13px;
}

.floating-price strong {
  font-size: 29px;
}

.section {
  padding: 96px var(--side);
  background: var(--paper);
}

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

.section.dark {
  background: var(--navy);
  color: var(--cream);
}

.section-inner {
  max-width: 1740px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(360px, 760px) minmax(300px, 620px);
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}

.section-title {
  font-size: 64px;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.4;
}

.dark .section-lead {
  color: rgba(233, 227, 204, .72);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.blog-list-section {
  padding-top: 64px;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(420px, 780px) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 34px;
  padding: 20px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 42px rgba(19, 35, 59, .07);
}

.blog-featured-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-featured-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.blog-featured-media .badge {
  position: absolute;
  left: 18px;
  top: 18px;
}

.blog-featured-copy {
  padding-right: 36px;
}

.blog-featured-copy > span,
.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(190, 165, 117, .18);
  color: #8f6c27;
  font-size: 12px;
  font-weight: 700;
}

.blog-featured-copy h2 {
  max-width: 680px;
  margin: 22px 0 22px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: .9;
letter-spacing: 0;
}

.blog-featured-copy p {
  max-width: 620px;
  color: rgba(19, 35, 59, .70);
  font-size: 20px;
  line-height: 1.38;
}

.blog-featured-copy .primary-button {
  margin-top: 14px;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 40px rgba(19, 35, 59, .07);
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(19, 35, 59, .48);
  font-size: 12px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  outline: none;
  background: #eef0f1;
  color: var(--navy);
  padding: 0 20px;
  min-height: 56px;
  font-weight: 500;
}

.field textarea {
  min-height: 128px;
  border-radius: 20px;
  padding-top: 17px;
  resize: vertical;
}

.primary-button,
.ghost-button,
.dark-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  text-align: center;
}

.primary-button {
  background: var(--gold);
  color: white;
}

.dark-button {
  background: var(--navy);
  color: white;
}

.ghost-button {
  background: white;
  color: var(--navy);
  box-shadow: 0 14px 36px rgba(19, 35, 59, .08);
}

.grid-3,
.grid-2,
.stat-grid,
.team-grid,
.plan-list,
.screen-list {
  display: grid;
  gap: 20px;
}

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

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

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

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

.property-card,
.village-card,
.info-card,
.article-card,
.team-card,
.screen-card,
.contact-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(19, 35, 59, .07);
}

.property-card {
  min-height: 520px;
}

.property-card,
.village-card,
.article-card {
  display: flex;
  flex-direction: column;
}

.villages-filter-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.villages-filter {
  align-items: end;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(19, 35, 59, .08);
}

.villages-list-section {
  padding-top: 86px;
}

.village-grid {
  align-items: stretch;
}

.village-card {
  min-height: 520px;
}

.village-card .card-body {
  padding: 26px 25px 25px;
}

.village-card .card-title {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: .92;
letter-spacing: 0;
}

.property-media,
.village-media,
.article-media {
  position: relative;
  height: 258px;
  overflow: hidden;
  background: #dce1df;
}

.property-media {
  height: 278px;
}

.village-media {
  height: 300px;
}

.property-media img,
.village-media img,
.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.property-media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.property-card:hover img,
.village-card:hover img,
.article-card:hover img {
  transform: scale(1.04);
}

.village-intro-grid {
  display: grid;
  grid-template-columns: minmax(420px, 720px) minmax(520px, 860px);
  gap: 80px;
  align-items: center;
}

.village-gallery-mini {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 235px);
  gap: 18px;
}

.village-gallery-mini img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.village-gallery-mini img:first-child {
  grid-row: 1 / span 2;
}

.villages-hero,
.village-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 70px var(--side) 78px;
  background: var(--navy);
  color: var(--cream);
}

.village-detail-hero {
  min-height: 690px;
}

.villages-hero-inner,
.village-detail-hero-inner {
  position: relative;
  z-index: 1;
}

.villages-hero .breadcrumbs,
.village-detail-hero .breadcrumbs {
  margin-bottom: 54px;
  color: rgba(233, 227, 204, .50);
}

.villages-hero-grid,
.village-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(460px, 820px) minmax(480px, 760px);
  gap: 72px;
  align-items: center;
  justify-content: space-between;
}

.villages-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(190, 165, 117, .18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.villages-hero-copy h1,
.village-detail-copy h1,
.village-overview-copy h2,
.village-map-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.villages-hero-copy h1,
.village-detail-copy h1 {
  font-size: 88px;
  line-height: .84;
}

.villages-hero-copy p,
.village-detail-copy p {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(233, 227, 204, .78);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.13;
}

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

.villages-hero-media,
.village-detail-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.villages-hero-media img,
.village-detail-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.villages-hero-card,
.village-detail-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(247, 247, 244, .92);
  color: var(--navy);
}

.villages-hero-card span,
.village-detail-card span,
.villages-hero-card small,
.village-detail-card small {
  color: rgba(19, 35, 59, .58);
  font-size: 13px;
}

.villages-hero-card strong,
.village-detail-card strong {
  font-size: 27px;
  line-height: 1;
}

.villages-search-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-top: 44px;
  padding: 20px;
  border: 1px solid rgba(233, 227, 204, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .18);
}

.villages-search-panel label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.villages-search-panel span {
  color: rgba(233, 227, 204, .62);
  font-size: 12px;
}

.villages-search-panel input,
.villages-search-panel select {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  outline: none;
  padding: 0 20px;
  background: rgba(233, 227, 204, .16);
  color: var(--cream);
  font-weight: 500;
}

.villages-search-panel input::placeholder {
  color: rgba(233, 227, 204, .50);
}

.villages-summary-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.villages-summary-grid,
.village-detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.villages-summary-grid div,
.village-detail-facts div {
  min-width: 0;
  padding: 28px;
  border-radius: 20px;
  background: white;
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(19, 35, 59, .06);
}

.villages-summary-grid strong,
.village-detail-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: .9;
letter-spacing: 0;
}

.villages-summary-grid span,
.village-detail-facts span {
  color: rgba(19, 35, 59, .68);
  font-size: 15px;
  line-height: 1.25;
}

.village-detail-facts {
  margin-top: 34px;
}

.village-detail-facts div {
  border: 1px solid rgba(233, 227, 204, .14);
  background: rgba(255, 255, 255, .08);
  color: var(--cream);
  box-shadow: none;
}

.village-detail-facts span {
  color: rgba(233, 227, 204, .58);
}

.village-detail-facts strong {
  color: var(--cream);
}

.village-grid-refined {
  gap: 24px;
}

.village-card-refined {
  min-height: 612px;
  border-radius: 22px;
}

.village-card-refined .village-media {
  height: 326px;
  color: inherit;
}

.village-media-contain {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #edf0ef 0%, #dce2df 100%);
}

.village-card-refined .village-media-contain img {
  width: 92%;
  height: 92%;
  padding: 26px;
  object-fit: contain;
}

.village-card-refined .card-body {
  padding: 28px 28px 30px;
}

.village-card-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.village-card-refined .card-title {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: .92;
}

.village-card-refined .card-text {
  font-size: 16px;
  line-height: 1.38;
}

.village-card-refined .dark-button {
  align-self: flex-start;
  min-width: 190px;
  margin-top: auto;
}

.village-overview-grid,
.village-map-grid {
  display: grid;
  grid-template-columns: minmax(420px, 720px) minmax(520px, 860px);
  gap: 76px;
  align-items: center;
}

.village-overview-copy h2,
.village-map-copy h2 {
  margin-bottom: 26px;
  font-size: 66px;
  line-height: .9;
}

.village-overview-copy p,
.village-map-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.village-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.village-overview-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(190, 165, 117, .18);
  color: #8f6c27;
  font-size: 13px;
  font-weight: 700;
}

.village-gallery-refined {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: repeat(2, 236px);
  gap: 18px;
}

.village-gallery-refined img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(19, 35, 59, .08);
}

.village-gallery-refined img:first-child {
  grid-row: 1 / span 2;
}

.village-infra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.village-infra-grid article {
  min-height: 250px;
  padding: 28px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 42px rgba(19, 35, 59, .06);
}

.village-infra-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.village-infra-grid h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: .95;
letter-spacing: 0;
}

.village-infra-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
}

.village-map-grid .map-box {
  min-height: 460px;
}

.village-route-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.village-route-list div {
  padding: 20px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 34px rgba(19, 35, 59, .06);
}

.village-route-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
}

.village-route-list span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1280px) {
  .villages-hero-grid,
  .village-detail-hero-grid,
  .village-overview-grid,
  .village-map-grid {
    grid-template-columns: 1fr;
  }

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

  .villages-search-panel .primary-button {
    grid-column: 1 / -1;
  }

  .villages-summary-grid,
  .village-detail-facts,
  .village-infra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .villages-hero,
  .village-detail-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .villages-hero .breadcrumbs,
  .village-detail-hero .breadcrumbs {
    margin-bottom: 32px;
  }

  .villages-hero-grid,
  .village-detail-hero-grid,
  .village-overview-grid,
  .village-map-grid {
    gap: 34px;
  }

  .villages-hero-copy h1,
  .village-detail-copy h1 {
    font-size: 54px;
    line-height: .88;
  }

  .villages-hero-copy p,
  .village-detail-copy p,
  .village-overview-copy p,
  .village-map-copy p {
    font-size: 17px;
    line-height: 1.36;
  }

  .villages-hero-actions,
  .villages-hero-actions .primary-button,
  .villages-hero-actions .ghost-on-dark-button {
    width: 100%;
  }

  .villages-hero-media,
  .village-detail-media {
    min-height: 282px;
    border-radius: 20px;
  }

  .villages-hero-media img,
  .village-detail-media img {
    height: 282px;
  }

  .villages-hero-card,
  .village-detail-card {
    right: 14px;
    bottom: 14px;
    min-width: 170px;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .villages-hero-card strong,
  .village-detail-card strong {
    font-size: 21px;
  }

  .villages-search-panel,
  .villages-summary-grid,
  .village-detail-facts,
  .village-infra-grid,
  .village-route-list {
    grid-template-columns: 1fr;
  }

  .villages-search-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .villages-summary-grid div,
  .village-detail-facts div,
  .village-infra-grid article {
    padding: 22px;
  }

  .villages-summary-grid strong,
  .village-detail-facts strong {
    font-size: 42px;
  }

  .village-card-refined {
    min-height: auto;
    border-radius: 18px;
  }

  .village-card-refined .village-media {
    height: 236px;
  }

  .village-card-refined .card-body {
    padding: 22px 20px 24px;
  }

  .village-card-refined .card-title {
    font-size: 30px;
  }

  .village-card-refined .dark-button {
    width: 100%;
  }

  .village-overview-copy h2,
  .village-map-copy h2 {
    font-size: 44px;
    line-height: .95;
  }

  .village-gallery-refined {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .village-gallery-refined img,
  .village-gallery-refined img:first-child {
    grid-row: auto;
    height: 220px;
  }

  .village-infra-grid h3 {
    font-size: 28px;
  }

  .village-map-grid .map-box {
    min-height: 300px;
  }
}

.badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.property-media .badge,
.article-media .badge,
.village-media .badge {
  position: absolute;
  left: 18px;
  top: 18px;
}

.favorite {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
  font-size: 0;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.favorite::before {
  content: "";
  width: 22px;
  height: 20px;
  display: block;
  background: url("/figma-object/assets/icons/favorite-outline.svg") center / contain no-repeat;
}

.favorite:hover {
  transform: scale(1.04);
}

.favorite.is-active::before,
.favorite[aria-pressed="true"]::before {
  background-image: url("/figma-object/assets/icons/favorite-filled.svg");
}

.card-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.card-title {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.02;
  text-transform: none;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.meta-row {
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.meta-row span,
.tag {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef0f1;
  color: rgba(19, 35, 59, .74);
  padding: 0 10px;
  font-size: 12px;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
}

.price-row strong {
  font-size: 27px;
  line-height: 1;
}

.stat-card,
.info-card {
  padding: 30px;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  line-height: .9;
letter-spacing: 0;
}

.stat-card span,
.info-card p,
.team-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.38;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(420px, 760px) minmax(420px, 760px);
  gap: 70px;
  align-items: center;
}

.feature-copy h2 {
  margin-bottom: 28px;
  font-size: 66px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.46;
}

.feature-media {
  overflow: hidden;
  border-radius: 20px;
  min-height: 420px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--line);
}

.spec-table div {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: white;
}

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

.spec-table strong {
  text-align: right;
}

.object-hero {
  position: relative;
  padding: 68px var(--side) 44px;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.object-hero > .section-inner {
  position: relative;
  z-index: 1;
}

.object-hero .breadcrumbs {
  margin-bottom: 42px;
}

.object-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 760px) minmax(520px, 830px);
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}

.object-hero-copy h1,
.object-description h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.object-hero-copy h1 {
  font-size: 86px;
  line-height: .82;
}

.object-hero-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(233, 227, 204, .78);
  font-size: 21px;
  line-height: 1.2;
}

.object-label {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 165, 117, .22);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.object-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.object-favorite {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--cream);
  font-size: 0;
}

.object-hero-media {
  position: relative;
  min-height: 428px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
}

.object-hero-media img {
  width: 100%;
  height: 428px;
  object-fit: cover;
}

.object-price-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-width: 300px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
}

.object-price-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(19, 35, 59, .52);
  font-size: 13px;
}

.object-price-card strong {
  font-size: 28px;
  line-height: 1;
}

.object-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(233, 227, 204, .12);
}

.object-facts div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .06);
}

.object-facts span {
  color: rgba(233, 227, 204, .55);
  font-size: 13px;
}

.object-facts strong {
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
}

.object-gallery-section {
  padding-top: 46px;
  padding-bottom: 46px;
  background: var(--gray);
}

.object-gallery-grid {
  display: grid;
  grid-template-columns: 1.38fr .82fr .82fr;
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.object-gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.object-gallery-grid .is-large {
  grid-row: 1 / span 2;
}

.object-info-grid {
  display: grid;
  grid-template-columns: minmax(420px, 910px) minmax(360px, 520px);
  gap: 80px;
  align-items: start;
}

.object-description {
  padding: 58px 64px;
  border-radius: 20px;
  background: white;
}

.object-description h2 {
  max-width: 780px;
  color: var(--navy);
  font-size: 70px;
  line-height: .86;
}

.object-description p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(19, 35, 59, .72);
  font-size: 21px;
  line-height: 1.42;
}

.object-side-card {
  padding: 34px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--cream);
}

.object-side-card h3 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: .9;
letter-spacing: 0;
}

.spec-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(233, 227, 204, .12);
}

.spec-list div {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .06);
}

.spec-list span {
  color: rgba(233, 227, 204, .58);
}

.spec-list strong {
  text-align: right;
}

.object-location-grid {
  display: grid;
  grid-template-columns: minmax(360px, 600px) minmax(520px, 1fr);
  gap: 70px;
  align-items: start;
}

.object-location-grid .section-head {
  display: block;
  margin-bottom: 0;
}

.object-location-grid .section-lead {
  margin-top: 24px;
}

.process-list {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-item {
  counter-increment: steps;
  min-height: 260px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  color: var(--cream);
}

.process-item::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 40px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 46px;
letter-spacing: 0;
}

.process-item h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
}

.process-item p {
  color: rgba(233, 227, 204, .72);
  line-height: 1.35;
}

.form-panel {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 540px);
  gap: 60px;
  padding: 66px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.form-panel.dark-pattern::before {
  opacity: .18;
}

.form-panel > * {
  position: relative;
  z-index: 1;
}

.form-panel h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 400;
  line-height: .86;
letter-spacing: 0;
}

.form-panel p {
  color: rgba(233, 227, 204, .72);
  font-size: 20px;
  line-height: 1.42;
}

.form-grid {
  display: grid;
  gap: 14px;
  align-content: start;
}

.form-panel .field span {
  color: rgba(233, 227, 204, .58);
}

.form-panel .field input,
.form-panel .field textarea {
  background: rgba(255, 255, 255, .94);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 960px) minmax(280px, 420px);
  gap: 80px;
  align-items: start;
}

.article-hero-page {
  padding: 76px var(--side) 86px;
  background: var(--paper);
}

.article-hero-page .breadcrumbs {
  margin-bottom: 54px;
  color: rgba(19, 35, 59, .50);
}

.article-hero-page .breadcrumbs a {
  color: rgba(19, 35, 59, .76);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1080px) minmax(320px, 430px);
  gap: 80px;
  align-items: start;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.article-hero-page h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 400;
  line-height: .86;
letter-spacing: 0;
}

.article-hero-page p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(19, 35, 59, .72);
  font-size: 23px;
  line-height: 1.36;
}

.article-author-card {
  padding: 30px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 42px rgba(19, 35, 59, .07);
}

.article-author-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(19, 35, 59, .45);
  font-size: 13px;
}

.article-author-card strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.08;
}

.article-author-card p {
  margin: 18px 0 0;
  font-size: 15px;
}

.article-content-section {
  padding-top: 0;
}

.article-body {
  max-width: 960px;
}

.article-body h1 {
  margin: 0 0 32px;
  font-size: 72px;
  color: var(--navy);
}

.article-body h2 {
  margin: 46px 0 18px;
  font-size: 34px;
}

.article-body p,
.article-body li {
  color: rgba(19, 35, 59, .76);
  font-size: 20px;
  line-height: 1.55;
}

.article-body blockquote {
  margin: 38px 0;
  padding: 34px 38px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
letter-spacing: 0;
}

.article-body img {
  width: 100%;
  max-height: 520px;
  border-radius: 20px;
  object-fit: cover;
  margin: 34px 0;
}

.article-aside {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.article-nav-card {
  display: grid;
  gap: 10px;
}

.article-nav-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: #eef0f1;
  color: rgba(19, 35, 59, .74);
}

.page-article {
  background: var(--paper);
}

.page-article .site-header {
  background: var(--gray);
  color: var(--navy);
}

.page-article .site-header .brand img,
.page-article .favorite-link img,
.page-article .social-links img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(967%) hue-rotate(178deg) brightness(90%) contrast(94%);
}

.page-article .header-nav a,
.page-article .favorite-link {
  color: var(--navy);
}

.page-article .header-nav a:first-child {
  color: var(--gold);
}

.page-article .phone-link {
  background: #3b485c;
  color: #fff;
}

.page-article .menu-toggle {
  background: var(--navy);
  color: var(--cream);
}

.article-detail-hero {
  padding: 0 var(--side) 92px;
  background: var(--gray);
  color: var(--navy);
}

.article-detail-breadcrumbs {
  margin-bottom: 56px;
  color: rgba(19, 35, 59, .52);
}

.article-detail-breadcrumbs a {
  color: rgba(19, 35, 59, .78);
}

.article-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1130px) minmax(300px, 390px);
  gap: clamp(32px, 5vw, 92px);
  align-items: end;
}

.article-detail-copy {
  max-width: 1160px;
}

.article-detail-copy h1 {
  max-width: 1120px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(68px, 5.2vw, 100px);
  font-weight: 400;
  line-height: .86;
letter-spacing: 0;
}

.article-detail-copy p {
  max-width: 790px;
  margin: 30px 0 0;
  color: rgba(19, 35, 59, .72);
  font-size: 23px;
  line-height: 1.36;
}

.article-detail-author,
.article-detail-card,
.article-media-caption {
  border: 1px solid rgba(19, 35, 59, .08);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 70px rgba(19, 35, 59, .08);
  backdrop-filter: blur(14px);
}

.article-detail-author {
  padding: 30px;
  border-radius: 18px;
}

.article-detail-author span,
.article-help-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(19, 35, 59, .46);
  font-size: 13px;
  font-weight: 500;
}

.article-detail-author strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
}

.article-detail-author p {
  margin: 18px 0 0;
  color: rgba(19, 35, 59, .66);
  font-size: 15px;
  line-height: 1.4;
}

.article-detail-media {
  position: relative;
  min-height: 560px;
  margin-top: 68px;
  overflow: hidden;
  border-radius: 22px;
  background: #d7dadd;
}

.article-detail-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.article-media-caption {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(360px, calc(100% - 64px));
  padding: 24px 26px;
  border-radius: 18px;
}

.article-media-caption span {
  display: block;
  margin-bottom: 12px;
  color: rgba(19, 35, 59, .48);
  font-size: 13px;
}

.article-media-caption strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: .95;
letter-spacing: 0;
}

.article-detail-content {
  padding-top: 96px;
  background: var(--paper);
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 930px);
  gap: clamp(46px, 6vw, 116px);
  align-items: start;
}

.article-detail-side {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 18px;
}

.article-detail-card {
  padding: 26px;
  border-radius: 18px;
}

.article-detail-card h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: .95;
letter-spacing: 0;
}

.article-detail-card p {
  color: rgba(19, 35, 59, .66);
  font-size: 16px;
  line-height: 1.45;
}

.article-detail-card .primary-button {
  width: 100%;
  margin-top: 12px;
}

.article-detail-body {
  max-width: 930px;
}

.article-detail-body .article-lead {
  margin-bottom: 52px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.34;
}

.article-detail-body h2 {
  max-width: 820px;
  margin: 62px 0 22px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: .9;
letter-spacing: 0;
}

.article-detail-body p,
.article-detail-body li {
  color: rgba(19, 35, 59, .76);
  font-size: 21px;
  line-height: 1.56;
}

.article-detail-body ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding-left: 22px;
}

.article-detail-body blockquote {
  margin: 42px 0;
  padding: 40px 46px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.02;
letter-spacing: 0;
}

.article-inline-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  margin: 50px 0 8px;
}

.article-inline-grid img {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  object-fit: cover;
}

.article-checklist {
  display: grid;
  gap: 0;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid rgba(19, 35, 59, .10);
  border-radius: 20px;
  background: #fff;
}

.article-checklist > span {
  padding: 24px 28px 6px;
  color: rgba(19, 35, 59, .46);
  font-size: 13px;
  font-weight: 500;
}

.article-checklist div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 24px 28px;
  border-top: 1px solid rgba(19, 35, 59, .08);
}

.article-checklist strong {
  color: var(--gold);
  font-size: 24px;
  font-weight: 500;
}

.article-checklist p {
  margin: 0;
  font-size: 19px;
}

.article-related-section {
  padding-top: 96px;
}

@media (max-width: 1280px) {
  .article-detail-hero {
    padding-bottom: 72px;
  }

  .article-detail-hero-grid,
  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .article-detail-copy h1 {
    max-width: 980px;
  }

  .article-detail-author {
    max-width: 520px;
  }

  .article-detail-media,
  .article-detail-media img {
    min-height: 460px;
    height: 460px;
  }

  .article-detail-side {
    position: static;
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-detail-body {
    order: 1;
  }
}

@media (max-width: 760px) {
  .article-detail-hero {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .article-detail-breadcrumbs {
    margin-bottom: 32px;
  }

  .article-detail-copy h1 {
    font-size: 46px;
    line-height: .88;
  }

  .article-detail-copy p {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.32;
  }

  .article-detail-author,
  .article-detail-card {
    padding: 22px;
    border-radius: 16px;
  }

  .article-detail-media,
  .article-detail-media img {
    min-height: 268px;
    height: 268px;
    border-radius: 18px;
  }

  .article-detail-media {
    margin-top: 38px;
  }

  .article-media-caption {
    right: 14px;
    bottom: 14px;
    width: min(300px, calc(100% - 28px));
    padding: 18px;
    border-radius: 15px;
  }

  .article-media-caption strong {
    font-size: 25px;
  }

  .article-detail-content {
    padding-top: 58px;
  }

  .article-detail-layout {
    gap: 40px;
  }

  .article-detail-side {
    grid-template-columns: 1fr;
  }

  .article-detail-body .article-lead {
    margin-bottom: 38px;
    font-size: 19px;
    line-height: 1.42;
  }

  .article-detail-body h2 {
    margin-top: 46px;
    font-size: 40px;
    line-height: .92;
  }

  .article-detail-body p,
  .article-detail-body li {
    font-size: 16px;
    line-height: 1.55;
  }

  .article-detail-body blockquote {
    margin: 32px 0;
    padding: 26px 22px;
    border-radius: 18px;
    font-size: 26px;
    line-height: 1.08;
  }

  .article-inline-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .article-inline-grid img {
    height: 230px;
    border-radius: 16px;
  }

  .article-checklist {
    margin-top: 42px;
    border-radius: 18px;
  }

  .article-checklist div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .article-checklist > span {
    padding: 20px 20px 0;
  }

  .article-checklist p {
    font-size: 16px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(420px, 620px) minmax(420px, 1fr);
  gap: 40px;
}

.contacts-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 28px;
}

.contact-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(19, 35, 59, .45);
  font-size: 13px;
}

.contact-card h3 a {
  color: inherit;
}

.contact-card h3,
.info-card h3,
.screen-card h3,
.team-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.05;
}

.map-box {
  min-height: 540px;
  overflow: hidden;
  border-radius: 20px;
}

.map-box img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.team-card {
  padding: 18px;
}

.team-photo {
  height: 250px;
  margin-bottom: 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, .92) 0 34px, transparent 35px),
    linear-gradient(160deg, rgba(233, 227, 204, .95), rgba(190, 165, 117, .62) 48%, rgba(19, 35, 59, .92) 49%),
    var(--gray);
}

.page-owners .stat-card,
.page-about .stat-card {
  background: transparent;
  box-shadow: none;
}

.page-owners .form-panel,
.page-contacts .form-panel {
  scroll-margin-top: 80px;
}

.article-card .card-title {
  font-size: 22px;
}

.tabs {
  flex-wrap: wrap;
  gap: 8px;
}

.tab-button {
  border-color: var(--line);
  background: white;
  color: var(--navy);
}

.tab-button.active {
  background: var(--navy);
  color: white;
}

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

.plan-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 70px;
}

.plan-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 20px;
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 42px rgba(19, 35, 59, .09);
}

.plan-card strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 18px;
}

.plan-card h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
letter-spacing: 0;
}

.plan-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.35;
}

.screen-card {
  padding: 24px;
}

.screen-card a {
  display: inline-flex;
  margin-top: 18px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(11, 57, 44, .12);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.status-close {
  background: rgba(11, 57, 44, .12);
  color: var(--green);
}

.status-partial {
  background: rgba(190, 165, 117, .18);
  color: #8f6c27;
}

.status-draft {
  background: rgba(19, 35, 59, .10);
  color: rgba(19, 35, 59, .72);
}

.status-unchecked {
  background: rgba(143, 72, 32, .12);
  color: #8f4820;
}

.empty-state {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  background: white;
  padding: 48px;
}

.empty-state h2 {
  max-width: 680px;
  margin: 0 auto 22px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: .88;
letter-spacing: 0;
}

.empty-state p {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.4;
}

.service-counter {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.service-counter span,
.service-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 400;
letter-spacing: 0;
}

.service-counter span {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  background: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.service-code {
  margin-bottom: 20px;
  font-size: 90px;
  line-height: .85;
}

.service-empty,
.error-state {
  min-height: 500px;
}

.favorites-hero {
  position: relative;
  min-height: 620px;
  padding: 70px var(--side) 78px;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.favorites-hero-inner {
  position: relative;
  z-index: 1;
}

.favorites-hero .breadcrumbs {
  margin-bottom: 54px;
  color: rgba(233, 227, 204, .50);
}

.favorites-hero-grid {
  display: grid;
  grid-template-columns: minmax(460px, 880px) minmax(360px, 480px);
  gap: 80px;
  align-items: end;
  justify-content: space-between;
}

.favorites-kicker,
.favorites-toolbar span,
.favorites-summary > span,
.favorites-request-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(190, 165, 117, .16);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.favorites-copy h1 {
  max-width: 860px;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: 104px;
  font-weight: 400;
  line-height: .82;
  letter-spacing: 0;
}

.favorites-copy p {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(233, 227, 204, .76);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
}

.favorites-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.favorites-summary {
  min-height: 372px;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(233, 227, 204, .16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(233, 227, 204, .12), rgba(233, 227, 204, .035)),
    rgba(255, 255, 255, .045);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .16);
}

.favorites-summary strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: .86;
letter-spacing: 0;
}

.favorites-summary-stats {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(233, 227, 204, .12);
}

.favorites-summary-stats div {
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .055);
}

.favorites-summary-stats small {
  color: rgba(233, 227, 204, .48);
  font-size: 12px;
}

.favorites-summary-stats b {
  color: var(--cream);
  font-size: 18px;
}

.favorites-summary .primary-button {
  margin-top: 4px;
}

.favorites-list-section {
  padding-top: 72px;
}

.favorites-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.favorites-toolbar .section-title {
  margin-top: 18px;
}

.favorites-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.favorites-toolbar-actions button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: white;
  color: rgba(19, 35, 59, .78);
  font-weight: 600;
  box-shadow: 0 14px 36px rgba(19, 35, 59, .07);
}

.favorites-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 28px;
  align-items: start;
}

.favorites-stack,
.favorites-aside {
  display: grid;
  gap: 18px;
}

.favorite-object-card {
  min-height: 276px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 20px;
  background: white;
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(19, 35, 59, .07);
}

.favorite-object-media {
  position: relative;
  min-height: 276px;
  overflow: hidden;
  background: #dce1df;
}

.favorite-object-media img {
  width: 100%;
  height: 100%;
  min-height: 276px;
  object-fit: cover;
  transition: transform .28s ease;
}

.favorite-object-media-contain {
  display: grid;
  place-items: end center;
  padding: 22px 18px 0;
}

.favorite-object-media-contain img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
}

.favorite-object-card:hover .favorite-object-media img {
  transform: scale(1.035);
}

.favorite-object-media .badge {
  position: absolute;
  left: 18px;
  top: 18px;
}

.favorite-object-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 22px;
}

.favorite-object-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.favorite-object-head > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.favorite-remove {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef0f1;
  color: rgba(19, 35, 59, .62);
  font-size: 24px;
  line-height: 1;
}

.favorite-remove:hover,
.favorite-remove:focus-visible {
  background: var(--navy);
  color: white;
}

.favorite-object-body h3 {
  max-width: 620px;
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: .94;
letter-spacing: 0;
}

.favorite-object-body p {
  max-width: 640px;
  margin: 0;
  color: rgba(19, 35, 59, .68);
  font-size: 16px;
  line-height: 1.35;
}

.favorite-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.favorite-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  background: #eef0f1;
  color: rgba(19, 35, 59, .72);
  font-size: 12px;
}

.favorite-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}

.favorite-card-footer strong {
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
}

.favorite-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.favorite-compare {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 14px;
  background: #eef0f1;
  color: rgba(19, 35, 59, .72);
  font-size: 13px;
  font-weight: 600;
}

.favorite-compare input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--gold);
}

.favorites-aside {
  position: sticky;
  top: 24px;
}

.favorites-request-card,
.favorites-note-card {
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(19, 35, 59, .07);
}

.favorites-request-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--navy);
  color: var(--cream);
}

.favorites-request-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: .92;
letter-spacing: 0;
}

.favorites-request-card p {
  margin: 0;
  color: rgba(233, 227, 204, .72);
  font-size: 16px;
  line-height: 1.35;
}

.favorites-request-card .primary-button {
  margin-top: 6px;
}

.favorites-note-card {
  padding: 26px;
  background: white;
  color: var(--navy);
}

.favorites-note-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: .9;
letter-spacing: 0;
}

.favorites-note-card p {
  margin: 0;
  color: rgba(19, 35, 59, .68);
  line-height: 1.35;
}

.favorites-empty-section {
  padding-top: 74px;
  padding-bottom: 82px;
}

.favorites-empty {
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(19, 35, 59, .08);
  border-radius: 20px;
  background: white;
  padding: 44px 22px;
  color: var(--navy);
}

.favorites-empty span {
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(190, 165, 117, .18);
  color: var(--gold);
  font-size: 34px;
}

.favorites-empty h2 {
  max-width: 680px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: .9;
letter-spacing: 0;
}

.favorites-empty p {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(19, 35, 59, .68);
  font-size: 18px;
  line-height: 1.4;
}

@media (max-width: 1280px) {
  .favorites-hero-grid,
  .favorites-layout {
    grid-template-columns: 1fr;
  }

  .favorites-hero-grid {
    gap: 46px;
  }

  .favorites-summary {
    min-height: auto;
  }

  .favorites-summary-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .favorites-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .favorite-object-card {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .favorites-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .favorites-toolbar-actions {
    justify-content: flex-start;
  }

  .favorites-aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .favorites-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .favorites-hero .breadcrumbs {
    margin-bottom: 34px;
  }

  .favorites-copy h1 {
    margin-top: 18px;
    font-size: 52px;
    line-height: .88;
  }

  .favorites-copy p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.3;
  }

  .favorites-actions,
  .favorites-toolbar-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 30px;
  }

  .favorites-toolbar-actions {
    margin-top: 0;
  }

  .favorites-summary {
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
  }

  .favorites-summary strong {
    font-size: 46px;
  }

  .favorites-summary-stats {
    grid-template-columns: 1fr;
  }

  .favorites-list-section {
    padding-top: 56px;
  }

  .favorite-object-card {
    grid-template-columns: 1fr;
  }

  .favorite-object-media,
  .favorite-object-media img {
    min-height: 232px;
  }

  .favorite-object-body {
    padding: 22px 18px 20px;
  }

  .favorite-object-body h3 {
    font-size: 28px;
    line-height: .96;
  }

  .favorite-card-footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .favorite-card-actions {
    justify-content: flex-start;
  }

  .favorite-card-actions .dark-button,
  .favorite-compare {
    width: 100%;
  }

  .favorite-compare {
    justify-content: center;
  }

  .favorites-request-card {
    padding: 24px;
  }

  .favorites-request-card h3 {
    font-size: 32px;
  }

  .favorites-empty {
    min-height: 300px;
    padding: 36px 18px;
  }

  .favorites-empty h2 {
    font-size: 40px;
  }

  .favorites-empty p {
    font-size: 16px;
  }
}

.error-hero {
  position: relative;
  min-height: calc(100vh - 111px);
  padding: 70px var(--side) 88px;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.error-hero-inner {
  position: relative;
  z-index: 1;
}

.error-hero .breadcrumbs {
  margin-bottom: 56px;
  color: rgba(233, 227, 204, .50);
}

.error-hero-grid {
  display: grid;
  grid-template-columns: minmax(480px, 820px) minmax(420px, 620px);
  gap: 80px;
  align-items: center;
  justify-content: space-between;
}

.error-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 24px;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(190, 165, 117, .16);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.error-copy h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 108px;
  font-weight: 400;
  line-height: .82;
  letter-spacing: 0;
}

.error-copy p {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(233, 227, 204, .76);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.ghost-on-dark-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid rgba(233, 227, 204, .28);
  background: rgba(233, 227, 204, .08);
  color: var(--cream);
  font-weight: 700;
}

.error-code-panel {
  min-height: 432px;
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 42px;
  border: 1px solid rgba(233, 227, 204, .18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(233, 227, 204, .12), rgba(233, 227, 204, .03)),
    rgba(255, 255, 255, .04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .16);
}

.error-code {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 174px;
  font-weight: 400;
  line-height: .76;
letter-spacing: 0;
}

.error-panel-line {
  width: 100%;
  height: 1px;
  background: rgba(233, 227, 204, .18);
}

.error-code-panel span {
  max-width: 300px;
  color: rgba(233, 227, 204, .82);
  font-size: 24px;
  line-height: 1.08;
}

.error-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 78px;
}

.error-quick-card {
  min-height: 148px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(233, 227, 204, .12);
  border-radius: 18px;
  background: rgba(233, 227, 204, .07);
  color: var(--cream);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.error-quick-card:hover,
.error-quick-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(190, 165, 117, .46);
  background: rgba(190, 165, 117, .14);
}

.error-quick-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.error-quick-card strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: .92;
letter-spacing: 0;
}

.error-quick-card small {
  color: rgba(233, 227, 204, .62);
  font-size: 14px;
  line-height: 1.25;
}

@media (max-width: 1280px) {
  .error-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .error-code-panel {
    min-height: 300px;
  }

  .error-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }
}

@media (max-width: 760px) {
  .error-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .error-hero .breadcrumbs {
    margin-bottom: 34px;
  }

  .error-copy h1 {
    font-size: 52px;
    line-height: .88;
  }

  .error-copy p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.3;
  }

  .error-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .error-code-panel {
    min-height: 212px;
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
  }

  .error-code {
    font-size: 92px;
  }

  .error-code-panel span {
    font-size: 18px;
  }

  .error-quick-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .error-quick-card {
    min-height: 116px;
    padding: 20px;
  }

  .error-quick-card strong {
    font-size: 28px;
  }
}

.search-panel {
  grid-template-columns: minmax(320px, 2fr) repeat(3, minmax(180px, 1fr)) auto;
}

.search-suggestions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.search-suggestions span {
  color: rgba(19, 35, 59, .48);
  font-size: 13px;
}

.search-suggestions a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: white;
  color: rgba(19, 35, 59, .72);
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(19, 35, 59, .06);
}

.pagination {
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination a,
.pagination span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--navy);
  font-weight: 700;
}

.pagination a.active {
  background: var(--navy);
  color: white;
}

.site-footer {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(220px, 360px) minmax(300px, 420px);
  gap: 70px;
  padding: 108px var(--side) 96px;
  background: var(--navy-deep);
  color: var(--cream);
}

.site-footer dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px 28px;
  margin: 42px 0 0;
}

.site-footer dt {
  color: rgba(233, 227, 204, .55);
}

.site-footer dd {
  margin: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 16px 34px;
  align-content: start;
}

.footer-form h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: .95;
letter-spacing: 0;
}

.footer-form p {
  color: rgba(233, 227, 204, .62);
}

.footer-form input {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: white;
  outline: none;
  padding: 0 18px;
}

.footer-form button {
  margin-top: 14px;
}

@media (max-width: 1540px) {
  .social-links {
    display: none;
  }
}

@media (max-width: 1440px) {
  .favorite-link span {
    display: none;
  }
}

@media (max-width: 1360px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    position: fixed;
    z-index: 40;
    top: 88px;
    right: 20px;
    width: min(340px, calc(100vw - 40px));
    display: grid;
    padding: 18px;
    border-radius: 20px;
    background: rgba(11, 23, 40, .96);
    color: var(--cream);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .mobile-menu a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(233, 227, 204, .10);
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    position: fixed;
    z-index: 40;
    top: 88px;
    right: 20px;
    width: min(340px, calc(100vw - 40px));
    display: grid;
    padding: 18px;
    border-radius: 20px;
    background: rgba(11, 23, 40, .96);
    color: var(--cream);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .mobile-menu a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(233, 227, 204, .10);
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .social-links {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .form-panel,
  .article-layout,
  .contact-grid,
  .object-hero-grid,
  .object-info-grid,
  .object-location-grid,
  .village-intro-grid,
  .blog-featured,
  .article-hero-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .object-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .village-gallery-mini {
    grid-template-rows: repeat(2, 210px);
  }

  .blog-featured-copy {
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .favorite-link span {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 82px;
  }

  .brand-logo {
    width: 180px;
    height: 62px;
    gap: 10px;
  }

  .brand-emblem {
    width: 42px;
    height: 62px;
    flex-basis: 42px;
  }

  .brand-lockup {
    gap: 4px;
    padding-top: 6px;
  }

  .brand-wordmark {
    width: 132px;
    height: 40px;
  }

  .brand-tagline {
    width: 92px;
    height: 5px;
  }

  .icon-link,
  .favorite-link,
  .phone-link,
  .social-links {
    display: none;
  }

  .hero {
    min-height: 480px;
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .object-hero {
    padding-top: 44px;
    padding-bottom: 34px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 50px;
    line-height: .88;
  }

  .object-hero-copy h1 {
    font-size: 46px;
    line-height: .86;
  }

  .hero-copy p {
    margin-top: 24px;
    font-size: 19px;
    line-height: 1.2;
  }

  .object-hero-copy p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.28;
  }

  .object-actions {
    display: grid;
    grid-template-columns: 1fr 56px;
    margin-top: 26px;
  }

  .hero-card img,
  .hero-card {
    min-height: 260px;
  }

  .object-hero-media {
    min-height: 260px;
  }

  .object-hero-media img {
    height: 260px;
  }

  .hero-card .floating-price {
    position: static;
    min-width: 0;
    border-radius: 0;
  }

  .object-price-card {
    position: static;
    min-width: 0;
    border-radius: 0;
  }

  .object-price-card strong {
    font-size: 21px;
  }

  .object-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .object-facts div {
    min-height: 72px;
    padding: 16px 18px;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .article-hero-page {
    padding-top: 52px;
    padding-bottom: 62px;
  }

  .section-head,
  .toolbar,
  .price-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-title,
  .feature-copy h2,
  .empty-state h2 {
    font-size: 42px;
    line-height: .9;
  }

  .blog-featured-copy h2,
  .article-hero-page h1 {
    font-size: 42px;
    line-height: .9;
  }

  .section-lead,
  .feature-copy p,
  .form-panel p,
  .empty-state p,
  .blog-featured-copy p,
  .article-hero-page p {
    font-size: 16px;
  }

  .filter-bar,
  .grid-3,
  .grid-2,
  .stat-grid,
  .team-grid,
  .plan-list,
  .screen-list,
  .process-list,
  .spec-table {
    grid-template-columns: 1fr;
  }

  .plan-list {
    margin-bottom: 44px;
  }

  .filter-bar {
    padding: 16px;
  }

  .property-media,
  .village-media,
  .article-media {
    height: 214px;
  }

  .blog-featured {
    gap: 22px;
    padding: 14px;
  }

  .blog-featured-media {
    min-height: 220px;
  }

  .blog-featured-media img {
    height: 220px;
  }

  .village-media {
    height: 230px;
  }

  .card-title {
    font-size: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .object-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .object-gallery-grid img,
  .object-gallery-grid .is-large {
    grid-row: auto;
    height: 220px;
  }

  .object-description {
    padding: 34px 20px;
  }

  .object-description h2 {
    font-size: 42px;
    line-height: .9;
  }

  .object-description p {
    font-size: 16px;
  }

  .object-side-card {
    padding: 26px 18px;
  }

  .object-side-card h3 {
    font-size: 34px;
  }

  .village-gallery-mini {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .village-gallery-mini img,
  .village-gallery-mini img:first-child {
    grid-row: auto;
    height: 220px;
  }

  .form-panel {
    padding: 38px 18px;
  }

  .form-panel h2 {
    font-size: 42px;
  }

  .article-body h1 {
    font-size: 44px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .article-body blockquote {
    padding: 24px 20px;
    font-size: 25px;
  }

  .map-box,
  .map-box img {
    min-height: 330px;
  }

  .site-footer {
    min-height: auto;
    gap: 34px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .site-footer dl,
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* Footer, Frame 2087326745 */
.site-footer {
  --footer-side: var(--safe, var(--side, 60px));
  position: relative;
  min-height: 646px;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(112px, 150px) minmax(150px, 214px) minmax(138px, 190px) minmax(310px, 430px);
  gap: clamp(34px, 3.5vw, 68px);
  align-items: start;
  padding: 92px var(--footer-side) 28px;
  overflow: hidden;
  background: #0b1b31;
  color: rgba(233, 227, 204, .74);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 56px 0 0 auto;
  width: min(760px, 46vw);
  opacity: .24;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 100% 100%, transparent 0 80px, rgba(233, 227, 204, .18) 81px 83px, transparent 84px),
    radial-gradient(circle at 0 100%, transparent 0 80px, rgba(233, 227, 204, .12) 81px 83px, transparent 84px);
  background-size: 238px 238px;
  background-position: right top;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: var(--footer-side);
  right: var(--footer-side);
  bottom: 74px;
  height: 1px;
  background: rgba(233, 227, 204, .14);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-logo {
  width: 286px;
  height: 94px;
  gap: 17px;
  margin: 0 0 48px;
}

.site-footer .brand-emblem {
  width: 64px;
  height: 94px;
  flex-basis: 64px;
}

.site-footer .brand-lockup {
  gap: 7px;
  padding-top: 9px;
}

.site-footer .brand-wordmark {
  width: 202px;
  height: 61px;
}

.site-footer .brand-tagline {
  width: 141px;
  height: 8px;
}

.footer-contacts {
  display: grid;
  gap: 12px;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.25;
}

.footer-contacts a,
.footer-contacts strong {
  color: var(--cream);
  font-weight: 600;
}

.footer-contacts p {
  margin: 8px 0 0;
  color: rgba(233, 227, 204, .62);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(233, 227, 204, .10);
  border: 1px solid rgba(233, 227, 204, .22);
  transition: background .2s ease, transform .2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(190, 165, 117, .82);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding-top: 105px;
}

.footer-column h2,
.footer-form h2 {
  margin: 0 0 8px;
  color: var(--cream);
  font: 600 16px/1.12 var(--font-body);
}

.footer-column a {
  color: rgba(233, 227, 204, .58);
  font-size: 14px;
  line-height: 1.2;
  transition: color .2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--cream);
}

.footer-form {
  max-width: 430px;
  padding-top: 98px;
}

.footer-form h2 {
  max-width: 330px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.04;
}

.footer-form input {
  width: 100%;
  height: 32px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(233, 227, 204, .14);
  color: white;
  outline: none;
  padding: 0 18px;
  font-size: 13px;
}

.footer-form input::placeholder {
  color: rgba(233, 227, 204, .48);
}

.footer-form p {
  max-width: 360px;
  margin: 12px 0 18px;
  color: rgba(233, 227, 204, .42);
  font-size: 12px;
  line-height: 1.28;
}

.footer-form button {
  min-height: 36px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #0b1b31;
  border: 0;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  margin-top: 82px;
  padding-top: 24px;
  color: rgba(233, 227, 204, .45);
  font-size: 12px;
  line-height: 1.2;
}

.footer-bottom a {
  color: rgba(233, 227, 204, .45);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--cream);
}

@media (max-width: 1360px) {
  .site-footer {
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(130px, 1fr));
    min-height: 720px;
  }

  .footer-form {
    grid-column: 2 / -1;
    max-width: 560px;
    padding-top: 10px;
  }
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
    min-height: auto;
    padding: 58px 20px 28px;
  }

  .site-footer::before {
    inset: 140px -190px 0 auto;
    width: 560px;
    opacity: .18;
  }

  .site-footer::after {
    left: 20px;
    right: 20px;
    bottom: 104px;
  }

  .footer-brand,
  .footer-form,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 260px;
    height: 99px;
    gap: 14px;
    margin-bottom: 38px;
  }

  .site-footer .brand-emblem {
    width: 76px;
    height: 99px;
    flex-basis: 76px;
  }

  .site-footer .brand-wordmark {
    width: 168px;
    height: 50px;
  }

  .site-footer .brand-tagline {
    width: 132px;
    height: 10px;
  }

  .footer-column {
    padding-top: 0;
  }

  .footer-form {
    padding-top: 4px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .footer-socials {
    margin-top: 34px;
  }

  .footer-form input {
    height: 36px;
  }
}


/* Figma object pages, May 2026 refresh. Scoped to avoid changing the other static prototypes. */
.page-object,
.page-objectVillage {
  background: var(--gray);
  color: var(--ink);
}

.page-objectVillage {
  background: #fff;
}

.page-object .site-header,
.page-objectVillage .site-header {
  background: var(--gray);
  color: var(--ink);
}

.page-objectVillage .site-header {
  background: #fff;
}

.page-object .brand-emblem,
.page-object .brand-lockup,
.page-objectVillage .brand-emblem,
.page-objectVillage .brand-lockup,
.page-object .favorite-link img,
.page-object .social-links img,
.page-objectVillage .favorite-link img,
.page-objectVillage .social-links img,
.page-object .menu-toggle span,
.page-objectVillage .menu-toggle span {
  filter: brightness(0) saturate(100%) invert(12%) sepia(26%) saturate(1478%) hue-rotate(178deg) brightness(93%) contrast(92%);
}

.page-object .header-nav a,
.page-objectVillage .header-nav a,
.page-object .favorite-link,
.page-objectVillage .favorite-link,
.page-object .social-links a,
.page-objectVillage .social-links a {
  color: var(--ink);
}

.page-object .site-footer .brand-emblem,
.page-object .site-footer .brand-lockup,
.page-objectVillage .site-footer .brand-emblem,
.page-objectVillage .site-footer .brand-lockup {
  filter: none;
}

.page-object .header-nav a:hover,
.page-objectVillage .header-nav a:hover {
  background: rgba(19, 35, 59, .06);
  border-color: transparent;
}

.page-object .phone-link,
.page-objectVillage .phone-link {
  background: #3b485c;
  color: #fff;
}

.figma-object-page .section-inner {
  width: min(1740px, calc(100vw - 2 * var(--side)));
}

.object-figma-hero {
  padding: 92px var(--side) 56px;
  background: var(--gray);
}

.figma-object-village .object-figma-hero {
  background: #fff;
}

.object-figma-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 31px;
  color: rgba(19, 35, 59, .34);
  font-size: 16px;
  line-height: 1;
}

.object-figma-breadcrumbs span:last-child {
  color: var(--ink);
}

.object-figma-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
}

.object-figma-title-row h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(76px, 4.75vw, 91px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: 0;
}

.figma-object-village .object-figma-title-row h1 {
  font-size: clamp(76px, 4.65vw, 90px);
}

.object-figma-title-actions,
.object-mobile-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.object-mobile-actions {
  display: none;
}

.object-id-pill {
  min-width: 136px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.object-heart-line {
  position: static;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: var(--gold);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}

.object-heart-line::before {
  content: "";
  width: 28px;
  height: 25px;
  display: block;
  background: url("/figma-object/assets/icons/favorite-outline.svg") center / contain no-repeat;
}

.object-heart-line.is-active::before,
.object-heart-line[aria-pressed="true"]::before {
  background-image: url("/figma-object/assets/icons/favorite-filled.svg");
}

.object-figma-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 860px) 262px minmax(420px, 565px);
  gap: 20px;
  align-items: stretch;
}

.object-gallery-main,
.object-gallery-thumbs,
.object-map,
.object-price-panel {
  min-width: 0;
}

.object-gallery-main {
  position: relative;
  height: 516px;
  overflow: hidden;
  border-radius: 16px;
  background: #d9dde4 var(--object-bg) center / cover no-repeat;
}

.object-facts-section {
  padding: 0 var(--side) 48px;
  background: var(--gray);
}

.object-facts-section .section-inner {
  display: grid;
  gap: 14px;
}

.object-facts-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.object-fact {
  min-width: 0;
  min-height: 58px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 6px;
  background: #f5f6f7;
  box-shadow: 0 1px 0 rgba(19, 35, 59, .03);
}

.object-fact-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(197, 166, 99, .48);
  background: #fffdf8;
}

.object-fact-icon::before,
.object-fact-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.object-fact-icon::before {
  top: 9px;
}

.object-fact-icon::after {
  top: 16px;
}

.object-fact span {
  display: block;
  margin-bottom: 3px;
  overflow: hidden;
  color: rgba(19, 35, 59, .48);
  font-size: 11px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.object-fact strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.object-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.object-tag {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(19, 35, 59, .12);
  border-radius: 999px;
  background: #fff;
  color: rgba(19, 35, 59, .74);
  font-size: 11px;
  line-height: 1;
}

.object-tag.is-green {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.object-tag.is-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

/* Contacts page Figma refresh */
.contacts-figma-page {
  background: #f7f7f4;
}

.contacts-figma-hero {
  position: relative;
  min-height: 574px;
  overflow: hidden;
  padding: 92px var(--side) 0;
  background: var(--navy);
  color: white;
}

.contacts-figma-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .21;
  background-image:
    radial-gradient(ellipse at 72% 0%, transparent 0 156px, rgba(233, 227, 204, .2) 157px 160px, transparent 161px),
    radial-gradient(ellipse at 88% 0%, transparent 0 156px, rgba(233, 227, 204, .18) 157px 160px, transparent 161px),
    radial-gradient(ellipse at 104% 0%, transparent 0 156px, rgba(233, 227, 204, .16) 157px 160px, transparent 161px),
    radial-gradient(ellipse at 55% 100%, transparent 0 160px, rgba(233, 227, 204, .16) 161px 164px, transparent 165px),
    radial-gradient(ellipse at 72% 100%, transparent 0 160px, rgba(233, 227, 204, .14) 161px 164px, transparent 165px),
    radial-gradient(ellipse at 89% 100%, transparent 0 160px, rgba(233, 227, 204, .14) 161px 164px, transparent 165px);
  background-size: 520px 360px, 520px 360px, 520px 360px, 520px 360px, 520px 360px, 520px 360px;
  background-position: right 520px top -118px, right 220px top -118px, right -80px top -118px, right 520px bottom -92px, right 220px bottom -92px, right -80px bottom -92px;
}

.contacts-figma-inner {
  position: relative;
  z-index: 1;
}

.contacts-figma-breadcrumbs {
  margin-bottom: 35px;
  color: rgba(233, 227, 204, .8);
  font-size: 18px;
}

.contacts-figma-breadcrumbs a {
  color: rgba(233, 227, 204, .38);
}

.contacts-figma-layout {
  display: grid;
  grid-template-columns: minmax(560px, 820px) minmax(520px, 720px);
  justify-content: space-between;
  gap: 72px;
  align-items: start;
}

.contacts-figma-left h1 {
  margin: 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(72px, 4.6vw, 92px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.contacts-socials {
  display: flex;
  gap: 12px;
  margin-top: 192px;
}

.contacts-socials a {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .11);
}

.contacts-socials img {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(21%) saturate(1418%) hue-rotate(178deg) brightness(94%) contrast(91%);
}

.contacts-figma-right {
  display: grid;
  gap: 60px;
  margin-top: 132px;
}

.contacts-figma-contact {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  color: white;
}

.contacts-figma-contact small {
  grid-column: 2;
  display: block;
  margin-bottom: 6px;
  color: rgba(233, 227, 204, .55);
  font-size: 18px;
  line-height: 1;
}

.contacts-figma-contact strong {
  grid-column: 2;
  display: block;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(42px, 2.65vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.contacts-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.contacts-icon::before {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
letter-spacing: 0;
}

.contacts-icon-phone::before {
  content: "☎";
  transform: rotate(-28deg);
}

.contacts-icon-email::before {
  content: "@";
  font-size: 62px;
}

.contacts-figma-map {
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #dfe5ef;
}

.contacts-figma-map img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 44%;
}

@media (max-width: 1280px) {
  .contacts-figma-layout {
    grid-template-columns: minmax(430px, 1fr) minmax(430px, 1fr);
    gap: 44px;
  }

  .contacts-figma-right {
    margin-top: 122px;
  }

  .contacts-figma-contact strong {
    font-size: 40px;
  }
}

@media (max-width: 940px) {
  .contacts-figma-hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .contacts-figma-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contacts-socials,
  .contacts-figma-right {
    margin-top: 48px;
  }
}

@media (max-width: 760px) {
  .contacts-figma-hero {
    padding: 19px 20px 52px;
  }

  .contacts-figma-hero::before {
    opacity: .2;
    background-size: 320px 260px, 320px 260px, 320px 260px, 320px 260px, 320px 260px, 320px 260px;
    background-position: right -120px top -80px, right -10px top -80px, right 120px top -80px, right -115px bottom -92px, right 5px bottom -92px, right 125px bottom -92px;
  }

  .contacts-figma-breadcrumbs {
    gap: 5px;
    margin: 0 0 30px;
    font-size: 13px;
  }

  .contacts-figma-breadcrumbs a,
  .contacts-figma-breadcrumbs span:first-of-type {
    display: none;
  }

  .contacts-figma-breadcrumbs span:last-child::before {
    content: "<";
    margin-right: 7px;
    color: rgba(233, 227, 204, .42);
  }

  .contacts-figma-left h1 {
    max-width: 340px;
    font-size: 50px;
    line-height: .92;
  }

  .contacts-socials {
    gap: 8px;
    margin-top: 54px;
  }

  .contacts-socials a {
    width: 48px;
    height: 48px;
  }

  .contacts-socials img {
    width: 25px;
    height: 25px;
  }

  .contacts-figma-right {
    gap: 32px;
    margin-top: 46px;
  }

  .contacts-figma-contact {
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }

  .contacts-icon {
    width: 42px;
    height: 42px;
  }

  .contacts-icon::before {
    font-size: 42px;
  }

  .contacts-icon-email::before {
    font-size: 47px;
  }

  .contacts-figma-contact small {
    font-size: 14px;
  }

  .contacts-figma-contact strong {
    font-size: 29px;
    white-space: normal;
  }

  .contacts-figma-map {
    height: 360px;
  }
}

/* About page Figma refresh */
.page-about .site-header {
  background: var(--navy);
  color: var(--cream);
}

.page-about .site-header > * {
  position: relative;
  z-index: 1;
}

.about-figma-page {
  background: #f7f7f4;
}

.about-figma-hero {
  position: relative;
  height: 744px;
  min-height: 744px;
  overflow: hidden;
  padding: 92px var(--side) 30px;
  background: var(--navy);
  color: white;
}

.about-figma-hero::before {
  opacity: .23;
  background-image:
    radial-gradient(ellipse at 91% 8%, transparent 0 142px, rgba(233, 227, 204, .2) 143px 146px, transparent 147px),
    radial-gradient(ellipse at 95% 56%, transparent 0 165px, rgba(233, 227, 204, .16) 166px 169px, transparent 170px),
    radial-gradient(ellipse at 91% 79%, transparent 0 105px, rgba(233, 227, 204, .13) 106px 109px, transparent 110px);
  background-size: 540px 420px, 620px 520px, 460px 360px;
  background-position: right -80px top -110px, right 10px top 120px, right 40px bottom -50px;
}

.about-figma-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 740px;
  height: 520px;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 58%, rgba(233, 227, 204, .5) 58.4% 59%, transparent 59.5%),
    radial-gradient(ellipse at 20% 70%, transparent 0 44%, rgba(233, 227, 204, .38) 44.4% 45%, transparent 45.5%);
  transform: rotate(-17deg);
}

.about-figma-hero-inner {
  position: relative;
  z-index: 1;
}

.about-figma-breadcrumbs {
  margin-bottom: 38px;
  color: rgba(233, 227, 204, .48);
  font-size: 18px;
}

.about-figma-breadcrumbs a {
  color: rgba(233, 227, 204, .36);
}

.about-figma-hero-grid {
  display: grid;
  grid-template-columns: minmax(620px, 850px) minmax(560px, 720px);
  grid-template-rows: auto 1fr;
  justify-content: space-between;
  gap: 0 70px;
  align-items: start;
}

.about-figma-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.about-figma-copy h1 {
  margin: 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(78px, 4.8vw, 94px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: 0;
}

.about-figma-copy h1 span {
  color: var(--gold);
}

.about-figma-stats {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 250px));
  gap: 38px 40px;
  margin-top: clamp(118px, 16vh, 150px);
}

.about-figma-stats div {
  display: grid;
  gap: 10px;
}

.about-figma-stats p {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 0;
}

.about-figma-stats strong {
  display: inline-flex;
  align-items: flex-start;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(70px, 4.45vw, 88px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: 0;
}

.about-figma-stats small {
  margin: 12px 0 0 8px;
  font-family: var(--font-body);
  font-size: .36em;
  line-height: 1;
}

.about-figma-stats em {
  margin-bottom: 4px;
  color: white;
  font-style: normal;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.about-figma-stats span {
  color: rgba(233, 227, 204, .72);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.05;
}

.about-figma-video {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: center;
  min-width: 0;
  margin-top: -176px;
  padding-right: 28px;
}

.about-video-orbit {
  position: relative;
  width: clamp(540px, 34vw, 660px);
  height: clamp(650px, 39vw, 760px);
}

.about-video-orbit img {
  position: absolute;
  left: 50%;
  top: 176px;
  z-index: 2;
  width: min(500px, 75%);
  max-width: none;
  transform: translateX(-50%);
}

.about-video-ring {
  position: absolute;
  left: 50%;
  top: 24px;
  z-index: 3;
  width: min(720px, 108%);
  height: auto;
  overflow: visible;
  transform: translateX(-50%) rotate(-16deg);
  pointer-events: none;
}

.about-video-ring text {
  fill: var(--gold);
  font-family: var(--font-display);
  font-size: 63px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-video-play {
  position: absolute;
  left: 50%;
  top: 65%;
  z-index: 4;
  width: 0;
  height: 0;
  border-top: 29px solid transparent;
  border-bottom: 29px solid transparent;
  border-left: 48px solid var(--gold);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .18));
  transform: translate(-32%, -50%);
}

.about-figma-intro {
  overflow: hidden;
  padding: 104px var(--side) 54px;
  background: #f7f7f4;
}

.about-figma-intro-grid {
  display: grid;
  grid-template-columns: minmax(520px, 760px) minmax(680px, 1fr);
  gap: 42px 64px;
  align-items: end;
}

.about-figma-intro-copy span {
  display: inline-flex;
  margin-bottom: 62px;
  color: rgba(19, 35, 59, .45);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.about-figma-intro-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(42px, 2.6vw, 54px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: 0;
}

.about-figma-team-photo {
  align-self: end;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-figma-team-photo img {
  width: min(100%, 920px);
  max-width: none;
  height: auto;
  object-fit: contain;
}

.about-figma-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}

.about-figma-group {
  padding: 28px var(--side) 96px;
  background: #f7f7f4;
}

.about-figma-group-inner {
  display: grid;
  gap: 34px;
}

.about-figma-group-inner > p {
  max-width: 700px;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(19, 35, 59, .22);
  color: var(--navy);
  font-size: 24px;
  line-height: 1.12;
}

.about-business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-business-grid article {
  min-height: 250px;
  padding: 36px 38px;
  border-radius: 22px;
  background: #e7e9eb;
  color: var(--navy);
}

.about-business-grid h3 {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
letter-spacing: 0;
}

.about-business-grid p {
  margin: 0;
  max-width: 260px;
  font-size: 21px;
  line-height: 1.12;
}

.about-figma-principles {
  position: relative;
  padding: 104px var(--side);
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.about-figma-principles .section-head {
  position: relative;
  z-index: 1;
}

.about-figma-principles .section-lead {
  color: rgba(233, 227, 204, .72);
}

.about-figma-principles .info-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .08);
  color: var(--cream);
}

.about-figma-principles .info-card h3 {
  color: var(--cream);
}

.about-figma-principles .info-card p {
  color: rgba(233, 227, 204, .72);
}

@media (max-width: 1480px) {
  .about-figma-hero-grid {
    grid-template-columns: minmax(520px, 720px) minmax(500px, 620px);
  }

  .about-figma-copy h1 {
    font-size: clamp(68px, 5vw, 82px);
  }

  .about-figma-stats span {
    font-size: 23px;
  }

  .about-video-orbit {
    width: 560px;
    height: 675px;
  }
}

@media (max-width: 1180px) {
  .about-figma-hero {
    height: auto;
    min-height: auto;
  }

  .about-figma-hero-grid,
  .about-figma-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-figma-video {
    grid-column: auto;
    grid-row: auto;
    margin-top: 10px;
    padding-right: 0;
  }

  .about-figma-team-photo {
    justify-content: flex-start;
  }

  .about-business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-about .site-header {
    min-height: 82px;
    padding: 14px 20px 0;
  }

  .about-figma-hero {
    min-height: auto;
    padding: 19px 20px 34px;
  }

  .about-figma-hero::before {
    opacity: .26;
    background-size: 320px 300px, 360px 340px, 320px 300px;
    background-position: right -130px top 80px, right -105px top 315px, right -80px bottom 140px;
  }

  .about-figma-breadcrumbs {
    gap: 5px;
    margin: 0 0 28px;
    font-size: 13px;
  }

  .about-figma-breadcrumbs a,
  .about-figma-breadcrumbs span:first-of-type {
    display: none;
  }

  .about-figma-breadcrumbs span:last-child::before {
    content: "<";
    margin-right: 7px;
    color: rgba(233, 227, 204, .42);
  }

  .about-figma-copy h1 {
    max-width: 345px;
    font-size: clamp(37px, 10.5vw, 42px);
    line-height: .86;
    letter-spacing: 0;
  }

  .about-figma-video {
    margin: 22px 0 0;
    justify-content: center;
  }

  .about-figma-stats {
    grid-column: auto;
    grid-row: auto;
  }

  .about-video-orbit {
    width: min(100%, 360px);
    height: 385px;
  }

  .about-video-orbit img {
    top: 58px;
    width: 252px;
  }

  .about-video-ring {
    top: 12px;
    width: 354px;
    transform: translateX(-50%) rotate(-19deg);
  }

  .about-video-ring text {
    font-size: 42px;
    letter-spacing: 0;
  }

  .about-video-play {
    top: 57%;
    border-top-width: 19px;
    border-bottom-width: 19px;
    border-left-width: 32px;
  }

  .about-figma-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 30px;
    margin-top: 20px;
  }

  .about-figma-stats strong {
    font-size: 42px;
    line-height: .85;
  }

  .about-figma-stats p {
    gap: 7px;
  }

  .about-figma-stats small {
    margin: 5px 0 0 4px;
  }

  .about-figma-stats em {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .about-figma-stats span {
    font-size: 16px;
    line-height: 1.05;
  }

  .about-figma-intro {
    padding: 58px 20px 22px;
  }

  .about-figma-intro-grid {
    gap: 28px;
  }

  .about-figma-intro-copy span {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .about-figma-intro-copy h2 {
    font-size: clamp(26px, 7vw, 31px);
    line-height: .95;
  }

  .about-figma-team-photo {
    min-height: 0;
    margin: 2px -20px 0;
  }

  .about-figma-team-photo img {
    width: 100%;
  }

  .about-figma-lead {
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.06;
  }

  .about-figma-group {
    padding: 20px 20px 58px;
  }

  .about-figma-group-inner {
    gap: 24px;
  }

  .about-figma-group-inner > p {
    padding-top: 22px;
    font-size: 16px;
  }

  .about-business-grid {
    gap: 12px;
  }

  .about-business-grid article {
    min-height: 190px;
    padding: 28px 20px;
    border-radius: 18px;
  }

  .about-business-grid h3 {
    margin-bottom: 34px;
    font-size: 21px;
  }

  .about-business-grid p {
    font-size: 16px;
  }

  .about-figma-principles {
    padding: 58px 20px;
  }
}

.object-gallery-main img,
.object-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.object-gallery-main img,
.object-map img {
  opacity: 0;
}

.object-gallery-thumbs {
  position: relative;
  display: grid;
  grid-auto-rows: 158.67px;
  gap: 20px;
  height: 516px;
  overflow-y: auto;
  overscroll-behavior: auto;
  padding: 0 10px 0 0;
  scrollbar-width: none;
  --gallery-scrollbar-size: 5px;
  --gallery-scrollbar-track: #fff;
  --gallery-scrollbar-thumb: var(--gold);
  --gallery-scrollbar-thumb-offset: 0px;
  --gallery-scrollbar-thumb-size: 86px;
}

.object-gallery-thumbs::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

.object-gallery-thumbs::-webkit-scrollbar-button {
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
}

.object-gallery-thumbs::-webkit-scrollbar-button:single-button,
.object-gallery-thumbs::-webkit-scrollbar-button:vertical:start:decrement,
.object-gallery-thumbs::-webkit-scrollbar-button:vertical:end:increment,
.object-gallery-thumbs::-webkit-scrollbar-button:horizontal:start:decrement,
.object-gallery-thumbs::-webkit-scrollbar-button:horizontal:end:increment {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

.object-gallery-thumbs::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 999px;
}

.object-gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.object-gallery-thumbs::before,
.object-gallery-thumbs::after {
  content: "";
  position: absolute;
  display: none;
  z-index: 4;
  pointer-events: none;
  border-radius: 999px;
}

.object-gallery-thumbs.has-custom-scrollbar::before,
.object-gallery-thumbs.has-custom-scrollbar::after {
  display: block;
}

.object-gallery-thumbs[data-scrollbar-axis="y"]::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--gallery-scrollbar-size);
  background: var(--gallery-scrollbar-track);
}

.object-gallery-thumbs[data-scrollbar-axis="y"]::after {
  top: var(--gallery-scrollbar-thumb-offset);
  right: 0;
  width: var(--gallery-scrollbar-size);
  height: var(--gallery-scrollbar-thumb-size);
  background: var(--gallery-scrollbar-thumb);
}

.object-gallery-thumbs[data-scrollbar-axis="x"]::before {
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--gallery-scrollbar-track);
}

.object-gallery-thumbs[data-scrollbar-axis="x"]::after {
  left: var(--gallery-scrollbar-thumb-offset);
  bottom: 0;
  width: var(--gallery-scrollbar-thumb-size);
  height: 6px;
  background: var(--gallery-scrollbar-thumb);
}

.object-thumb {
  display: block;
  min-height: 158.67px;
  border: 0;
  border-radius: 12px;
  background: #d9dde4 var(--thumb-bg) center / cover no-repeat;
  cursor: pointer;
}

.object-thumb.active {
  box-shadow: 0 0 0 3px var(--gold) inset;
}

.object-gallery-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .2s ease;
}

.object-gallery-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.object-gallery-prev {
  left: 24px;
}

.object-gallery-next {
  right: 24px;
}

.object-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.object-gallery-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
}

.object-gallery-dots span.active {
  background: #fff;
}

.object-map {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e8edf5 var(--object-map) center / cover no-repeat;
}

.object-map.has-real-map .figma-real-map-canvas [class*="ground-pane"] {
  filter: grayscale(1) saturate(0) contrast(.94) brightness(1.04);
}

.object-map-large {
  height: 516px;
}

.object-map-pin {
  position: absolute;
  left: var(--pin-x, 51%);
  top: var(--pin-y, 48%);
  width: 34px;
  height: 34px;
  border: 9px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.object-map button,
.object-map-open {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 36px;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.object-price-panel {
  position: relative;
  min-height: 516px;
  padding: 52px 30px 28px;
  border-radius: 16px;
  background: #fff;
}

.object-exclusive {
  position: absolute;
  left: -10px;
  top: -24px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.object-old-price {
  color: rgba(19, 35, 59, .38);
  font-size: 24px;
  line-height: 1;
  text-decoration: line-through;
}

.object-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.object-price-row strong {
  color: var(--ink);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.object-price-row span {
  color: rgba(19, 35, 59, .32);
  font-size: 30px;
}

.object-currency {
  position: absolute;
  top: 84px;
  right: 23px;
  display: flex;
  gap: 10px;
}

.object-currency button {
  width: 51px;
  height: 51px;
  border: 0;
  border-radius: 50%;
  background: #eef0f2;
  color: var(--ink);
  font-size: 18px;
}

.object-currency button.active {
  background: var(--gold);
  color: #fff;
}

.object-price-panel .object-map {
  height: 269px;
  margin-top: 27px;
}

.object-panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.object-green-button,
.object-gold-button,
.object-video-pill {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.object-green-button,
.object-video-pill {
  background: var(--green);
}

.object-gold-button {
  background: var(--gold);
}

.primary-button,
.object-gallery-arrow,
.object-map button,
.object-map-open,
.object-gold-button,
.object-plan-open,
.object-settlement-arrow,
.object-village-more,
.object-see-track .details-link {
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.primary-button:hover,
.object-gallery-arrow:hover,
.object-map button:hover,
.object-map-open:hover,
.object-gold-button:hover,
.object-plan-open:hover,
.object-settlement-arrow:hover,
.object-village-more:hover,
.object-see-track .details-link:hover {
  background: var(--gold-hover);
}

.primary-button:active,
.object-gallery-arrow:active,
.object-map button:active,
.object-map-open:active,
.object-gold-button:active,
.object-plan-open:active,
.object-settlement-arrow:active,
.object-village-more:active,
.object-see-track .details-link:active {
  background: var(--gold-active);
}

.object-section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.object-video-section,
.object-request-section {
  padding: 78px var(--side);
  background: var(--gray);
}

.object-video-section {
  padding-top: 0;
}

.object-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.object-video-grid h2,
.object-request-form h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(52px, 3.6vw, 72px);
  font-weight: 400;
  line-height: .94;
letter-spacing: 0;
}

.object-video-grid p,
.object-request-form p {
  margin: 24px 0 32px;
  max-width: 520px;
  color: rgba(19, 35, 59, .68);
  font-size: 18px;
  line-height: 1.45;
}

.object-video-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 16px;
  background: #d9dde4 var(--object-bg) center / cover no-repeat;
}

.object-video-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 61, 43, .82);
  color: #fff;
  font-size: 34px;
  transform: translate(-50%, -50%);
}

.object-request-form {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding: 48px;
  border-radius: 18px;
  background: #fff;
}

.object-request-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.object-request-fields label {
  display: grid;
  gap: 8px;
  color: rgba(19, 35, 59, .6);
  font-size: 13px;
}

.object-comment,
.object-consent {
  grid-column: 1 / -1;
}

.object-request-fields input,
.object-request-fields textarea {
  width: 100%;
  border: 1px solid rgba(19, 35, 59, .12);
  border-radius: 12px;
  padding: 0 18px;
  background: #f4f6f7;
  color: var(--ink);
  font: inherit;
}

.object-request-fields input {
  height: 54px;
}

.object-request-fields textarea {
  min-height: 110px;
  padding-top: 16px;
  resize: vertical;
}

.object-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: rgba(19, 35, 59, .68);
  font-size: 13px;
  line-height: 1.3;
}

.object-request-fields .object-consent input[type="checkbox"] {
  appearance: none;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid rgba(19, 35, 59, .28);
  border-radius: 4px;
  background: #fff;
}

.object-request-fields .object-consent input[type="checkbox"]:checked {
  border-color: var(--gold);
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.1 4.4 8.4 11 1' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.object-request-fields .object-gold-button {
  width: max-content;
  min-width: 210px;
  border: 0;
  cursor: pointer;
}

.object-figma-details {
  padding: 68px var(--side) 80px;
  background: #fff;
}

.figma-object-sale .object-figma-details {
  background: #fff;
}

.object-figma-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  gap: clamp(72px, 9vw, 180px);
  align-items: start;
  justify-content: space-between;
}

.object-figma-description {
  max-width: 820px;
}

.object-figma-details h2 {
  margin: 0 0 25px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: .95;
letter-spacing: 0;
}

.object-figma-details p {
  margin: 0 0 0;
  color: rgba(19, 35, 59, .88);
  font-size: 15px;
  line-height: 1.22;
}

.object-figma-details p + p {
  margin-top: 14px;
}

.object-read-more {
  margin-top: 24px;
  border: 0;
  background: transparent;
  color: rgba(19, 35, 59, .46);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  line-height: 1;
}

.object-read-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  font-size: 0;
  line-height: 1;
}

.object-read-more-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.object-read-more[aria-expanded="true"] .object-read-more-icon::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

.object-accordion {
  display: grid;
  gap: 15px;
}

.object-accordion details {
  border-radius: 10px;
  background: #e3e5e8;
  color: var(--ink);
}

.object-accordion summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  list-style: none;
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  cursor: pointer;
letter-spacing: 0;
}

.object-accordion summary::-webkit-details-marker {
  display: none;
}

.object-accordion summary::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) translate(-2px, -2px);
}

.object-accordion details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.object-accordion details > div {
  display: grid;
  gap: 6px;
  padding: 0 20px 20px;
}

.object-accordion span {
  margin-top: 10px;
  color: rgba(19, 35, 59, .46);
  font-size: 13px;
}

.object-accordion strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

.object-figma-related {
  padding: 76px var(--side) 88px;
  background: var(--gray);
}

.figma-object-village .object-figma-related {
  background: #fff;
}

.object-plans-section,
.object-settlement-section,
.object-villages-cloud {
  padding: 74px var(--side);
  background: #fff;
}

.object-infra-section {
  padding: 74px var(--side) 48px;
  background: #fff;
}

.object-plans-section h2,
.object-settlement-section h2,
.object-infra-section h2,
.object-see-section h2,
.object-villages-cloud h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: .95;
letter-spacing: 0;
}

.object-infra-shell {
  position: relative;
  width: 100%;
  min-height: 257px;
  overflow: hidden;
  border-radius: 12px;
  padding: 28px 27px 26px;
  box-sizing: border-box;
  background: #ebe6cf;
  color: var(--ink);
}

.object-infra-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--object-infra-pattern) right center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.object-infra-grid {
  position: relative;
  z-index: 1;
}

.object-infra-section h2 {
  margin-bottom: 30px;
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: 0;
}

.object-infra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 58px;
  row-gap: 33px;
}

.object-infra-group {
  position: relative;
  min-width: 0;
}

.object-infra-heading {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
  transition: color .2s ease;
}

.object-infra-heading:hover,
.object-infra-group:hover .object-infra-heading {
  color: #BEA575;
}

.object-infra-heading span {
  font-size: 25px;
  line-height: 1;
  transform: translateY(-1px);
}

.object-infra-list {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.object-infra-item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #74808a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.18;
  white-space: nowrap;
}

.object-infra-item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 25px;
  height: 19px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #c5b98e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.object-infra-more {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  margin-top: 4px;
  color: #74808a;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.object-infra-more span {
  transform: translateY(-1px);
}

.object-plans-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, .95fr);
  gap: 18px;
  margin-top: 38px;
}

.object-plan-card {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 26px;
  align-items: end;
  padding: 24px;
  border-radius: 18px;
  background: #e3e6e9;
  overflow: hidden;
}

.object-plan-tabs {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  gap: 10px;
}

.object-plan-tabs button {
  min-width: 82px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
}

.object-plan-tabs button:hover {
  color: var(--gold);
}

.object-plan-tabs button.active {
  background: var(--gold);
  color: #fff;
}

.object-plan-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(19, 35, 59, .64);
  font-size: 14px;
  line-height: 1.25;
}

.object-plan-scheme {
  position: relative;
  min-height: 250px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(19, 35, 59, .22) 24% 24.8%, transparent 24.8% 100%),
    linear-gradient(90deg, transparent 0 52%, rgba(19, 35, 59, .22) 52% 52.8%, transparent 52.8% 100%),
    linear-gradient(0deg, transparent 0 36%, rgba(19, 35, 59, .22) 36% 36.8%, transparent 36.8% 100%),
    linear-gradient(0deg, transparent 0 68%, rgba(19, 35, 59, .22) 68% 68.8%, transparent 68.8% 100%),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(19, 35, 59, .12);
}

.object-plan-scheme span {
  position: absolute;
  border: 2px solid rgba(19, 35, 59, .55);
  background: rgba(197, 166, 99, .11);
}

.object-plan-scheme span:nth-child(1) { left: 8%; top: 18%; width: 28%; height: 22%; }
.object-plan-scheme span:nth-child(2) { left: 40%; top: 14%; width: 24%; height: 28%; }
.object-plan-scheme span:nth-child(3) { left: 67%; top: 18%; width: 22%; height: 22%; }
.object-plan-scheme span:nth-child(4) { left: 9%; top: 48%; width: 34%; height: 28%; }
.object-plan-scheme span:nth-child(5) { left: 48%; top: 50%; width: 19%; height: 30%; }
.object-plan-scheme span:nth-child(6) { left: 70%; top: 50%; width: 20%; height: 30%; }

.object-plan-scheme.is-second span:nth-child(1) { left: 8%; top: 14%; width: 20%; height: 26%; }
.object-plan-scheme.is-second span:nth-child(2) { left: 32%; top: 14%; width: 18%; height: 26%; }
.object-plan-scheme.is-second span:nth-child(3) { left: 54%; top: 14%; width: 36%; height: 26%; }
.object-plan-scheme.is-second span:nth-child(4) { left: 8%; top: 48%; width: 30%; height: 32%; }
.object-plan-scheme.is-second span:nth-child(5) { left: 42%; top: 48%; width: 22%; height: 32%; }
.object-plan-scheme.is-second span:nth-child(6) { left: 68%; top: 48%; width: 22%; height: 32%; }

.object-plan-open {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.object-plan-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 18px;
  background: #d9dde4 var(--object-bg) center / cover no-repeat;
  cursor: crosshair;
  transition: background-image .16s ease;
}

.object-settlement-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(420px, 1fr);
  gap: 78px;
  align-items: start;
}

.object-settlement-section p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(19, 35, 59, .88);
  font-size: 15px;
  line-height: 1.22;
}

.object-settlement-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 32px;
}

.object-settlement-actions .object-gold-button {
  min-width: 170px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
}

.object-settlement-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 14px;
}

.object-settlement-main,
.object-settlement-thumbs span,
.object-settlement-thumbs button {
  border-radius: 12px;
  background: #d9dde4 var(--object-bg) center / cover no-repeat;
}

.object-settlement-main {
  min-height: 330px;
}

.object-settlement-thumbs {
  display: grid;
  gap: 12px;
}

.object-settlement-thumbs span,
.object-settlement-thumbs button {
  min-height: 102px;
}

.object-settlement-thumbs button {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.object-see-section {
  position: relative;
  padding: 82px var(--side) 72px;
  overflow: hidden;
  background: var(--gray);
}

.object-see-section::after {
  content: "";
  position: absolute;
  display: block;
  left: -10vw;
  right: -10vw;
  bottom: -1px;
  height: clamp(62px, 4.9vw, 94px);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #fff;
  pointer-events: none;
  z-index: 0;
}

.object-see-section > .section-inner {
  position: relative;
  z-index: 1;
}

.object-see-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.object-see-head h2 {
  font-size: clamp(58px, 4vw, 80px);
}

.object-see-tabs {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
}

.object-see-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: transparent;
  color: rgba(19, 35, 59, .72);
  font-size: 13px;
}

.object-see-tabs button.active {
  background: var(--gold);
  color: #fff;
}

.object-see-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 1fr);
  gap: 18px;
  margin-top: 38px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.object-see-track .property-card {
  min-width: 310px;
  scroll-snap-align: start;
}

.object-villages-cloud-grid {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}

.object-village-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.object-village-tags a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef0f2;
  color: rgba(19, 35, 59, .76);
  font-size: 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.object-village-tags a:hover {
  background: #e1e4e8;
  color: var(--ink);
}

.object-village-tags a:last-child {
  background: var(--gold);
  color: #fff;
}

.object-gallery-video {
  display: none;
}

.object-fact-icon img,
.object-tag img,
.object-exclusive img,
.object-green-button img,
.object-video-pill img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.object-plan-scheme img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.object-village-tags .object-village-pill,
.object-village-more {
  font-weight: 400;
  text-decoration: none;
}

.object-village-pill em {
  font-style: normal;
}

@media (min-width: 761px) {
  .page-object .site-header {
    min-height: 111px;
    background: var(--gray);
  }

  .figma-object-page .section-inner {
    width: 1740px;
    max-width: calc(100vw - 180px);
  }

  .object-figma-hero {
    height: 835px;
    padding: 92px var(--side) 0;
    box-sizing: border-box;
  }

  .object-figma-breadcrumbs {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .object-figma-title-row {
    margin-bottom: 57px;
  }

  .object-figma-title-row h1 {
    font-size: 90px;
    line-height: .9;
    letter-spacing: 0;
  }

  .object-id-pill {
    min-width: 136px;
    min-height: 56px;
    font-size: 25px;
  }

  .object-figma-layout {
    position: relative;
    grid-template-columns: 860px 262px 566px;
    gap: 20px;
  }

  .object-figma-layout::after {
    content: "";
    position: absolute;
    display: block;
    left: calc(860px + 20px + 262px - 7px);
    top: 0;
    bottom: 0;
    width: 7px;
    height: auto;
    border-radius: 30px;
    background: linear-gradient(var(--gold) 0 85px, #fff 85px 100%);
    pointer-events: none;
  }

  .object-gallery-main {
    height: 537px;
    overflow: visible;
    border-radius: 20px;
  }

  .object-gallery-main > img {
    border-radius: 20px;
  }

  .object-gallery-video {
    position: absolute;
    z-index: 5;
    left: 22px;
    bottom: 20px;
    width: 304px;
    min-height: 60px;
    display: inline-flex;
    justify-content: space-between;
    padding: 0 5px 0 20px;
    font-size: 20px;
    font-weight: 300;
  }

  .object-gallery-video span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
  }

  .object-gallery-video img {
    width: 34px;
    height: 27px;
    opacity: 1;
  }

  .object-gallery-arrow {
    width: 70px;
    height: 70px;
    font-size: 38px;
  }

  .object-gallery-next {
    right: 24px;
  }

  .object-gallery-prev {
    left: 24px;
  }

  .object-gallery-dots {
    bottom: 20px;
    gap: 9px;
  }

  .object-gallery-thumbs {
    grid-auto-rows: 166px;
    gap: 20px;
    height: 537px;
    padding-right: 17px;
    scrollbar-color: var(--gold) #fff;
    scrollbar-width: none;
  }

  .object-gallery-thumbs::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .object-gallery-thumbs::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 30px;
  }

  .object-gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 30px;
  }

  .object-thumb {
    min-height: 166px;
    border-radius: 20px;
  }

  .object-thumb.active {
    box-shadow: none;
  }

  .object-price-panel {
    width: 566px;
    min-height: 537px;
    margin-left: 12px;
    padding: 57px 30px 20px;
    border-radius: 20px;
  }

  .object-exclusive {
    left: -9px;
    top: -24px;
    min-height: 47px;
    gap: 6px;
    padding: 0 20px;
    border-radius: 0 15px 15px 15px;
    font-size: 25px;
  }

  .object-exclusive img {
    width: 25px;
    height: 25px;
  }

  .object-old-price {
    font-size: 25px;
  }

  .object-price-row strong {
    font-size: 40px;
  }

  .object-currency {
    top: 84px;
    right: 30px;
  }

  .object-price-panel .object-map {
    height: 269px;
    margin-top: 27px;
    border-radius: 20px;
  }

  .object-map-open {
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
  }

  .object-panel-actions {
    grid-template-columns: 304px 212px;
    gap: 10px;
    margin-top: 20px;
  }

  .object-green-button,
  .object-gold-button {
    min-height: 60px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 300;
  }

  .object-green-button img {
    width: 23px;
    height: 23px;
  }

  .object-facts-section {
    height: 224px;
    position: relative;
    z-index: 7;
    margin-top: 0;
    padding: 0 var(--side);
    box-sizing: border-box;
  }

  .object-facts-section .section-inner {
    width: 1741px;
    max-width: calc(100vw - 180px);
    padding: 15px;
    border-radius: 20px;
    background: #fff;
    box-sizing: border-box;
  }

  .object-facts-row {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    height: 85px;
  }

  .object-fact {
    --icon-size: 30px;
    flex: 0 0 auto;
    height: 85px;
    min-height: 85px;
    grid-template-columns: var(--icon-size) auto;
    gap: 15px;
    padding: 20px 30px 20px 25px;
    border-radius: 10px;
    background: #f5f6f7;
    box-shadow: inset 0 0 0 1px rgba(19, 35, 59, .06);
  }

  .object-fact:nth-child(1) { flex-basis: 416px; }
  .object-fact:nth-child(2) { flex-basis: 257px; }
  .object-fact:nth-child(3) { --icon-size: 33px; flex-basis: 199px; }
  .object-fact:nth-child(4) { flex-basis: 276px; }
  .object-fact:nth-child(5) { flex-basis: 252px; }
  .object-fact:nth-child(6) { --icon-size: 40px; flex-basis: 260px; }

  .object-fact-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    border: 0;
    background: transparent;
  }

  .object-fact-icon img {
    width: var(--icon-size);
    height: var(--icon-size);
  }

  .object-fact-icon::before,
  .object-fact-icon::after {
    content: none;
  }

  .object-fact span {
    margin-bottom: 5px;
    color: rgba(19, 35, 59, .46);
    font-size: 18px;
  }

  .object-fact strong,
  .object-fact strong a {
    color: var(--ink);
    font-size: 25px;
    font-weight: 400;
    line-height: .9;
    text-decoration: none;
    text-underline-offset: 3px;
    white-space: nowrap;
  }

  .object-fact:nth-child(n+4) strong,
  .object-fact:nth-child(n+4) strong a {
    text-decoration: none;
  }

  .object-tags-row {
    gap: 5px;
    margin-top: 10px;
  }

  .object-tag {
    min-height: 33px;
    gap: 5px;
    padding: 0 14px;
    border: 0;
    font-size: 14px;
    font-weight: 500;
  }

  .object-tag img {
    width: 14px;
    height: 14px;
  }

  .object-tag.is-brown {
    background: #8f4820;
    color: #fff;
  }

  .object-figma-details {
    height: auto;
    min-height: 560px;
    padding: 80px var(--side) 80px;
    box-sizing: border-box;
  }

  .object-figma-details-grid {
    grid-template-columns: 860px 567px;
    gap: 314px;
    justify-content: start;
  }

  .object-figma-description {
    max-width: 860px;
  }

  .object-figma-details h2 {
    margin-bottom: 50px;
    font-size: 50px;
    line-height: .9;
  }

  .object-description-copy {
    height: auto;
    max-height: none;
    overflow: hidden;
  }

  .object-description-copy.is-expanded {
    overflow: visible;
  }

  .object-figma-details p {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.1;
  }

  .object-figma-details p + p {
    margin-top: 27px;
  }

  .object-read-more {
    margin-top: 40px;
    gap: 16px;
    font-size: 25px;
    font-weight: 500;
  }

  .object-accordion {
    gap: 15px;
  }

  .object-accordion details {
    width: 567px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--gray);
  }

  .object-accordion summary {
    min-height: 60px;
    padding: 0 40px;
    font-size: 30px;
    line-height: .9;
  }

  .object-accordion summary::after {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
    transform: rotate(45deg);
  }

  .object-accordion details[open] summary::after {
    transform: rotate(225deg);
  }

  .object-accordion details > div {
    gap: 13px 20px;
    padding: 24px 40px 30px;
  }

  .object-accordion details:nth-child(2) > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .object-accordion span {
    margin-top: 0;
    font-size: 18px;
    line-height: 1;
  }

  .object-accordion strong {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1;
  }

  .object-plans-section {
    height: 795px;
    padding: 50px var(--side) 0;
    box-sizing: border-box;
  }

  .object-plans-section h2,
  .object-settlement-section h2,
  .object-villages-cloud h2 {
    font-size: 50px;
    line-height: .9;
  }

  .object-plans-grid {
    grid-template-columns: 1153px 567px;
    gap: 20px;
    margin-top: 50px;
  }

  .object-plan-card {
    min-height: 504px;
    grid-template-columns: 401px 692px;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
  }

  .object-plan-tabs {
    left: 20px;
    top: 20px;
  }

  .object-plan-tabs button {
    min-width: 101px;
    min-height: 37px;
    padding: 0 28px;
    font-size: 18px;
  }

  .object-plan-card p {
    align-self: end;
    width: 401px;
    max-width: none;
    margin: 0 0 20px 20px;
    font-size: 20px;
    line-height: 1.1;
  }

  .object-plan-scheme {
    grid-column: 2;
    grid-row: 1;
    width: 692px;
    height: 464px;
    min-height: 464px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: none;
  }

  .object-plan-scheme img {
    height: 100%;
    object-fit: cover;
  }

  .object-plan-open {
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
  }

  .object-plan-photo {
    min-height: 504px;
    border-radius: 30px;
  }

  .object-settlement-section {
    height: auto;
    min-height: 700px;
    padding: 80px var(--side) 0;
    box-sizing: border-box;
  }

  .object-settlement-grid {
    grid-template-columns: 860px 821px;
    gap: 59px;
  }

  .object-settlement-section p {
    height: 336px;
    max-width: 860px;
    margin-top: 50px;
    overflow: hidden;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.1;
  }

  .object-settlement-section.is-expanded p {
    height: auto;
    overflow: visible;
  }

  .object-settlement-actions {
    justify-content: space-between;
    margin-top: 40px;
  }

  .object-settlement-actions .object-read-more {
    margin-top: 0;
    font-size: 18px;
  }

  .object-settlement-actions .object-gold-button {
    width: 296px;
    min-height: 65px;
    font-size: 18px;
  }

  .object-settlement-gallery {
    position: relative;
    grid-template-columns: 522px 279px;
    gap: 20px;
  }

  .object-settlement-gallery::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 7px;
    border-radius: 30px;
    background: linear-gradient(var(--gold) 0 85px, #fff 85px 100%);
    pointer-events: none;
  }

  .object-settlement-main {
    min-height: 537px;
    border-radius: 20px;
  }

  .object-settlement-thumbs {
    gap: 20px;
    height: 537px;
    overflow-y: auto;
    padding-right: 17px;
    scrollbar-color: var(--gold) #fff;
    scrollbar-width: none;
  }

  .object-settlement-thumbs::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .object-settlement-thumbs::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 30px;
  }

  .object-settlement-thumbs::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 30px;
  }

  .object-settlement-thumbs span,
  .object-settlement-thumbs button {
    min-height: 166px;
    border-radius: 20px;
  }

  .object-settlement-scroll {
    display: block;
    width: 7px;
    height: 537px;
    margin-left: -10px;
    border-radius: 30px;
    background: linear-gradient(var(--gold) 0 85px, #fff 85px 100%);
  }

  .object-see-section {
    height: 937px;
    padding: 117px var(--side) 0;
    box-sizing: border-box;
  }

  .object-see-section::after {
    left: -10vw;
    right: -10vw;
    bottom: -1px;
    width: auto;
    height: clamp(62px, 4.9vw, 94px);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: none;
  }

  .object-see-head h2 {
    font-size: 90px;
    line-height: .75;
    letter-spacing: 0;
  }

  .object-see-tabs {
    height: 58px;
    padding: 0;
  }

  .object-see-tabs button {
    min-height: 58px;
    padding: 0 30px 0 25px;
    font-size: 18px;
    cursor: pointer;
  }

  .object-see-track {
    grid-auto-columns: 566px;
    gap: 20px;
    margin-top: 68px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .object-see-track::-webkit-scrollbar {
    display: none;
  }

  .object-see-track .property-card {
    width: 566px;
    min-width: 566px;
    height: 533px;
    min-height: 533px;
    border-radius: 20px;
    box-shadow: none;
  }

  .object-see-track .property-media {
    height: 240px;
  }

  .object-see-track .card-body {
    padding: 29px 25px 24px;
  }

  .object-see-track .card-title {
    font-size: 25px;
    line-height: .9;
  }

  .object-see-arrow {
    position: absolute;
    z-index: 2;
    top: 337px;
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 32px;
    cursor: pointer;
    transition: opacity .2s ease;
  }

  .object-see-prev {
    left: 0;
  }

  .object-see-next {
    right: 0;
  }

  .object-see-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .object-see-track .dark-button {
    background: var(--gold);
    color: #fff;
  }

  .object-villages-cloud {
    min-height: 795px;
    height: auto;
    padding: 125px var(--side) 96px;
    box-sizing: border-box;
    overflow: visible;
  }

  .object-villages-cloud-grid {
    grid-template-columns: 703px 860px;
    gap: 177px;
  }

  .object-villages-cloud h2 {
    max-width: 703px;
  }

  .object-village-tags {
    gap: 10px;
  }

  .object-village-tags .object-village-pill {
    min-height: 60px;
    gap: 20px;
    padding: 0 20px;
    border: 0;
    border-radius: 50px;
    background: var(--gray);
    color: var(--ink);
    font-size: 18px;
  }

  .object-village-pill em {
    min-width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--gold);
  }

  .object-village-more {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    padding: 0 30px;
    border-radius: 80px;
    background: var(--gold);
    color: #fff;
    font-size: 18px;
  }

  .object-village-more span {
    width: 10px;
    height: 10px;
    display: inline-block;
    font-size: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-1px, -2px);
  }

  .page-object .site-footer {
    height: 768px;
    min-height: 768px;
    overflow: hidden;
    box-sizing: border-box;
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .figma-object-page .section-inner {
    width: calc(100vw - 36px);
    max-width: none;
  }

  .figma-object-page > section > .section-inner {
    transform: none;
  }

  .object-facts-section .section-inner {
    width: calc(100vw - 36px);
    max-width: none;
  }

  .object-figma-layout {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 15.1%) minmax(320px, 32.5%);
    gap: 16px;
  }

  .object-figma-layout::after {
    left: calc(100% - 32.5% - 16px - 7px);
  }

  .object-gallery-main,
  .object-gallery-thumbs,
  .object-price-panel {
    height: clamp(410px, 30.8vw, 537px);
    min-height: clamp(410px, 30.8vw, 537px);
  }

  .object-gallery-thumbs {
    grid-auto-rows: clamp(123px, 9.55vw, 166px);
  }

  .object-price-panel {
    margin-left: 0;
    padding-top: 48px;
  }

  .object-price-panel {
    width: auto;
  }

  .object-price-row {
    gap: 8px;
    margin-top: 10px;
  }

  .object-price-row strong {
    font-size: clamp(27px, 2.05vw, 32px);
    white-space: nowrap;
  }

  .object-price-row span {
    font-size: 23px;
  }

  .object-currency {
    top: 78px;
    right: 18px;
    gap: 8px;
  }

  .object-currency button {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .object-panel-actions {
    grid-template-columns: 1fr 1fr;
  }

  .object-green-button,
  .object-gold-button {
    font-size: 16px;
  }

  .object-facts-row {
    display: grid;
    grid-template-columns: 2.3fr 1.5fr 1.2fr 1.4fr 1.3fr 1.3fr;
    gap: 8px;
    height: auto;
    overflow: visible;
  }

  .object-fact {
    min-width: 0;
    min-height: 74px;
    grid-template-columns: 32px auto;
    padding: 16px 14px;
    flex-basis: auto;
  }

  .object-fact-icon {
    width: 32px;
    height: 32px;
  }

  .object-fact span {
    font-size: 14px;
  }

  .object-fact strong,
  .object-fact strong a {
    font-size: 18px;
  }

  .object-figma-details-grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 32.6%);
    gap: 56px;
  }

  .object-figma-description,
  .object-settlement-section p {
    max-width: none;
  }

  .object-figma-details p,
  .object-settlement-section p {
    font-size: 21px;
  }

  .object-accordion details {
    width: 100%;
  }

  .object-accordion summary {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 25px;
  }

  .object-accordion details > div {
    padding-left: 30px;
    padding-right: 30px;
  }

  .object-plans-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 32.6%);
  }

  .object-plan-card {
    grid-template-columns: 34.8% minmax(0, 1fr);
  }

  .object-plan-scheme {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 692 / 464;
  }

  .object-plan-card p {
    font-size: 16px;
  }

  .object-settlement-grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 47.2%);
    gap: 42px;
  }

  .object-settlement-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 34%);
  }

  .object-settlement-main {
    min-height: clamp(360px, 30.8vw, 537px);
  }

  .object-settlement-thumbs span,
  .object-settlement-thumbs button {
    min-height: clamp(110px, 9.55vw, 166px);
  }

  .object-settlement-scroll {
    height: clamp(360px, 30.8vw, 537px);
  }

  .object-settlement-thumbs {
    height: clamp(360px, 30.8vw, 537px);
  }

  .object-see-track {
    grid-auto-columns: minmax(390px, 32vw);
  }

  .object-see-track .property-card {
    width: auto;
    min-width: 0;
  }

  .object-see-next {
    right: 18px;
  }

  .object-see-prev {
    left: 18px;
  }

  .object-villages-cloud-grid {
    grid-template-columns: minmax(360px, 40%) minmax(0, 1fr);
    gap: 56px;
  }

  .object-village-tags .object-village-pill {
    min-height: 42px;
    gap: 10px;
    padding: 0 14px;
    font-size: 13px;
  }

  .object-village-pill em {
    min-width: 22px;
    height: 22px;
    font-size: 13px;
  }
}

@media (max-width: 1180px) {
  .object-figma-layout {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .object-facts-section {
    margin-top: 0;
  }

  .object-figma-layout::after {
    display: none;
  }

  .object-facts-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .object-price-panel,
  .object-map-large {
    grid-column: 1 / -1;
  }

  .object-price-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .page-object .site-header,
  .page-objectVillage .site-header {
    min-height: 80px;
    padding: 9px 20px 0;
  }

  .page-object .brand-logo,
  .page-objectVillage .brand-logo {
    width: 166px;
    height: 49px;
    gap: 8px;
  }

  .page-object .brand-emblem,
  .page-objectVillage .brand-emblem {
    width: 49px;
    height: 49px;
    flex-basis: 49px;
  }

  .page-object .brand-wordmark,
  .page-objectVillage .brand-wordmark {
    width: 111px;
    height: 31px;
  }

  .page-object .brand-tagline,
  .page-objectVillage .brand-tagline {
    width: 89px;
    height: 6px;
  }

  .page-object .icon-link.search-link,
  .page-objectVillage .icon-link.search-link {
    width: 46px;
    height: 46px;
    display: inline-grid;
    background: #3b485c;
  }

  .page-object .icon-link.search-link img,
  .page-objectVillage .icon-link.search-link img {
    filter: none;
  }

  .page-object .menu-toggle,
  .page-objectVillage .menu-toggle {
    display: inline-grid;
    width: 31px;
    height: 31px;
    background: transparent;
  }

  .page-object .menu-toggle span,
  .page-objectVillage .menu-toggle span {
    left: 0;
    width: 31px;
    height: 2px;
    background: var(--ink);
    filter: none;
  }

  .page-object .menu-toggle span:first-child,
  .page-objectVillage .menu-toggle span:first-child {
    top: 8px;
  }

  .page-object .menu-toggle span:last-child,
  .page-objectVillage .menu-toggle span:last-child {
    bottom: 8px;
  }

  .object-figma-hero {
    padding: 19px 20px 0;
  }

  .object-facts-section {
    padding: 18px 20px 34px;
  }

  .object-facts-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .object-fact {
    min-height: 54px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .object-fact-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }

  .object-fact span {
    font-size: 10px;
  }

  .object-fact strong {
    font-size: 12px;
  }

  .object-tags-row {
    gap: 6px;
  }

  .object-tag {
    min-height: 22px;
    padding: 0 9px;
    font-size: 10px;
  }

  .object-figma-breadcrumbs {
    gap: 8px;
    margin-bottom: 21px;
    font-size: 12px;
  }

  .object-figma-breadcrumbs a:not(:first-child),
  .object-figma-breadcrumbs span:not(:first-child) {
    display: none;
  }

  .object-figma-breadcrumbs::before {
    content: "‹";
    color: rgba(19, 35, 59, .42);
    font-size: 20px;
    line-height: 1;
  }

  .object-figma-title-row {
    display: block;
    margin-bottom: 16px;
  }

  .object-figma-title-row h1 {
    font-size: 40px;
    line-height: .83;
    letter-spacing: 0;
  }

  .figma-object-village .object-figma-title-row h1 {
    font-size: 42px;
  }

  .object-figma-title-actions {
    display: none;
  }

  .object-mobile-actions {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 18px;
  }

  .figma-object-village .object-mobile-actions {
    display: none;
  }

  .object-id-pill {
    min-width: 77px;
    min-height: 37px;
    font-size: 12px;
  }

  .object-heart-line {
    width: 37px;
    height: 37px;
    font-size: 24px;
  }

  .object-video-pill {
    min-height: 37px;
    justify-content: space-between;
    padding: 0 5px 0 14px;
    font-size: 11px;
  }

  .object-video-pill span {
    width: 27px;
    height: 27px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
  }

  .object-figma-layout,
  .object-figma-layout-sale {
    display: block;
  }

  .object-gallery-main {
    height: 196px;
    border-radius: 10px;
  }

  .object-gallery-arrow {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .object-gallery-prev {
    left: 16px;
  }

  .object-gallery-next {
    right: 16px;
  }

  .object-gallery-dots {
    bottom: 8px;
    gap: 6px;
  }

  .object-gallery-dots span {
    width: 6px;
    height: 6px;
  }

  .object-gallery-thumbs {
    display: flex;
    gap: 6px;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 8px;
    margin-top: 5px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .object-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .object-gallery-thumbs:not(.has-custom-scrollbar)::before,
  .object-gallery-thumbs:not(.has-custom-scrollbar)::after {
    display: none;
  }

  .object-thumb {
    flex: 0 0 116px;
    height: 98px;
    min-height: 98px;
    border-radius: 9px;
    scroll-snap-align: start;
  }

  .object-price-panel {
    min-height: 0;
    margin-top: 24px;
    padding: 31px 12px 13px;
    border-radius: 14px;
  }

  .object-exclusive {
    left: 0;
    top: -4px;
    min-height: 25px;
    padding: 0 11px;
    border-radius: 6px;
    font-size: 13px;
  }

  .object-old-price {
    font-size: 14px;
  }

  .object-price-row {
    margin-top: 8px;
  }

  .object-price-row strong {
    font-size: 22px;
  }

  .object-price-row span {
    font-size: 20px;
  }

  .object-currency {
    top: 43px;
    right: 13px;
    gap: 7px;
  }

  .object-currency button {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .object-price-panel .object-map,
  .object-map-large {
    height: 140px;
    margin-top: 14px;
    border-radius: 10px;
  }

  .object-map button,
  .object-map-open {
    right: 9px;
    bottom: 9px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .object-map-pin {
    width: 23px;
    height: 23px;
    border-width: 7px;
  }

  .object-panel-actions {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 16px;
  }

  .object-green-button,
  .object-gold-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
    white-space: normal;
  }

  .object-figma-details {
    padding: 47px 20px 60px;
  }

  .object-figma-details-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .object-figma-details h2 {
    font-size: 32px;
  }

  .object-figma-details p {
    font-size: 14px;
  }

  .object-accordion summary {
    font-size: 17px;
  }

  .object-figma-related {
    padding: 58px 20px 70px;
  }

  .object-video-section,
  .object-request-section {
    padding: 48px 20px;
  }

  .object-video-section {
    padding-top: 0;
  }

  .object-video-grid,
  .object-request-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .object-video-grid h2,
  .object-request-form h2 {
    font-size: 34px;
  }

  .object-video-grid p,
  .object-request-form p {
    margin: 16px 0 22px;
    font-size: 14px;
  }

  .object-video-card {
    min-height: 210px;
    border-radius: 12px;
  }

  .object-request-form {
    padding: 24px 14px;
    border-radius: 14px;
  }

  .object-request-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .object-request-fields .object-gold-button {
    width: 100%;
  }

  .object-plans-section,
  .object-settlement-section,
  .object-villages-cloud {
    padding: 48px 20px;
  }

  .object-plans-section h2,
  .object-settlement-section h2,
  .object-see-section h2,
  .object-villages-cloud h2 {
    font-size: 32px;
    line-height: 1;
  }

  .object-plans-grid,
  .object-settlement-grid,
  .object-villages-cloud-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .object-plans-grid {
    margin-top: 24px;
  }

  .object-plan-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 68px 14px 14px;
    border-radius: 14px;
  }

  .object-plan-tabs {
    left: 14px;
    top: 14px;
  }

  .object-plan-tabs button {
    min-width: 72px;
    min-height: 32px;
    font-size: 12px;
  }

  .object-plan-card p {
    max-width: none;
    font-size: 13px;
  }

  .object-plan-scheme {
    min-height: 184px;
  }

  .object-plan-open {
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .object-plan-photo {
    min-height: 220px;
    border-radius: 14px;
  }

  .object-settlement-grid {
    align-items: stretch;
  }

  .object-settlement-section p {
    max-width: none;
    margin-top: 18px;
    font-size: 14px;
  }

  .object-settlement-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .object-settlement-actions .object-gold-button {
    min-width: 170px;
  }

  .object-settlement-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .object-settlement-main {
    min-height: 230px;
  }

  .object-settlement-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .object-settlement-thumbs span,
  .object-settlement-thumbs button {
    min-height: 74px;
    border-radius: 9px;
  }

  .object-see-section {
    padding: 52px 20px 46px;
  }

  .object-see-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .object-see-head h2 {
    font-size: 42px;
  }

  .object-see-tabs {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .object-see-tabs::-webkit-scrollbar {
    display: none;
  }

  .object-see-tabs button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
  }

  .object-see-track {
    grid-auto-columns: minmax(260px, 82vw);
    gap: 12px;
    margin-top: 22px;
    scrollbar-width: none;
  }

  .object-see-track::-webkit-scrollbar {
    display: none;
  }

  .object-see-track .property-card {
    min-width: 0;
  }

  .object-villages-cloud-grid {
    gap: 24px;
  }

  .object-village-tags {
    gap: 8px;
  }

  .object-village-tags a {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }
}




/* Blog page Figma refresh */
.page-blog {
  background: #fff;
  color: var(--navy);
}

.page-blog .site-header {
  background: var(--gray);
  color: var(--navy);
}

.page-blog .site-header .brand img,
.page-blog .favorite-link img,
.page-blog .social-links img,
.page-blog .menu-toggle span {
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(967%) hue-rotate(178deg) brightness(90%) contrast(94%);
}

.page-blog .icon-link.search-link {
  background: #344258;
}

.page-blog .icon-link.search-link img {
  filter: none;
}

.page-blog .header-nav a,
.page-blog .favorite-link,
.page-blog .social-links a {
  color: var(--navy);
}

.page-blog .header-nav a:first-child {
  color: var(--gold);
}

.page-blog .phone-link {
  background: #344258;
  color: #fff;
}

.page-blog .menu-toggle {
  background: #344258;
  color: #fff;
}

.blog-figma-page {
  background: #fff;
}

.blog-figma-hero {
  min-height: 760px;
  padding: 91px var(--side) 94px;
  background: #fff;
  color: var(--navy);
}

.blog-figma-inner {
  position: relative;
}

.blog-figma-breadcrumbs {
  margin-bottom: 34px;
  color: rgba(19, 35, 59, .48);
  font-size: 18px;
}

.blog-figma-breadcrumbs a {
  color: rgba(19, 35, 59, .36);
}

.blog-figma-hero h1 {
  max-width: 1020px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(82px, 5.05vw, 101px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
}

.blog-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.blog-category-pills a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 10px 0 20px;
  border-radius: 999px;
  background: #e7e9eb;
  color: var(--navy);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.blog-category-pills a.active {
  background: var(--gold);
  color: #fff;
}

.blog-category-pills span {
  min-width: 35px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}

.blog-figma-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 570px));
  justify-content: end;
  gap: 78px 104px;
  margin-top: 98px;
}

.blog-figma-item {
  min-height: 292px;
}

.blog-figma-item-featured {
  grid-column: 2;
}

.blog-figma-item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.blog-figma-item time {
  align-self: flex-start;
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  margin-bottom: 25px;
  border-radius: 999px;
  background: #e7e9eb;
  color: #4b5870;
  font-size: 18px;
  line-height: 1;
}

.blog-figma-item h2 {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
}

.blog-figma-item p {
  max-width: 540px;
  margin: 0;
  color: rgba(19, 35, 59, .74);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
}

.blog-figma-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: auto;
  padding-top: 26px;
  color: #4f5b70;
  font-size: 18px;
  line-height: 1;
}

.blog-figma-meta span::first-letter {
  color: var(--gold);
}

@media (max-width: 1320px) {
  .blog-figma-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 58px 56px;
  }

  .blog-figma-item h2 {
    font-size: 28px;
  }

  .blog-figma-item p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .blog-figma-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 44px;
  }

  .blog-figma-item-featured {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .page-blog .site-header {
    min-height: 82px;
    padding: 14px 20px 0;
  }

  .blog-figma-hero {
    min-height: auto;
    padding: 19px 20px 70px;
  }

  .blog-figma-breadcrumbs {
    gap: 5px;
    margin: 0 0 30px;
    font-size: 13px;
  }

  .blog-figma-breadcrumbs a,
  .blog-figma-breadcrumbs span:first-of-type {
    display: none;
  }

  .blog-figma-breadcrumbs span:last-child::before {
    content: "<";
    margin-right: 7px;
    color: rgba(19, 35, 59, .42);
  }

  .blog-figma-hero h1 {
    max-width: 350px;
    font-size: 50px;
    line-height: .92;
  }

  .blog-category-pills {
    flex-wrap: nowrap;
    gap: 8px;
    margin: 28px -20px 0;
    padding: 0 20px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .blog-category-pills::-webkit-scrollbar {
    display: none;
  }

  .blog-category-pills a {
    min-height: 40px;
    gap: 10px;
    padding: 0 8px 0 15px;
    font-size: 14px;
  }

  .blog-category-pills span {
    min-width: 30px;
    height: 24px;
    font-size: 12px;
  }

  .blog-figma-grid {
    margin-top: 58px;
  }

  .blog-figma-item {
    min-height: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(19, 35, 59, .12);
  }

  .blog-figma-item time {
    min-height: 34px;
    margin-bottom: 20px;
    padding: 0 16px;
    font-size: 14px;
  }

  .blog-figma-item h2 {
    font-size: 27px;
    line-height: .98;
  }

  .blog-figma-item p {
    font-size: 16px;
    line-height: 1.15;
  }

  .blog-figma-meta {
    gap: 18px;
    padding-top: 22px;
    font-size: 14px;
  }
}

/* 404 page: Figma node 42:75268 */
.page-notFound {
  --error-side: clamp(20px, 6.25vw, 90px);
  background: var(--navy);
}

.page-notFound .site-header {
  padding-right: var(--error-side);
  padding-left: var(--error-side);
  background: var(--navy);
  color: #fff;
}

.page-notFound .phone-link,
.page-notFound .social-links {
  display: none;
}

.page-notFound .favorite-link span {
  display: inline;
}

.page-notFound .site-footer {
  --footer-side: var(--error-side);
}

.error-figma-page {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.error-figma-hero {
  position: relative;
  min-height: max(900px, calc(100vh - 223px));
  padding: 0 var(--error-side);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(28, 54, 85, .52), rgba(19, 35, 59, 0) 45%),
    var(--navy);
}

.error-figma-hero::before,
.error-figma-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 880px;
  height: 880px;
  background: url("/figma-ui/assets/images/logo-emblem.svg") center / contain no-repeat;
  opacity: .045;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.error-figma-hero::before {
  left: -238px;
  top: -44px;
  transform: rotate(-18deg);
}

.error-figma-hero::after {
  left: 286px;
  top: 342px;
  width: 650px;
  height: 650px;
  transform: rotate(22deg);
}

.error-figma-inner {
  position: relative;
  z-index: 1;
  min-height: max(900px, calc(100vh - 223px));
}

.error-figma-copy {
  position: relative;
  z-index: 3;
  width: min(580px, 48vw);
  padding-top: clamp(168px, 18.3vh, 220px);
}

.error-figma-copy h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(78px, 6.65vw, 96px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: 0;
}

.error-home-button {
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 64px;
  padding: 0 42px;
  border-radius: 999px;
  background: #c4ab77;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(190, 165, 117, .12);
}

.error-home-button span {
  font-size: 30px;
  line-height: 1;
}

.error-figma-code {
  position: absolute;
  top: 178px;
  right: max(-480px, -33vw);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 520px;
  opacity: .88;
  pointer-events: none;
}

.error-digit {
  color: rgba(177, 190, 207, .31);
  font-family: var(--font-body);
  font-size: clamp(430px, 38vw, 610px);
  font-weight: 300;
  line-height: .78;
  letter-spacing: 0;
}

.error-zero {
  width: clamp(246px, 23vw, 348px);
  height: clamp(360px, 37vw, 520px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(177, 190, 207, .34);
}

.error-zero img {
  width: 72%;
  height: 82%;
  object-fit: contain;
  opacity: .72;
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(967%) hue-rotate(178deg) brightness(90%) contrast(94%);
}

@media (max-width: 1180px) {
  .error-figma-copy {
    width: min(580px, 70vw);
  }

  .error-figma-code {
    right: -560px;
    opacity: .52;
  }
}

@media (max-width: 760px) {
  .page-notFound {
    --error-side: 18px;
  }

  .page-notFound .favorite-link {
    display: none;
  }

  .error-figma-hero {
    min-height: calc(100vh - 82px);
  }

  .error-figma-hero::before {
    left: -210px;
    top: 26px;
    width: 560px;
    height: 560px;
  }

  .error-figma-hero::after {
    left: 90px;
    top: 430px;
    width: 360px;
    height: 360px;
  }

  .error-figma-inner {
    min-height: calc(100vh - 82px);
  }

  .error-figma-copy {
    width: 100%;
    padding-top: clamp(96px, 16vh, 138px);
  }

  .error-figma-copy h1 {
    max-width: 340px;
    font-size: 54px;
    line-height: .9;
  }

  .error-home-button {
    min-height: 56px;
    margin-top: 42px;
    padding: 0 25px;
    font-size: 17px;
  }

  .error-home-button span {
    font-size: 21px;
  }

  .error-figma-code {
    top: 330px;
    right: -318px;
    height: 280px;
    opacity: .26;
  }

  .error-digit {
    font-size: 272px;
  }

  .error-zero {
    width: 150px;
    height: 226px;
  }
}

/* Owners page: Figma node 42:73995 */
.page-owners {
  --owners-side: clamp(20px, 6.25vw, 90px);
  background: #fff;
}

.page-owners .site-header {
  padding-right: var(--owners-side);
  padding-left: var(--owners-side);
  background: var(--navy);
  color: #fff;
}

.page-owners .phone-link,
.page-owners .social-links {
  display: none;
}

.page-owners .site-footer {
  --footer-side: var(--owners-side);
}

.owners-figma-page {
  overflow: hidden;
  background: #fff;
  color: var(--navy);
}

.owners-figma-hero {
  position: relative;
  min-height: 970px;
  padding: 92px var(--owners-side) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 48%, rgba(15, 35, 59, .9), rgba(14, 30, 50, 0) 42%),
    var(--navy);
  color: #fff;
}

.owners-figma-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 56px;
  background: linear-gradient(180deg, rgba(231, 233, 235, 0), #e7e9eb 72%);
  pointer-events: none;
}

.owners-figma-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 878px;
}

.owners-figma-breadcrumbs {
  margin-bottom: 66px;
  gap: 18px;
  color: rgba(255, 255, 255, .42);
  font-size: 17px;
}

.owners-figma-breadcrumbs a {
  color: rgba(255, 255, 255, .42);
}

.owners-figma-breadcrumbs span:last-child {
  color: rgba(255, 255, 255, .9);
}

.owners-figma-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 57vw);
}

.owners-figma-copy h1,
.owners-figma-copy h2,
.owners-sales-section h2,
.owners-description-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
letter-spacing: 0;
}

.owners-figma-copy h1 {
  color: #fff;
  font-size: clamp(72px, 5.95vw, 96px);
  line-height: .92;
  letter-spacing: 0;
}

.owners-figma-copy h2 {
  max-width: 630px;
  margin-top: 96px;
  color: #fff;
  font-size: clamp(42px, 3.9vw, 62px);
  line-height: .9;
  letter-spacing: 0;
}

.owners-goals {
  display: grid;
  gap: 12px;
  width: min(568px, 100%);
  margin-top: 84px;
}

.owners-goals span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0 26px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .95);
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.15;
  backdrop-filter: blur(22px);
}

.owners-hero-art {
  position: absolute;
  top: 8px;
  right: -2px;
  z-index: 1;
  width: min(48vw, 680px);
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.owners-sales-section {
  position: relative;
  padding: 128px var(--owners-side) 136px;
  overflow: hidden;
  background: #e7e9eb;
}

.owners-sales-section::before,
.owners-description-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 100% 100%, transparent 0 94px, rgba(19, 35, 59, .10) 95px 98px, transparent 99px),
    radial-gradient(circle at 0 100%, transparent 0 94px, rgba(19, 35, 59, .07) 95px 98px, transparent 99px);
  background-size: 280px 280px;
  background-position: -68px 24px;
}

.owners-sales-inner,
.owners-description-inner {
  position: relative;
  z-index: 1;
}

.owners-sales-section h2 {
  color: var(--navy);
  font-size: clamp(72px, 6.5vw, 96px);
  line-height: .92;
  letter-spacing: 0;
}

.owners-sales-track {
  display: flex;
  gap: 20px;
  width: max-content;
  margin-top: 62px;
}

.owners-sales-card {
  width: 374px;
  height: 480px;
  flex: 0 0 374px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 40px 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 72px rgba(19, 35, 59, .06);
}

.owners-sales-card h3 {
  margin: 0;
  color: #6d7787;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.08;
}

.owners-card-icon {
  position: relative;
  width: 92px;
  height: 92px;
  color: rgba(190, 165, 117, .34);
}

.owners-card-icon::before,
.owners-card-icon::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.owners-icon-audience::before {
  left: 31px;
  top: 25px;
  width: 30px;
  height: 30px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.owners-icon-audience::after {
  left: 21px;
  top: 58px;
  width: 50px;
  height: 24px;
  border: 4px solid currentColor;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom: 0;
}

.owners-icon-board::before {
  left: 18px;
  top: 18px;
  width: 58px;
  height: 58px;
  border: 4px solid currentColor;
  border-radius: 4px;
}

.owners-icon-board::after {
  left: 28px;
  top: 8px;
  width: 38px;
  height: 18px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.owners-icon-camera::before {
  left: 13px;
  top: 29px;
  width: 68px;
  height: 48px;
  border: 4px solid currentColor;
  border-radius: 11px;
}

.owners-icon-camera::after {
  left: 34px;
  top: 42px;
  width: 26px;
  height: 26px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.owners-icon-video::before {
  left: 16px;
  top: 30px;
  width: 62px;
  height: 46px;
  border: 4px solid currentColor;
  border-radius: 8px;
}

.owners-icon-video::after {
  left: 16px;
  top: 17px;
  width: 62px;
  height: 22px;
  border: 4px solid currentColor;
  border-radius: 8px 8px 2px 2px;
  transform: skewY(-12deg);
}

.owners-icon-megaphone::before {
  left: 18px;
  top: 32px;
  width: 58px;
  height: 34px;
  border: 4px solid currentColor;
  border-left-width: 18px;
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 82%);
}

.owners-icon-megaphone::after {
  left: 31px;
  top: 62px;
  width: 20px;
  height: 22px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(-12deg);
}

.owners-icon-handshake::before {
  left: 12px;
  top: 37px;
  width: 68px;
  height: 28px;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: skewX(-22deg);
}

.owners-icon-handshake::after {
  left: 28px;
  top: 25px;
  width: 36px;
  height: 42px;
  border: 4px solid currentColor;
  border-radius: 9px;
  transform: rotate(45deg);
}

.owners-description-section {
  position: relative;
  padding: 116px var(--owners-side) 118px;
  overflow: hidden;
  background: #fff;
}

.owners-description-section::before {
  opacity: .18;
  background-position: -82px 94px;
}

.owners-description-section h2 {
  color: var(--navy);
  font-size: clamp(70px, 6.4vw, 96px);
  line-height: .92;
  letter-spacing: 0;
}

.owners-stage-table {
  margin-top: 110px;
}

.owners-stage-row {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  min-height: 110px;
  border-bottom: 1px solid rgba(19, 35, 59, .12);
}

.owners-stage-label {
  padding: 30px 40px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
}

.owners-stage-content {
  padding: 26px 0 30px;
}

.owners-stage-content h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 2.7vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.owners-stage-row-open {
  min-height: 520px;
}

.owners-stage-row-open .owners-stage-content {
  padding-top: 24px;
}

.owners-stage-row-open h3 {
  margin-bottom: 72px;
}

.owners-stage-row-open ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.owners-stage-row-open li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  padding: 17px 0 18px;
  border-top: 1px solid rgba(19, 35, 59, .11);
}

.owners-stage-row-open li:first-child {
  border-top: 0;
}

.owners-stage-row-open li span {
  color: rgba(109, 119, 135, .36);
  font-size: 26px;
  line-height: 1.18;
}

.owners-stage-row-open li p {
  max-width: 760px;
  margin: 0;
  color: #5e697a;
  font-size: 25px;
  line-height: 1.18;
}

@media (max-width: 1180px) {
  .owners-hero-art {
    right: -170px;
    width: 640px;
    opacity: .72;
  }

  .owners-figma-copy {
    width: min(680px, 76vw);
  }

  .owners-sales-track {
    width: auto;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
  }

  .owners-sales-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .page-owners {
    --owners-side: 18px;
  }

  .owners-figma-hero {
    min-height: 790px;
    padding-top: 44px;
  }

  .owners-figma-hero-inner {
    min-height: 720px;
  }

  .owners-figma-breadcrumbs {
    margin-bottom: 44px;
    font-size: 14px;
  }

  .owners-figma-copy {
    width: 100%;
  }

  .owners-figma-copy h1 {
    font-size: 54px;
  }

  .owners-figma-copy h2 {
    max-width: 340px;
    margin-top: 64px;
    font-size: 36px;
    line-height: .94;
  }

  .owners-goals {
    margin-top: 52px;
  }

  .owners-goals span {
    min-height: 58px;
    padding: 0 18px;
    font-size: 17px;
  }

  .owners-hero-art {
    top: 78px;
    right: -330px;
    width: 560px;
    opacity: .34;
  }

  .owners-sales-section {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .owners-sales-section h2,
  .owners-description-section h2 {
    font-size: 48px;
    line-height: .95;
  }

  .owners-sales-track {
    margin-top: 42px;
    gap: 14px;
  }

  .owners-sales-card {
    width: 278px;
    height: 340px;
    flex-basis: 278px;
    padding: 28px 28px 26px;
    border-radius: 16px;
  }

  .owners-sales-card h3 {
    font-size: 22px;
  }

  .owners-card-icon {
    transform: scale(.74);
    transform-origin: left top;
  }

  .owners-description-section {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .owners-stage-table {
    margin-top: 54px;
  }

  .owners-stage-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .owners-stage-label {
    padding: 24px 0 10px;
    font-size: 20px;
  }

  .owners-stage-content {
    padding: 0 0 26px;
  }

  .owners-stage-content h3 {
    font-size: 28px;
  }

  .owners-stage-row-open h3 {
    margin-bottom: 30px;
  }

  .owners-stage-row-open li {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 15px 0;
  }

  .owners-stage-row-open li span {
    font-size: 18px;
  }

  .owners-stage-row-open li p {
    font-size: 16px;
    line-height: 1.35;
  }
}
/* Agreement page: Figma node 42:76186 */
.page-agreement {
  --agreement-side: clamp(20px, 4.7vw, 90px);
  background: #fff;
}

.page-agreement .site-header {
  padding-left: var(--agreement-side);
  padding-right: var(--agreement-side);
}

.page-agreement .site-footer {
  --footer-side: var(--agreement-side);
}

.agreement-figma-page {
  background: #fff;
  color: var(--ink);
}

.agreement-hero {
  position: relative;
  min-height: 514px;
  padding: 92px var(--agreement-side) 90px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.agreement-hero::before {
  opacity: .2;
  background-size: 240px 240px;
  background-position: right -24px top -8px;
}

.agreement-hero-inner,
.agreement-copy {
  max-width: 1740px;
  margin: 0 auto;
}

.agreement-breadcrumbs {
  margin-bottom: 108px;
  color: rgba(233, 227, 204, .54);
  font-size: 18px;
}

.agreement-breadcrumbs a {
  color: rgba(233, 227, 204, .38);
}

.agreement-hero-grid {
  display: grid;
  grid-template-columns: minmax(780px, 1120px) minmax(360px, 520px);
  gap: clamp(58px, 6vw, 104px);
  align-items: start;
}

.agreement-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(74px, 5vw, 96px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: 0;
}

.agreement-hero p {
  max-width: 510px;
  margin: 15px 0 0;
  color: #fff;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.06;
}

.agreement-intro-section {
  padding: 86px var(--agreement-side) 100px;
  background: #fff;
}

.agreement-lead {
  max-width: 1740px;
  margin: 0 0 70px;
  font-size: 29px;
  line-height: 1.06;
}

.agreement-copy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.agreement-two-column {
  display: grid;
  grid-template-columns: minmax(300px, 505px) minmax(0, 1fr);
  gap: clamp(70px, 9vw, 170px);
  align-items: start;
}

.agreement-two-column h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
letter-spacing: 0;
}

.agreement-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agreement-list li {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(19, 35, 59, .17);
  font-size: 27px;
  line-height: 1.05;
}

.agreement-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: .34em;
  border-radius: 50%;
  background: #e1e5e9;
}

.agreement-list li:first-child {
  border-top: 0;
}

.agreement-data-section {
  position: relative;
  overflow: hidden;
  padding: 118px var(--agreement-side) 124px;
  background: #e7e9eb;
}

.agreement-data-section::before {
  content: "";
  position: absolute;
  left: -170px;
  bottom: -260px;
  width: 760px;
  height: 760px;
  opacity: .23;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 100% 100%, transparent 0 108px, rgba(19, 35, 59, .12) 109px 112px, transparent 113px),
    radial-gradient(circle at 0 100%, transparent 0 108px, rgba(19, 35, 59, .08) 109px 112px, transparent 113px);
  background-size: 320px 320px;
}

.agreement-data-section > * {
  position: relative;
  z-index: 1;
}

.agreement-list-light li {
  border-top-color: rgba(19, 35, 59, .14);
}

.agreement-list-light li::before {
  background: #fff;
}

.agreement-card {
  margin-top: 92px;
  padding: 60px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(19, 35, 59, .06);
}

.agreement-card .agreement-list li::before {
  background: #e1e5e9;
}

.agreement-text-section {
  padding: 82px var(--agreement-side) 98px;
  background: #fff;
}

.agreement-text-section p {
  max-width: 1740px;
  margin: 0 0 40px;
  font-size: 28px;
  line-height: 1.08;
}

.agreement-callout {
  margin: 34px 0 64px;
  padding: 20px 42px;
  border-left: 7px solid #a9b2bc;
  border-radius: 8px;
  background: #e2e5e8;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

@media (max-width: 1180px) {
  .agreement-hero-grid,
  .agreement-two-column {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .agreement-hero p {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .page-agreement {
    --agreement-side: 20px;
  }

  .agreement-hero {
    min-height: 430px;
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .agreement-breadcrumbs {
    margin-bottom: 62px;
    gap: 9px;
    font-size: 14px;
    white-space: nowrap;
  }

  .agreement-hero h1 {
    font-size: 48px;
    line-height: .86;
  }

  .agreement-hero p {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.12;
  }

  .agreement-intro-section,
  .agreement-data-section,
  .agreement-text-section {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .agreement-lead,
  .agreement-text-section p {
    font-size: 19px;
    line-height: 1.16;
  }

  .agreement-lead {
    margin-bottom: 48px;
  }

  .agreement-two-column h2 {
    font-size: 25px;
  }

  .agreement-list li {
    min-height: 0;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 17px;
    padding: 16px 0 18px;
    font-size: 18px;
    line-height: 1.18;
  }

  .agreement-list li::before {
    width: 10px;
    height: 10px;
  }

  .agreement-card {
    margin-top: 54px;
    padding: 28px 20px;
    border-radius: 14px;
  }

  .agreement-callout {
    margin: 24px 0 42px;
    padding: 16px 18px;
    border-left-width: 5px;
    font-size: 18px;
  }
}

/* Footer parity with Figma node 42:53097 */
.site-footer {
  min-height: 742px;
  grid-template-columns: minmax(300px, 390px) minmax(150px, 190px) minmax(255px, 310px) minmax(220px, 270px) minmax(360px, 440px);
  gap: clamp(34px, 3.2vw, 62px);
  padding-top: 106px;
  background: #13233b;
  color: rgba(233, 227, 204, .68);
}

.site-footer::before {
  inset: 0 0 0 auto;
  width: min(860px, 48vw);
  opacity: .19;
  background-size: 238px 238px;
  background-position: right 0 top 0;
}

.site-footer::after {
  bottom: 74px;
  background: rgba(233, 227, 204, .22);
}

.footer-logo {
  margin-bottom: 62px;
}

.footer-contacts {
  gap: 6px;
  max-width: 310px;
}

.footer-contacts span {
  margin-top: 18px;
  color: rgba(233, 227, 204, .38);
  font-size: 14px;
  line-height: 1;
}

.footer-contacts span:first-child {
  margin-top: 0;
}

.footer-contacts a,
.footer-contacts p {
  margin: 0;
  color: var(--cream);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
}

.footer-contacts strong {
  display: none;
}

.footer-socials {
  gap: 12px;
  margin-top: 66px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--cream);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--gold);
}

.footer-socials img {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(967%) hue-rotate(178deg) brightness(90%) contrast(94%);
}

.footer-column {
  gap: 19px;
  padding-top: 200px;
}

.footer-column h2,
.footer-form h2 {
  color: var(--cream);
  font-weight: 500;
}

.footer-column h2 {
  margin-bottom: 13px;
  font-size: 24px;
  line-height: 1.05;
}

.footer-column a {
  color: rgba(233, 227, 204, .44);
  font-size: 20px;
  line-height: 1.16;
}

.footer-column:first-of-type a {
  color: var(--cream);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold);
}

.footer-form {
  max-width: 430px;
  padding-top: 186px;
}

.footer-form h2 {
  max-width: 390px;
  margin-bottom: 26px;
  font-size: 25px;
  line-height: 1.05;
}

.footer-form input[type="email"] {
  height: 52px;
  padding: 0 30px;
  background: rgba(233, 227, 204, .18);
  color: var(--cream);
  font-size: 16px;
}

.footer-form input[type="email"]::placeholder {
  color: rgba(233, 227, 204, .55);
}

.footer-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 13px;
  color: rgba(233, 227, 204, .58);
  font-size: 11px;
  line-height: 1.25;
}

.footer-form .footer-consent input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  appearance: none;
  border: 1px solid rgba(233, 227, 204, .35);
  border-radius: 4px;
  background: transparent;
  flex: 0 0 auto;
}

.footer-form .footer-consent input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.1 4.4 8.4 11 1' fill='none' stroke='%2313233b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.footer-consent a {
  color: rgba(233, 227, 204, .58);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-form p {
  display: none;
}

.footer-form button {
  min-height: 44px;
  margin-top: 20px;
  padding: 0 28px;
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.footer-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 72px;
  padding-top: 24px;
  color: rgba(233, 227, 204, .44);
  font-size: 15px;
}

.footer-bottom a,
.footer-bottom span {
  color: rgba(233, 227, 204, .44);
}

.footer-bottom .footer-dev {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
letter-spacing: 0;
}

@media (max-width: 1360px) {
  .site-footer {
    min-height: auto;
    grid-template-columns: minmax(250px, 1fr) repeat(3, minmax(150px, 1fr));
  }

  .footer-column,
  .footer-form {
    padding-top: 70px;
  }

  .footer-form {
    grid-column: 2 / -1;
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-top: 58px;
  }

  .footer-logo {
    margin-bottom: 38px;
  }

  .footer-contacts a,
  .footer-contacts p {
    font-size: 21px;
  }

  .footer-socials {
    margin-top: 36px;
  }

  .footer-column,
  .footer-form {
    padding-top: 0;
  }

  .footer-form {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-column a {
    font-size: 18px;
  }

  .footer-form input[type="email"] {
    height: 48px;
  }
}


/* Object map and plan expand icons, 2026-06-02 */
.object-map-open img,
.object-plan-open img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
}


/* Object villages cloud expandable tags, 2026-06-02 */
.object-village-tags {
  position: relative;
  padding-bottom: 60px;
}

.object-village-tags__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  max-height: 480px;
  overflow: hidden;
  transition: max-height .28s ease;
}

.object-village-tags::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  height: 92px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.76) 46%, #fff 100%);
  opacity: 1;
  transition: opacity .22s ease;
  z-index: 1;
}

.object-village-tags.is-expanded .object-village-tags__list {
  max-height: 900px;
}

.object-village-tags.is-expanded::after {
  opacity: 0;
}

.object-village-tags .object-village-pill:last-child {
  background: var(--gray);
  color: var(--ink);
}

.object-village-more {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.object-village-tags.is-expanded .object-village-more span {
  transform: rotate(225deg) translate(0, -1px);
}

@media (max-width: 760px) {
  .object-village-tags {
    padding-bottom: 46px;
  }

  .object-village-tags__list {
    gap: 8px;
    max-height: 480px;
  }

  .object-village-tags::after {
    bottom: 40px;
    height: 300px;
  }

  .object-village-more {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-radius: 80px;
    background: var(--gold);
    color: #fff;
    font-size: 14px;
  }

  .object-village-more span {
    width: 9px;
    height: 9px;
    display: inline-block;
    font-size: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-1px, -2px);
  }
}
/* End object villages cloud expandable tags. */

/* Keep moved object village tags as a block wrapper. */
.object-village-tags[data-object-village-tags] {
  display: block;
}

/* Object mobile hero order refinement, 2026-06-02. */
@media (max-width: 760px) {
  .figma-object-sale .object-figma-hero {
    padding-top: 20px;
    background: var(--gray);
  }

  .figma-object-sale .object-figma-breadcrumbs {
    margin-bottom: 20px;
    color: rgba(19, 35, 59, .55);
    font-size: clamp(13px, 3.8vw, 17px);
    line-height: 1;
  }

  .figma-object-sale .object-figma-breadcrumbs::before {
    margin-right: 4px;
    color: rgba(19, 35, 59, .45);
    font-size: 22px;
  }

  .figma-object-sale .object-figma-title-row {
    margin-bottom: 15px;
  }

  .figma-object-sale .object-figma-title-row h1 {
    max-width: 100%;
    font-size: clamp(39px, 11.4vw, 54px);
    line-height: .92;
    letter-spacing: 0;
  }

  .figma-object-sale .object-mobile-actions {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    row-gap: 16px;
    margin: 0 0 14px;
  }

  .figma-object-sale .object-mobile-actions .object-id-pill {
    grid-column: 1;
    min-width: 90px;
    min-height: 37px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 400;
  }

  .figma-object-sale .object-mobile-actions .object-heart-line {
    grid-column: 2;
    width: 37px;
    height: 37px;
    color: var(--gold);
    font-size: 25px;
  }

  .figma-object-sale .object-mobile-actions .object-video-pill {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
    box-sizing: border-box;
    justify-content: space-between;
    padding: 0 6px 0 16px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: clamp(13px, 4vw, 17px);
    font-weight: 400;
  }

  .figma-object-sale .object-mobile-actions .object-video-pill span {
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .12);
  }

  .figma-object-sale .object-figma-layout {
    margin-top: 0;
  }

  .figma-object-sale .object-gallery-video {
    display: none;
  }

  .figma-object-sale .object-gallery-main {
    margin-top: 0;
    border-radius: 12px;
  }
}

@media (min-width: 431px) and (max-width: 760px) {
  .figma-object-sale .object-mobile-actions {
    grid-template-columns: auto auto minmax(240px, 1fr);
  }

  .figma-object-sale .object-mobile-actions .object-video-pill {
    grid-column: 3;
  }
}

@media (max-width: 430px) {
  .figma-object-sale .object-mobile-actions {
    grid-template-columns: auto auto 1fr;
  }
}
/* End object mobile hero order refinement. */

/* Object infrastructure section, 2026-06-02. */
@media (max-width: 1360px) and (min-width: 761px) {
  .object-infra-shell {
    padding: 28px 24px 26px;
  }

  .object-infra-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(22px, 3.3vw, 48px);
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .object-infra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }
}

@media (max-width: 760px) {
  .object-infra-section {
    padding: 30px 20px 36px;
    background: #fff;
  }

  .object-infra-section h2 {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .object-infra-shell {
    min-height: 0;
    padding: 24px 20px;
  }

  .object-infra-pattern {
    width: 100%;
    opacity: .32;
    background-position: right center;
  }

  .object-infra-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
/* End object infrastructure section. */

/* Object mobile gallery arrows edge alignment, 2026-06-02. */
@media (max-width: 760px) {
  .figma-object-sale .object-gallery-main {
    overflow: visible;
  }

  .figma-object-sale .object-gallery-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 27px;
    z-index: 8;
  }

  .figma-object-sale .object-gallery-next {
    right: -21px;
  }

  .figma-object-sale .object-gallery-prev {
    left: -21px;
  }
}

@media (max-width: 430px) {
  .figma-object-sale .object-gallery-next {
    right: -10px;
  }

  .figma-object-sale .object-gallery-prev {
    left: -10px;
  }
}
/* End object mobile gallery arrows edge alignment. */

/* Object mobile gallery thumbs three-column layout, 2026-06-02. */
@media (max-width: 760px) {
  .figma-object-sale .object-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    padding: 0;
    margin-top: 7px;
    scroll-snap-type: none;
  }

  .figma-object-sale .object-gallery-thumbs .object-thumb {
    width: 100%;
    min-width: 0;
    flex: none;
    height: clamp(92px, 24.9vw, 116px);
    min-height: clamp(92px, 24.9vw, 116px);
    border-radius: 9px;
  }

  .figma-object-sale .object-gallery-thumbs .object-thumb:nth-child(n + 4) {
    display: none;
  }
}
/* End object mobile gallery thumbs three-column layout. */

/* Object mobile gallery thumbs scroll refinement, 2026-06-02. */
@media (max-width: 760px) {
  .figma-object-sale .object-gallery-thumbs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 17px;
    margin-top: 7px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button {
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: none !important;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:single-button,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:vertical:start:decrement,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:vertical:end:increment,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:horizontal:start:decrement,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:horizontal:end:increment {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-track {
    border-radius: 999px;
    background: #fff;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--gold);
  }

  .figma-object-sale .object-gallery-thumbs .object-thumb {
    flex: 0 0 calc((100% - 8px) / 3);
    width: calc((100% - 8px) / 3);
    min-width: calc((100% - 8px) / 3);
    height: clamp(92px, 24.9vw, 116px);
    min-height: clamp(92px, 24.9vw, 116px);
    border-radius: 9px;
    scroll-snap-align: start;
  }

  .figma-object-sale .object-gallery-thumbs .object-thumb:nth-child(n + 4) {
    display: block;
  }
}
/* End object mobile gallery thumbs scroll refinement. */

/* Object mobile price currency alignment, 2026-06-02. */
@media (max-width: 760px) {
  .figma-object-sale .object-price-panel {
    padding-top: 38px;
  }

  .figma-object-sale .object-old-price,
  .figma-object-sale .object-price-row {
    padding-right: 150px;
  }

  .figma-object-sale .object-currency {
    top: 66px;
    right: 12px;
    gap: 8px;
  }

  .figma-object-sale .object-currency button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .figma-object-sale .object-old-price,
  .figma-object-sale .object-price-row {
    padding-right: 128px;
  }

  .figma-object-sale .object-price-row strong {
    font-size: clamp(26px, 7.2vw, 30px);
  }

  .figma-object-sale .object-price-row span {
    font-size: 22px;
  }

  .figma-object-sale .object-currency {
    top: 75px;
    right: 12px;
    gap: 7px;
  }

  .figma-object-sale .object-currency button {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}
/* End object mobile price currency alignment. */

/* Object mobile price panel buttons from Figma, 2026-06-02. */
@media (max-width: 760px) {
  .figma-object-sale .object-panel-actions {
    width: min(314px, 100%);
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
  }

  .figma-object-sale .object-panel-actions .object-green-button,
  .figma-object-sale .object-panel-actions .object-gold-button {
    min-height: 33px;
    height: 33px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 80px;
    color: #fff;
    font-family: 'Gilroy', var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.1;
    text-align: right;
    white-space: nowrap;
  }

  .figma-object-sale .object-panel-actions .object-green-button {
    flex: 0 1 184px;
    width: 184px;
  }

  .figma-object-sale .object-panel-actions .object-gold-button {
    flex: 0 1 124px;
    width: 124px;
  }

  .figma-object-sale .object-panel-actions .object-green-button img {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 360px) {
  .figma-object-sale .object-panel-actions .object-green-button,
  .figma-object-sale .object-panel-actions .object-gold-button {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 11px;
  }
}
/* End object mobile price panel buttons from Figma. */

/* Object mobile facts cards from reference, 2026-06-02. */
@media (max-width: 760px) {
  .figma-object-sale .object-facts-section {
    padding: 16px 20px 34px;
  }

  .figma-object-sale .object-facts-section .section-inner {
    gap: 14px;
  }

  .figma-object-sale .object-facts-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .figma-object-sale .object-fact {
    min-height: 98px;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 17px 18px;
    border-radius: 28px;
    background: #E4E7EA;
    box-shadow: none;
  }

  .figma-object-sale .object-fact:first-child,
  .figma-object-sale .object-fact:last-child {
    grid-column: 1 / -1;
  }

  .figma-object-sale .object-fact-icon {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .figma-object-sale .object-fact-icon::before,
  .figma-object-sale .object-fact-icon::after {
    display: none;
  }

  .figma-object-sale .object-fact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .figma-object-sale .object-fact span {
    margin-bottom: 6px;
    color: #6F7C8E;
    font-size: clamp(18px, 5.2vw, 25px);
    font-weight: 400;
    line-height: 1;
    white-space: normal;
  }

  .figma-object-sale .object-fact strong,
  .figma-object-sale .object-fact strong a {
    color: var(--ink);
    font-size: clamp(22px, 6.3vw, 32px);
    font-weight: 400;
    line-height: 1.02;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .figma-object-sale .object-fact:first-child strong,
  .figma-object-sale .object-fact:first-child strong a {
    font-size: clamp(25px, 7.2vw, 36px);
  }
}

@media (max-width: 430px) {
  .figma-object-sale .object-fact {
    min-height: 84px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 16px;
    border-radius: 22px;
  }

  .figma-object-sale .object-fact-icon {
    width: 38px;
    height: 38px;
  }

  .figma-object-sale .object-fact span {
    font-size: clamp(16px, 5.4vw, 23px);
  }

  .figma-object-sale .object-fact strong,
  .figma-object-sale .object-fact strong a {
    font-size: clamp(20px, 6.2vw, 28px);
  }

  .figma-object-sale .object-fact:first-child strong,
  .figma-object-sale .object-fact:first-child strong a {
    font-size: clamp(21px, 6.4vw, 28px);
  }
}
/* End object mobile facts cards from reference. */

/* Object mobile settlement slider from reference, 2026-06-02. */
.object-settlement-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
  transform: translateY(-50%);
  transition: opacity .18s ease, transform .18s ease;
}

.object-settlement-prev {
  left: 16px;
}

.object-settlement-next {
  right: 16px;
}

.object-settlement-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 760px) {
  .figma-object-sale .object-settlement-gallery {
    display: block;
    overflow: visible;
  }

  .figma-object-sale .object-settlement-main {
    position: relative;
    min-height: 0;
    aspect-ratio: 354 / 230;
    overflow: visible;
    border-radius: 16px;
  }

  .figma-object-sale .object-settlement-main .object-gallery-dots {
    bottom: 9px;
    gap: 11px;
  }

  .figma-object-sale .object-settlement-main .object-gallery-dots span {
    width: 8px;
    height: 8px;
    background: rgba(233, 227, 204, .42);
  }

  .figma-object-sale .object-settlement-main .object-gallery-dots span.active {
    background: var(--cream);
  }

  .figma-object-sale .object-settlement-arrow {
    width: 42px;
    height: 42px;
    font-size: 27px;
  }

  .figma-object-sale .object-settlement-next {
    right: -21px;
  }

  .figma-object-sale .object-settlement-prev {
    left: -21px;
  }

  .figma-object-sale .object-settlement-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 8px;
    padding: 0 0 17px;
    scroll-snap-type: x proximity;
    scrollbar-width: auto;
    scrollbar-color: var(--gold) #fff;
  }

  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar {
    display: block;
    height: 6px;
  }

  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar-button {
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: none !important;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
  }

  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar-button:single-button,
  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar-button:vertical:start:decrement,
  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar-button:vertical:end:increment,
  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar-button:horizontal:start:decrement,
  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar-button:horizontal:end:increment {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }

  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar-track {
    border-radius: 999px;
    background: #fff;
  }

  .figma-object-sale .object-settlement-thumbs::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--gold);
  }

  .figma-object-sale .object-settlement-thumbs button {
    flex: 0 0 calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    min-width: calc((100% - 16px) / 3);
    min-height: 0;
    height: clamp(92px, 24.9vw, 116px);
    border-radius: 14px;
    scroll-snap-align: start;
  }
}

@media (max-width: 430px) {
  .figma-object-sale .object-settlement-next {
    right: -10px;
  }

  .figma-object-sale .object-settlement-prev {
    left: -10px;
  }
}
/* End object mobile settlement slider from reference. */

/* Object see slider arrows normalized, 2026-06-02. */
.object-see-arrow {
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(19, 35, 59, .08);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.object-see-arrow::before {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.object-see-prev::before {
  content: "";
  transform: rotate(-135deg);
}

.object-see-next::before {
  content: "";
  transform: rotate(45deg);
}

.object-see-arrow:hover,
.object-see-arrow:focus-visible {
  background: var(--gold);
  color: #fff;
  outline: none;
}

.object-see-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.object-see-panel[hidden] {
  display: none !important;
}

.object-see-arrow.is-disabled,
.object-see-arrow:disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
  transform: scale(.92);
}

@media (max-width: 760px) {
  .figma-object-sale .object-see-section {
    padding-bottom: 74px;
  }

  .figma-object-sale .object-see-arrow {
    top: auto;
    bottom: 28px;
    width: 42px;
    height: 42px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(19, 35, 59, .08);
  }

  .figma-object-sale .object-see-prev {
    left: 20px;
  }

  .figma-object-sale .object-see-next {
    left: 66px;
    right: auto;
  }

  .figma-object-sale .object-see-arrow::before {
    width: 13px;
    height: 13px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
/* End object see slider arrows normalized. */

/* Object exclusive badge corner and tail from exported object page. */
.object-exclusive {
  border-radius: 15px 15px 15px 0;
}

.object-exclusive::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 8px;
  height: 8px;
  background: #0B392C;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
/* End object exclusive badge corner and tail. */

/* Object gallery arrows from exported object page. */
@media (min-width: 761px) {
  .object-gallery-main .object-gallery-next {
    right: -35px;
  }

  .object-gallery-main .object-gallery-prev {
    left: -35px;
  }
}

@media (max-width: 760px) {
  .figma-object-sale .object-gallery-arrow,
  .object-gallery-arrow {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .object-gallery-main .object-gallery-next {
    right: 8px;
  }

  .object-gallery-main .object-gallery-prev {
    left: 8px;
  }
}
/* End object gallery arrows from exported object page. */

/* Object related property cards from exported object page. */
@media (min-width: 761px) {
  .object-see-track {
    grid-auto-columns: 566px;
  }
}

.object-see-track .property-card {
  position: relative;
  min-width: 0;
  height: 533px;
  min-height: 533px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  color: var(--navy, #13233b);
  box-shadow: none;
}

.object-see-track .property-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #d8ddd9;
  cursor: pointer;
}

.object-see-track .property-media-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.object-see-track .property-media img {
  width: 100%;
  height: 354px;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: translateY(-57px);
  transition: transform .36s ease;
}

.object-see-track .property-media-link .property-gallery-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .36s ease;
}

.object-see-track .property-media-link .property-gallery-image.is-active {
  z-index: 1;
  opacity: 1;
}

.object-see-track .property-card:hover .property-media-link .property-gallery-image {
  transform: translateY(-57px);
}

.object-see-track .property-card:hover .property-media-link .property-gallery-image.is-active {
  transform: translateY(-57px) scale(1.045);
}

.object-see-track .gallery-dots {
  position: absolute;
  left: 50%;
  top: 220px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.object-see-track .gallery-dots span,
.object-see-track .gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(233, 227, 204, .55);
  cursor: pointer;
}

.object-see-track .gallery-dots span:first-child,
.object-see-track .gallery-dots span.active,
.object-see-track .gallery-dots button.active,
.object-see-track .gallery-dots button[aria-current="true"] {
  background: #fff;
}

.object-see-track .gallery-dots button:focus-visible {
  outline: 2px solid var(--cream, #e9e3cc);
  outline-offset: 3px;
}

.object-see-track .exclusive-pill {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 2;
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 19px;
  border-radius: 0 80px 80px 0;
  background: var(--green, #064632);
  color: var(--cream, #e9e3cc);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
}

.object-see-track .exclusive-pill span {
  width: 20px;
  height: 18px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.object-see-track .exclusive-pill img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none !important;
  transition: none;
}

.object-see-track .favorite-button {
  position: absolute;
  right: 25px;
  top: 20px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--gray, #e7e9eb);
  color: var(--gold, #bea575);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.object-see-track .favorite-button.is-active,
.object-see-track .favorite-button[aria-pressed="true"] {
  color: #fff;
}

.object-see-track .id-pill {
  position: absolute;
  right: 25px;
  top: 223px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cream, #e9e3cc);
  color: var(--navy, #13233b);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.object-see-track .property-body {
  min-height: 293px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 29px 25px 25px;
}

.object-see-track .property-title {
  width: 426px;
  max-width: 100%;
  margin: 0 0 13px;
  color: var(--navy, #13233b);
  font-size: 25px;
  font-weight: 400;
  line-height: .9;
  text-transform: none;
}

.object-see-track .property-title a {
  color: var(--navy, #13233b);
  text-decoration: none;
}

.object-see-track .property-description {
  width: 376px;
  max-width: 100%;
  height: 29px;
  margin: 0 0 13px;
  overflow: hidden;
  color: var(--navy, #13233b);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
}

.object-see-track .property-meta {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 13px;
  overflow: hidden;
}

.object-see-track .property-meta span {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: rgba(19, 35, 59, .5);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.object-see-track .property-meta-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.object-see-track .property-meta-road {
  background-image: url('/figma-catalog/assets/meta-road.svg');
}

.object-see-track .property-meta-location {
  background-image: url('/figma-catalog/assets/meta-location.svg');
}

.object-see-track .property-meta-village {
  background-image: url('/figma-catalog/assets/meta-village.svg');
}

.object-see-track .property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.object-see-track .property-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gray, #e7e9eb);
  color: var(--navy, #13233b);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.object-see-track .property-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.object-see-track .price-block {
  min-width: 0;
}

.object-see-track .old-price {
  display: block;
  margin-bottom: 5px;
  color: #a1a7b1;
  font-size: 18px;
  line-height: 1;
  text-decoration: line-through;
}

.object-see-track .current-price {
  display: block;
  color: var(--navy, #13233b);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.object-see-track .details-link {
  min-height: 48px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold, #bea575);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 760px) {
  .object-see-section {
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .object-see-section > .section-inner {
    width: 100%;
    max-width: none;
  }

  .object-see-head {
    padding: 0 20px;
  }

  .object-see-tabs {
    width: calc(100vw - 20px);
    max-width: none;
    margin-right: -20px;
    padding: 0 20px 0 0;
    gap: 6px;
    background: transparent;
    border-radius: 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .object-see-tabs button {
    background: #fff;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .object-see-track {
    display: flex;
    width: 100%;
    grid-auto-columns: unset;
    margin: 22px 0 0;
    padding: 0 20px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .object-see-track .property-card {
    width: min(335px, calc(100vw - 40px));
    min-width: min(335px, calc(100vw - 40px));
    max-width: 100%;
    flex: 0 0 min(335px, calc(100vw - 40px));
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 468px;
    min-height: 468px;
    border-radius: 8px;
  }

  .object-see-track .property-media {
    height: 208px;
    border-radius: 8px 8px 0 0;
  }

  .object-see-track .property-media img {
    width: 100%;
    height: 208px;
    transform: none;
    object-fit: cover;
  }

  .object-see-track .property-media-link .property-gallery-image {
    height: 208px;
    transform: none;
  }

  .object-see-track .property-card:hover .property-media img,
  .object-see-track .property-card:hover .property-media-link .property-gallery-image,
  .object-see-track .property-card:hover .property-media-link .property-gallery-image.is-active {
    transform: none;
  }

  .object-see-track .gallery-dots {
    top: 190px;
    left: 10px;
    transform: none;
  }

  .object-see-track .exclusive-pill {
    top: 9px;
    left: 0;
    min-height: 18px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 9px;
    gap: 10px;
    border-radius: 0 80px 80px 0;
    font-size: 14px;
  }

  .object-see-track .favorite-button {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 31px;
  }

  .object-see-track .id-pill {
    top: 196px;
    right: 15px;
    min-height: 24px;
    padding: 5px 14px;
    font-size: 14px;
  }

  .object-see-track .property-body {
    height: 260px;
    min-height: 260px;
    padding: 23px 15px 17px;
  }

  .object-see-track .property-title {
    font-size: 16px;
    line-height: 1.16;
  }

  .object-see-track .property-description {
    width: 305px;
    height: 35px;
    margin-bottom: 9px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.22;
    text-overflow: ellipsis;
  }

  .object-see-track .property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .object-see-track .property-meta span {
    font-size: 14px;
    line-height: 1;
  }

  .object-see-track .property-tags {
    gap: 5px;
    margin-top: 9px;
  }

  .object-see-track .property-tags span {
    min-height: 22px;
    padding: 0 10px;
    font-size: 12px;
  }

  .object-see-track .property-bottom {
    min-height: 41px;
    flex-direction: row;
    align-items: end;
  }

  .object-see-track .old-price {
    margin-bottom: 3px;
    font-size: 14px;
  }

  .object-see-track .current-price {
    font-size: 20px;
  }

  .object-see-track .details-link {
    width: 112px;
    min-height: 34px;
    padding: 0 16px;
    font-size: 14px;
  }
}
/* End object related property cards from exported object page. */

/* Object desktop gallery scrollbar: keep a single real scrollbar on thumbnails. */
@media (min-width: 761px) {
  .figma-object-sale .object-figma-layout::after {
    content: none !important;
    display: none !important;
  }

  .figma-object-sale .object-gallery-thumbs {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 14px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #fff;
  }

  .figma-object-sale .object-gallery-thumbs.has-custom-scrollbar::before,
  .figma-object-sale .object-gallery-thumbs.has-custom-scrollbar::after {
    display: none !important;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar {
    width: 7px !important;
    height: 7px !important;
    display: block !important;
    background: transparent;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:single-button,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:vertical:start:decrement,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:vertical:end:increment,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:horizontal:start:decrement,
  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-button:horizontal:end:increment {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
    -webkit-appearance: none;
    appearance: none;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-track {
    border-radius: 999px;
    background: #fff;
  }

  .figma-object-sale .object-gallery-thumbs::-webkit-scrollbar-thumb {
    min-height: 42px;
    border-radius: 999px;
    background: var(--gold);
  }
}

@media (max-width: 760px) {
  .object-fact-icon img,
  .object-tag img,
  .object-exclusive img,
  .object-green-button img,
  .object-video-pill img {
    width: 9px;
    height: 7px;
    margin-right: 6px;
    flex: 0 0 9px;
    object-fit: contain;
  }

  .object-see-track .exclusive-pill span {
    width: 9px;
    height: 7px;
    flex: 0 0 9px;
  }

  .object-see-track .property-media img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 760px) {
  .figma-object-sale .object-panel-actions .object-green-button img,
  .figma-object-sale .object-mobile-actions .object-video-pill img,
  .figma-object-sale .object-fact-icon img,
  .figma-object-sale .object-exclusive img {
    width: 9px;
    height: 7px;
    margin-right: 6px;
    flex: 0 0 9px;
    object-fit: contain;
  }
}

/* Object price/facts hotfix, 2026-06-28. */
.figma-backend-object .object-price-row {
  min-width: 0;
  padding-right: 158px;
}

.figma-backend-object .object-price-row .object-price-value {
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: baseline;
  gap: .18em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.figma-backend-object .object-price-row .object-price-value[hidden] {
  display: none !important;
}

.figma-backend-object .object-price-row .object-price-value i.fa {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  margin: 0;
  font-size: .72em;
  line-height: 1;
}

.figma-backend-object .object-price-row .object-price-value b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: inherit;
}

.figma-backend-object .object-panel-actions,
.figma-object-sale .object-panel-actions {
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  box-sizing: border-box;
}

.figma-backend-object .object-panel-actions .object-green-button,
.figma-backend-object .object-panel-actions .object-gold-button,
.figma-object-sale .object-panel-actions .object-green-button,
.figma-object-sale .object-panel-actions .object-gold-button {
  min-width: 0;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: clamp(14px, 1.25vw, 24px);
  padding-right: clamp(14px, 1.25vw, 24px);
}

.figma-backend-object .object-facts-row,
.figma-object-sale .object-facts-row {
  height: auto;
  align-items: stretch;
}

.figma-backend-object .object-fact,
.figma-object-sale .object-fact {
  height: auto;
  min-width: 0;
  grid-template-columns: var(--icon-size, 32px) minmax(0, 1fr);
  overflow: visible;
}

.figma-backend-object .object-fact-icon,
.figma-object-sale .object-fact-icon {
  grid-row: 1 / span 2;
  align-self: center;
}

.figma-backend-object .object-fact small,
.figma-backend-object .object-fact strong,
.figma-backend-object .object-fact strong a,
.figma-object-sale .object-fact small,
.figma-object-sale .object-fact strong,
.figma-object-sale .object-fact strong a {
  grid-column: 2;
  min-width: 0;
}

.figma-backend-object .object-fact small,
.figma-backend-object .object-fact strong,
.figma-backend-object .object-fact strong a,
.figma-object-sale .object-fact small,
.figma-object-sale .object-fact strong,
.figma-object-sale .object-fact strong a {
  max-width: 100%;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.figma-backend-object .object-fact small,
.figma-object-sale .object-fact small {
  display: block;
  color: rgba(19, 35, 59, .58);
  font-size: clamp(13px, .92vw, 16px);
  overflow-wrap: anywhere;
  line-height: 1.12;
}

.figma-backend-object .object-fact strong,
.figma-backend-object .object-fact strong a,
.figma-object-sale .object-fact strong,
.figma-object-sale .object-fact strong a {
  display: block;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.05;
}

@media (min-width: 761px) {
  .figma-backend-object .object-fact small,
  .figma-object-sale .object-fact small {
    white-space: normal;
  }

  .figma-backend-object .object-fact strong,
  .figma-backend-object .object-fact strong a,
  .figma-object-sale .object-fact strong,
  .figma-object-sale .object-fact strong a {
    white-space: normal;
    font-size: clamp(20px, 1.28vw, 24px);
  }

  .figma-backend-object .object-fact:first-child strong,
  .figma-backend-object .object-fact:first-child strong a,
  .figma-object-sale .object-fact:first-child strong,
  .figma-object-sale .object-fact:first-child strong a {
    font-size: clamp(19px, 1.18vw, 23px);
  }

  .figma-backend-object .object-fact:nth-child(2),
  .figma-object-sale .object-fact:nth-child(2) {
    flex-basis: 307px;
  }

  .figma-backend-object .object-fact:nth-child(3),
  .figma-object-sale .object-fact:nth-child(3) {
    flex-basis: 229px;
  }

  .figma-backend-object .object-fact:nth-child(4),
  .figma-object-sale .object-fact:nth-child(4) {
    flex-basis: 196px;
  }
}

@media (min-width: 761px) and (max-width: 1440px) {
  .figma-backend-object .object-fact small,
  .figma-backend-object .object-fact strong,
  .figma-backend-object .object-fact strong a,
  .figma-object-sale .object-fact small,
  .figma-object-sale .object-fact strong,
  .figma-object-sale .object-fact strong a {
    white-space: normal;
  }

  .figma-backend-object .object-fact strong,
  .figma-backend-object .object-fact strong a,
  .figma-object-sale .object-fact strong,
  .figma-object-sale .object-fact strong a {
    font-size: clamp(16px, 1.42vw, 22px);
  }
}

@media (min-width: 1441px) {
  .figma-backend-object .object-facts-row > .object-fact,
  .figma-object-sale .object-facts-row > .object-fact {
    flex-grow: 1;
  }
}

@media (min-width: 761px) and (max-width: 1320px) {
  .figma-backend-object .object-facts-section,
  .figma-object-sale .object-facts-section {
    height: auto;
    min-height: 224px;
    padding-bottom: 30px;
  }

  .figma-backend-object .object-facts-row,
  .figma-object-sale .object-facts-row {
    display: grid;
    grid-template-columns: 1.55fr 1.55fr 1.55fr 1.05fr 1.15fr 1.15fr;
  }

  .figma-backend-object .object-fact,
  .figma-object-sale .object-fact {
    gap: 12px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .figma-backend-object .object-fact small,
  .figma-backend-object .object-fact strong,
  .figma-backend-object .object-fact strong a,
  .figma-object-sale .object-fact small,
  .figma-object-sale .object-fact strong,
  .figma-object-sale .object-fact strong a {
    white-space: normal;
  }

  .figma-backend-object .object-fact strong,
  .figma-backend-object .object-fact strong a,
  .figma-object-sale .object-fact strong,
  .figma-object-sale .object-fact strong a {
    font-size: clamp(16px, 1.55vw, 20px);
  }
}

@media (min-width: 1181px) and (max-width: 1440px) {
  .figma-backend-object .object-facts-row:has(> .object-fact:nth-child(5):last-child),
  .figma-object-sale .object-facts-row:has(> .object-fact:nth-child(5):last-child) {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1.25fr) minmax(0, .9fr) minmax(0, .95fr) minmax(0, 1.05fr);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .figma-backend-object .object-facts-section .section-inner,
  .figma-object-sale .object-facts-section .section-inner {
    width: calc(100vw - 36px);
    max-width: none;
  }

  .figma-backend-object .object-facts-row,
  .figma-object-sale .object-facts-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .figma-backend-object .object-fact,
  .figma-object-sale .object-fact {
    min-height: 86px;
  }
}

.figma-backend-object a.object-fact,
.figma-object-sale a.object-fact {
  color: inherit;
  text-decoration: none;
}

.figma-backend-object a.object-fact:hover,
.figma-backend-object a.object-fact:focus-visible,
.figma-object-sale a.object-fact:hover,
.figma-object-sale a.object-fact:focus-visible {
  background: #eef0f2;
  box-shadow: inset 0 0 0 1px rgba(19, 35, 59, .10);
}

@media (max-width: 1320px) {
  .figma-backend-object .object-price-row {
    padding-right: 142px;
  }

  .figma-backend-object .object-price-row strong {
    font-size: clamp(27px, 2.25vw, 32px);
  }

  .figma-backend-object .object-panel-actions .object-green-button,
  .figma-backend-object .object-panel-actions .object-gold-button,
  .figma-object-sale .object-panel-actions .object-green-button,
  .figma-object-sale .object-panel-actions .object-gold-button {
    font-size: clamp(14px, 1.26vw, 16px);
  }
}

@media (max-width: 760px) {
  .figma-backend-object .object-price-row {
    padding-right: 128px;
  }

  .figma-backend-object .object-panel-actions,
  .figma-object-sale .object-panel-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }

  .figma-backend-object .object-panel-actions .object-green-button,
  .figma-backend-object .object-panel-actions .object-gold-button,
  .figma-object-sale .object-panel-actions .object-green-button,
  .figma-object-sale .object-panel-actions .object-gold-button {
    width: auto;
    flex: initial;
    white-space: normal;
    text-align: center;
  }
}

/* Object price currency and action buttons alignment, 2026-06-28. */
@media (min-width: 761px) {
  .figma-backend-object .object-price-panel .object-currency,
  .figma-object-sale .object-price-panel .object-currency {
    top: 59px;
    right: 24px;
  }

  .figma-backend-object .object-panel-actions,
  .figma-object-sale .object-panel-actions {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, .96fr);
    gap: 12px;
  }

  .figma-backend-object .object-panel-actions .object-green-button,
  .figma-backend-object .object-panel-actions .object-gold-button,
  .figma-object-sale .object-panel-actions .object-green-button,
  .figma-object-sale .object-panel-actions .object-gold-button {
    min-width: 0;
    padding-left: clamp(12px, .95vw, 18px);
    padding-right: clamp(12px, .95vw, 18px);
    gap: 8px;
    font-size: clamp(15px, 1.05vw, 18px);
    white-space: nowrap;
  }

  .figma-backend-object .object-panel-actions .object-green-button img,
  .figma-object-sale .object-panel-actions .object-green-button img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
}

@media (min-width: 761px) and (max-width: 1320px) {
  .figma-backend-object .object-price-panel .object-currency,
  .figma-object-sale .object-price-panel .object-currency {
    top: 53px;
    right: 14px;
  }

  .figma-backend-object .object-panel-actions,
  .figma-object-sale .object-panel-actions {
    grid-template-columns: minmax(0, 1.36fr) minmax(0, .94fr);
    gap: 10px;
  }
}

/* Backend object text blocks: show full DB text and preserve saved line breaks, 2026-07-02. */
.figma-backend-object .object-figma-details,
.figma-backend-object .object-settlement-section,
.figma-object-sale .object-figma-details,
.figma-object-sale .object-settlement-section {
  height: auto;
  max-height: none;
  overflow: visible;
}

.figma-backend-object .object-figma-description,
.figma-backend-object .object-settlement-section article,
.figma-object-sale .object-figma-description,
.figma-object-sale .object-settlement-section article {
  min-width: 0;
  max-width: 100%;
}

.figma-backend-object .object-description-copy,
.figma-backend-object .object-description-copy p,
.figma-backend-object .object-settlement-section p,
.figma-object-sale .object-description-copy,
.figma-object-sale .object-description-copy p,
.figma-object-sale .object-settlement-section p {
  height: auto;
  max-height: none;
  overflow: visible;
  white-space: pre-line;
  overflow-wrap: break-word;
}

@media (min-width: 761px) and (max-width: 1180px) {
  .figma-backend-object .object-figma-hero,
  .figma-object-sale .object-figma-hero {
    height: auto;
    min-height: 835px;
    padding-bottom: 80px;
  }

  .figma-backend-object .object-figma-details-grid,
  .figma-object-sale .object-figma-details-grid,
  .figma-backend-object .object-settlement-grid,
  .figma-object-sale .object-settlement-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 40%);
    gap: clamp(24px, 4vw, 40px);
  }

  .figma-backend-object .object-accordion details,
  .figma-object-sale .object-accordion details {
    width: 100%;
  }
}

/* Backend object section spacing and heading parity, 2026-07-03. */
@media (min-width: 761px) {
  .figma-backend-object .object-facts-section,
  .figma-object-sale .object-facts-section {
    height: auto;
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .figma-backend-object .object-figma-details,
  .figma-object-sale .object-figma-details {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .figma-backend-object .object-settlement-section,
  .figma-object-sale .object-settlement-section {
    padding-top: 82px;
    padding-bottom: 96px;
  }

  .figma-backend-object .object-figma-details h2,
  .figma-backend-object .object-plans-section h2,
  .figma-backend-object .object-infra-section h2,
  .figma-backend-object .object-settlement-section h2,
  .figma-object-sale .object-figma-details h2,
  .figma-object-sale .object-plans-section h2,
  .figma-object-sale .object-infra-section h2,
  .figma-object-sale .object-settlement-section h2 {
    margin-top: 0;
    margin-bottom: 50px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 400;
    line-height: .9;
    letter-spacing: 0;
    text-transform: none;
  }
}

@media (max-width: 760px) {
  .figma-backend-object .object-facts-section,
  .figma-object-sale .object-facts-section {
    padding-top: 20px;
  }

  .figma-backend-object .object-figma-details h2,
  .figma-backend-object .object-plans-section h2,
  .figma-backend-object .object-infra-section h2,
  .figma-backend-object .object-settlement-section h2,
  .figma-object-sale .object-figma-details h2,
  .figma-object-sale .object-plans-section h2,
  .figma-object-sale .object-infra-section h2,
  .figma-object-sale .object-settlement-section h2 {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
  }
}

/* Backend object map expand behavior, 2026-07-03. */
body.object-map-expanded {
  overflow: hidden;
}

.figma-backend-object .object-price-panel .object-map.is-expanded,
.figma-object-sale .object-price-panel .object-map.is-expanded {
  position: fixed;
  left: max(40px, calc((100vw - 1740px) / 2 + 40px));
  right: max(40px, calc((100vw - 1740px) / 2 + 40px));
  top: 24px;
  width: auto;
  height: min(560px, calc(100vh - 48px));
  margin: 0;
  border-radius: 20px;
  background-color: #e8edf5;
  box-shadow: 0 24px 80px rgba(19, 35, 59, .24);
  z-index: 1200;
}

.figma-backend-object .object-map.is-expanded .figma-real-map-canvas,
.figma-object-sale .object-map.is-expanded .figma-real-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.figma-backend-object .object-price-panel .object-map.is-expanded .object-map-open,
.figma-object-sale .object-price-panel .object-map.is-expanded .object-map-open {
  right: 24px;
  bottom: 24px;
}

@media (max-width: 760px) {
  .figma-backend-object .object-price-panel .object-map.is-expanded,
  .figma-object-sale .object-price-panel .object-map.is-expanded {
    left: 16px;
    right: 16px;
    top: 16px;
    height: min(430px, calc(100vh - 32px));
    border-radius: 14px;
    box-shadow: 0 20px 62px rgba(19, 35, 59, .26);
  }

  .figma-backend-object .object-price-panel .object-map.is-expanded .object-map-open,
  .figma-object-sale .object-price-panel .object-map.is-expanded .object-map-open {
    right: 16px;
    bottom: 16px;
  }
}

/* Backend object/village description typography and measured read-more, 2026-07-03. */
.figma-backend-object .object-figma-description .object-description-copy,
.figma-backend-object .object-settlement-section .object-description-copy,
.figma-object-sale .object-figma-description .object-description-copy,
.figma-object-sale .object-settlement-section .object-description-copy {
  --description-collapsed-height: 216px;
  color: rgba(19, 35, 59, .88);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  white-space: pre-line;
  overflow-wrap: break-word;
}

.figma-backend-object .object-figma-description .object-description-copy p,
.figma-backend-object .object-settlement-section .object-description-copy p,
.figma-object-sale .object-figma-description .object-description-copy p,
.figma-object-sale .object-settlement-section .object-description-copy p {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  white-space: inherit;
}

.figma-backend-object .object-figma-description .object-description-copy p + p,
.figma-backend-object .object-settlement-section .object-description-copy p + p,
.figma-object-sale .object-figma-description .object-description-copy p + p,
.figma-object-sale .object-settlement-section .object-description-copy p + p {
  margin-top: 18px;
}

.figma-backend-object .object-description-copy[data-description-read-more].is-collapsible:not(.is-expanded),
.figma-object-sale .object-description-copy[data-description-read-more].is-collapsible:not(.is-expanded) {
  max-height: var(--description-collapsed-height, 216px);
  overflow: hidden;
}

.figma-backend-object .object-read-more[data-description-toggle],
.figma-object-sale .object-read-more[data-description-toggle] {
  display: none;
}

.figma-backend-object .object-read-more[data-description-toggle].is-visible,
.figma-object-sale .object-read-more[data-description-toggle].is-visible {
  display: inline-flex;
}

@media (max-width: 760px) {
  .figma-backend-object .object-figma-description .object-description-copy,
  .figma-backend-object .object-settlement-section .object-description-copy,
  .figma-object-sale .object-figma-description .object-description-copy,
  .figma-object-sale .object-settlement-section .object-description-copy {
    --description-collapsed-height: 216px;
    font-size: 20px;
    line-height: 1.35;
  }
}

/* Backend object/village info accordion parity, 2026-07-03. */
.figma-backend-object .object-info-panels,
.figma-object-sale .object-info-panels {
  width: 100%;
  max-width: 410px;
  justify-self: end;
}

.figma-backend-object .object-info-panels details,
.figma-object-sale .object-info-panels details {
  width: 100%;
  border-radius: 20px;
  background: #e7e9eb;
  color: var(--ink);
  overflow: hidden;
}

.figma-backend-object .object-info-panels summary,
.figma-object-sale .object-info-panels summary {
  min-height: 60px;
  padding: 0 30px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.figma-backend-object .object-info-panels details[open] summary,
.figma-object-sale .object-info-panels details[open] summary {
  color: var(--gold);
}

.figma-backend-object .object-info-panels details > div,
.figma-object-sale .object-info-panels details > div {
  display: grid;
  row-gap: 13px;
  padding: 24px 30px 30px;
}

.figma-backend-object .object-info-panels span,
.figma-object-sale .object-info-panels span {
  margin-top: 0;
  color: rgba(19, 35, 59, .46);
  font-size: 18px;
  line-height: 1;
}

.figma-backend-object .object-info-panels strong,
.figma-object-sale .object-info-panels strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.figma-backend-object .object-info-panels a,
.figma-object-sale .object-info-panels a {
  color: inherit;
  text-decoration: none;
}

.figma-backend-object .object-info-panels a:hover,
.figma-backend-object .object-info-panels a:focus-visible,
.figma-object-sale .object-info-panels a:hover,
.figma-object-sale .object-info-panels a:focus-visible {
  color: var(--gold);
}

.figma-backend-object .object-info-panels a:focus-visible,
.figma-object-sale .object-info-panels a:focus-visible {
  border-radius: 4px;
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

@media (min-width: 761px) and (max-width: 1180px) {
  .figma-backend-object .object-figma-details-grid,
  .figma-object-sale .object-figma-details-grid,
  .figma-backend-object .object-settlement-grid,
  .figma-object-sale .object-settlement-grid {
    grid-template-columns: 1fr;
  }

  .figma-backend-object .object-info-panels,
  .figma-object-sale .object-info-panels {
    max-width: 410px;
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .figma-backend-object .object-info-panels,
  .figma-object-sale .object-info-panels {
    width: calc(100vw - 40px);
    max-width: none;
    justify-self: center;
  }

  .figma-backend-object .object-info-panels summary,
  .figma-object-sale .object-info-panels summary {
    padding: 0 24px;
    font-size: 22px;
  }

  .figma-backend-object .object-info-panels details > div,
  .figma-object-sale .object-info-panels details > div {
    padding: 20px 24px 24px;
  }
}

/* Object facts design parity, 2026-07-03. */
.figma-backend-object .object-facts-section,
.figma-object-sale .object-facts-section {
  height: auto;
  padding-top: 0;
  padding-bottom: 48px;
  background: var(--gray);
}

.figma-backend-object .object-facts-section .section-inner,
.figma-object-sale .object-facts-section .section-inner {
  width: min(1740px, calc(100vw - var(--side) - var(--side)));
  max-width: none;
  margin: 0 auto;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
}

.figma-backend-object .object-facts-row,
.figma-object-sale .object-facts-row {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.55fr)
    minmax(185px, 1.1fr)
    minmax(165px, .95fr)
    minmax(170px, 1fr)
    minmax(165px, .95fr)
    minmax(175px, 1fr);
  gap: 10px;
  height: auto;
  align-items: stretch;
}

.figma-backend-object .object-facts-row:has(> .object-fact:nth-child(5):last-child),
.figma-object-sale .object-facts-row:has(> .object-fact:nth-child(5):last-child) {
  grid-template-columns:
    minmax(230px, 1.55fr)
    minmax(185px, 1.1fr)
    minmax(165px, .95fr)
    minmax(170px, 1fr)
    minmax(175px, 1fr);
}

.figma-backend-object .object-fact,
.figma-object-sale .object-fact {
  --icon-size: 30px;
  min-width: 0;
  min-height: 86px;
  height: auto;
  display: grid;
  grid-template-columns: var(--icon-size) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 5px 16px;
  align-items: center;
  align-content: center;
  padding: 16px 22px;
  border-radius: 10px;
  background: #f4f5f6;
  box-shadow: inset 0 0 0 1px rgba(19, 35, 59, .06);
  color: var(--ink);
  box-sizing: border-box;
}

.figma-backend-object .object-fact-icon,
.figma-object-sale .object-fact-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  grid-row: 1 / span 2;
  align-self: center;
  border: 0;
  background: transparent;
}

.figma-backend-object .object-fact-icon--lot,
.figma-object-sale .object-fact-icon--lot {
  --icon-size: 38px;
}

.figma-backend-object .object-fact-icon img,
.figma-object-sale .object-fact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.figma-backend-object .object-fact small,
.figma-object-sale .object-fact small {
  grid-column: 2;
  display: block;
  margin: 0;
  color: rgba(19, 35, 59, .56);
  font-size: clamp(13px, .82vw, 16px);
  font-weight: 300;
  line-height: 1.1;
  white-space: normal;
  overflow: visible;
}

.figma-backend-object .object-fact strong,
.figma-backend-object .object-fact strong a,
.figma-object-sale .object-fact strong,
.figma-object-sale .object-fact strong a {
  grid-column: 2;
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.18vw, 24px);
  font-weight: 400;
  line-height: 1.05;
  white-space: normal;
  overflow: visible;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.figma-backend-object a.object-fact,
.figma-object-sale a.object-fact {
  color: inherit;
  text-decoration: none;
}

.figma-backend-object a.object-fact strong,
.figma-object-sale a.object-fact strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.figma-backend-object a.object-fact:hover,
.figma-backend-object a.object-fact:focus-visible,
.figma-object-sale a.object-fact:hover,
.figma-object-sale a.object-fact:focus-visible {
  background: #eef0f2;
  box-shadow: inset 0 0 0 1px rgba(19, 35, 59, .12);
}

@media (min-width: 761px) and (max-width: 1180px) {
  .figma-backend-object .object-facts-row,
  .figma-object-sale .object-facts-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .figma-backend-object .object-facts-row:has(> .object-fact:nth-child(5):last-child),
  .figma-object-sale .object-facts-row:has(> .object-fact:nth-child(5):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .figma-backend-object .object-facts-section,
  .figma-object-sale .object-facts-section {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .figma-backend-object .object-facts-section .section-inner,
  .figma-object-sale .object-facts-section .section-inner {
    width: calc(100vw - 24px);
    padding: 12px;
    border-radius: 18px;
  }

  .figma-backend-object .object-facts-row,
  .figma-object-sale .object-facts-row,
  .figma-backend-object .object-facts-row:has(> .object-fact:nth-child(5):last-child),
  .figma-object-sale .object-facts-row:has(> .object-fact:nth-child(5):last-child) {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .figma-backend-object .object-fact,
  .figma-object-sale .object-fact {
    min-height: 72px;
    gap: 4px 12px;
    padding: 12px 14px;
  }

  .figma-backend-object .object-fact small,
  .figma-object-sale .object-fact small {
    font-size: 13px;
  }

  .figma-backend-object .object-fact strong,
  .figma-backend-object .object-fact strong a,
  .figma-object-sale .object-fact strong,
  .figma-object-sale .object-fact strong a {
    font-size: 18px;
  }
}

/* Object road villages cloud dynamic counts, 2026-07-03. */
.object-village-tags .object-village-pill {
  display: inline-flex;
  align-items: center;
}

.object-village-tags .object-village-pill span {
  min-width: 0;
}

.object-village-tags .object-village-pill b,
.object-village-tags .object-village-pill em {
  min-width: 22px;
  width: 22px;
  height: 22px;
  display: inline-grid;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.object-village-tags.is-expanded .object-village-tags__list {
  max-height: none;
}

@media (min-width: 1501px) {
  .object-village-tags .object-village-pill b,
  .object-village-tags .object-village-pill em {
    min-width: 28px;
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .object-village-tags .object-village-pill b,
  .object-village-tags .object-village-pill em {
    min-width: 20px;
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    font-size: 11px;
  }
}
/* End object road villages cloud dynamic counts. */

/* Object settlement CTA row, 2026-07-03. */
.figma-backend-object .object-settlement-more-row,
.figma-object-sale .object-settlement-more-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.figma-backend-object .object-settlement-more-row .object-read-more,
.figma-object-sale .object-settlement-more-row .object-read-more {
  flex: 0 0 auto;
  margin-top: 0;
}

.figma-backend-object .object-settlement-more-row .object-settlement-actions,
.figma-object-sale .object-settlement-more-row .object-settlement-actions {
  justify-content: flex-end;
  margin-top: 0;
  margin-left: auto;
}

.figma-backend-object .object-settlement-more-row .object-gold-button,
.figma-object-sale .object-settlement-more-row .object-gold-button {
  min-width: 296px;
}

@media (min-width: 761px) {
  .figma-backend-object .object-settlement-more-row,
  .figma-object-sale .object-settlement-more-row {
    margin-top: 40px;
  }
}

@media (max-width: 760px) {
  .figma-backend-object .object-settlement-more-row,
  .figma-object-sale .object-settlement-more-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .figma-backend-object .object-settlement-more-row .object-settlement-actions,
  .figma-object-sale .object-settlement-more-row .object-settlement-actions {
    width: 100%;
    margin-left: 0;
  }

  .figma-backend-object .object-settlement-more-row .object-gold-button,
  .figma-object-sale .object-settlement-more-row .object-gold-button {
    width: 100%;
    min-width: 0;
  }
}
/* End object settlement CTA row. */

/* Object see slider transform navigation, 2026-07-03. */
.object-see-panel {
  overflow: hidden;
}

.object-see-track[data-object-see-track] {
  overflow: visible !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  transform: translate3d(var(--object-see-offset, 0px), 0, 0) !important;
  transition: transform .36s ease;
  will-change: transform;
}

.object-see-track[data-object-see-track].is-jump {
  transition: none;
}

.object-see-section .object-see-arrow:not(.is-disabled):not(:disabled) {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

.object-see-section .object-see-arrow.is-disabled,
.object-see-section .object-see-arrow:disabled {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(.92) !important;
}
/* End object see slider transform navigation. */

/* Object facts section background alignment, 2026-07-03. */
@media (min-width: 761px) {
  .figma-backend-object .object-facts-section,
  .figma-object-sale .object-facts-section {
    --object-facts-white-start: 59px;
    background:
      linear-gradient(
        to bottom,
        var(--gray) 0,
        var(--gray) var(--object-facts-white-start),
        #fff var(--object-facts-white-start),
        #fff 100%
      ) !important;
  }
}
/* End object facts section background alignment. */

@media (min-width: 761px) {
  .object-settlement-actions .object-gold-button {
    min-height: 50px;
  }
}

/* Object hero should grow with multi-line titles instead of overlapping facts. */
@media (min-width: 761px) {
  .figma-backend-object .object-figma-hero,
  .figma-object-sale .object-figma-hero {
    height: auto;
    min-height: 835px;
    padding-bottom: 16px;
  }

  .figma-backend-object .object-facts-section,
  .figma-object-sale .object-facts-section {
    margin-top: 0;
  }
}
