@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  src: url("assets/fonts/Poppins-Light.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Poppins-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/Poppins-Medium.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/Poppins-SemiBold.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/Poppins-Bold.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Crimson;
  font-style: normal;
  font-weight: 200 700;
  src: url("assets/fonts/CrimsonPro-VariableFont_wght.ttf") format("truetype");
}

:root {
  --ink: #080708;
  --paper: #ffffff;
  --mist: #f6f9ff;
  --line: rgba(8, 7, 8, 0.18);
  --shadow: 0 8px 36px rgba(0, 0, 0, 0.15);
  --green: #25d366;
  --container: min(1400px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body.pr-menu-open {
  overflow-x: hidden;
}

@media (max-width: 1280px) {
  body.pr-menu-open:has(.main-nav.is-open) {
    overflow: hidden;
  }
}

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

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.78), rgba(8, 10, 12, 0.36) 72%, rgba(8, 10, 12, 0));
  color: #fff;
  display: flex;
  gap: clamp(1rem, 2.8vw, 3rem);
  justify-content: space-between;
  left: 0;
  min-height: 122px;
  padding: 1rem clamp(1.4rem, 3vw, 3rem);
  position: fixed;
  top: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, min-height 0.25s ease, padding 0.25s ease;
  width: 100%;
  z-index: 20;
}

.site-header.is-sticky {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(8, 7, 8, 0.12);
  color: var(--ink);
  min-height: 96px;
  padding-bottom: 0.65rem;
  padding-top: 0.65rem;
}

.brand {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand img {
  filter: brightness(0) invert(1);
  height: 96px;
  max-height: none;
  object-fit: contain;
  width: auto;
  transition: filter 0.25s ease, height 0.25s ease;
}

.site-header.is-sticky .brand {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.site-header.is-sticky .brand img {
  filter: brightness(0);
  height: 76px;
  max-height: none;
}

.main-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: clamp(0.8rem, 1.45vw, 2rem);
  justify-content: center;
}

.main-nav a {
  font-size: clamp(0.74rem, 0.82vw, 0.96rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a::after,
.category-row a::after {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.16rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.main-nav a:hover::after,
.category-row a:hover::after {
  opacity: 1;
}

.header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 0.9rem;
}

.language-switcher {
  display: block;
  flex: 0 0 auto;
  position: relative;
}

.language-current,
.language-menu a {
  align-items: center;
  appearance: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.42rem;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.language-current {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  min-height: 38px;
  min-width: 124px;
  padding: 0.32rem 0.72rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.language-current:hover,
.language-switcher.is-open .language-current {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.46);
}

.site-header.is-sticky .language-current {
  background: rgba(8, 7, 8, 0.04);
  border-color: rgba(8, 7, 8, 0.16);
  color: var(--ink);
}

.site-header.is-sticky .language-current:hover,
.site-header.is-sticky .language-switcher.is-open .language-current {
  background: rgba(8, 7, 8, 0.08);
  border-color: rgba(8, 7, 8, 0.22);
}

.language-current img,
.language-menu a img {
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.38);
  display: block;
  height: 18px;
  object-fit: cover;
  width: 27px;
}

.site-header.is-sticky .language-current img,
.language-menu a img {
  box-shadow: 0 0 0 1px rgba(8, 7, 8, 0.1);
}

.language-current span,
.language-menu a span {
  line-height: 1;
  white-space: nowrap;
}

.language-code {
  display: none;
}

.language-caret {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  height: 0;
  margin-left: 0.15rem;
  transition: transform 0.2s ease;
  width: 0;
}

.language-switcher.is-open .language-caret {
  transform: rotate(180deg);
}

.language-menu {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.1);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 0.15rem;
  min-width: 178px;
  opacity: 0;
  padding: 0.35rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 40;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  color: var(--ink);
  justify-content: flex-start;
  min-height: 38px;
  padding: 0.45rem 0.62rem;
}

.language-menu a:hover,
.language-menu a.is-active {
  background: var(--ink);
  border-radius: 10px;
  color: #fff;
}

.language-menu a:hover img,
.language-menu a.is-active img {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: none;
  gap: 6px;
  padding: 0.2rem;
  transition: color 0.25s ease;
  width: 42px;
}

.site-header.is-sticky .menu-toggle {
  color: var(--ink);
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  width: 100%;
}

@media (max-width: 1280px) {
  .main-nav {
    background: rgba(8, 7, 8, 0.96);
    color: #fff;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    visibility: hidden;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible;
  }

  .main-nav a {
    font-size: clamp(1.5rem, 6vw, 3rem);
    text-transform: uppercase;
  }

  .menu-toggle {
    display: inline-grid;
    position: relative;
    z-index: 22;
  }

  .site-header.is-sticky .menu-toggle {
    color: var(--ink);
  }

  .site-header.is-sticky .main-nav.is-open ~ .header-actions .menu-toggle {
    color: #fff;
  }
}

.hero {
  align-items: center;
  display: flex;
  height: calc(100svh - 10px);
  justify-content: center;
  min-height: 760px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero::after {
  background: #fff;
  bottom: 0;
  content: "";
  height: 42px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.hero-media {
  animation: slow-zoom 18s ease-in-out infinite alternate;
  background-image: url("assets/images/paraguay-hero-fast.jpg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.78)),
    rgba(0, 0, 0, 0.26);
  inset: 0;
  position: absolute;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.search-panel {
  color: #fff;
  max-width: min(1280px, calc(100vw - 2rem));
  position: relative;
  text-shadow: 0 0.12em 0.25em rgba(0, 0, 0, 0.85);
  width: max-content;
  z-index: 2;
}

.search-panel h1 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 320;
  line-height: 1.15;
  margin: 0 0 1.1rem;
  text-align: center;
}

.search-panel h1 strong {
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.78em;
  font-weight: 700;
}

.hero-search-panel {
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
  width: min(1180px, calc(100vw - 4rem));
}

.hero-search-panel h1 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  margin-bottom: 1.7rem;
  text-shadow: 0 0.12em 0.28em rgba(0, 0, 0, 0.72);
}

.hero-search-bar {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  color: var(--ink);
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) minmax(170px, 0.76fr);
  min-height: 88px;
  padding: 0.55rem;
}

.search-field {
  align-items: flex-start;
  background: #f5f5f3;
  border: 1px solid rgba(8, 7, 8, 0.08);
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.78rem 1rem 0.72rem;
  position: relative;
}

.search-field::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 8px;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  right: 1.15rem;
  top: 58%;
  transform: translateY(-60%) rotate(45deg);
  width: 8px;
}

.search-field span {
  color: rgba(8, 7, 8, 0.54);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 0.48rem;
  text-transform: uppercase;
}

.search-field select {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1rem, 1vw, 1.14rem);
  font-weight: 800;
  outline: 0;
  padding: 0 2.1rem 0 0;
  width: 100%;
}

.search-field select option {
  color: var(--ink);
}

.hero-search-submit {
  background: #050505;
  border: 0;
  border-radius: 13px;
  color: #fff;
  cursor: pointer;
  font-size: clamp(1rem, 1.15vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0 1.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-search-submit:hover {
  background: #1a1a1a;
}

.popular-searches {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  justify-content: center;
  margin-top: 1.05rem;
}

.popular-searches > span {
  color: #fff;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow: 0 0.12em 0.24em rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
}

.popular-searches a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  color: var(--ink);
  display: inline-flex;
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  font-weight: 900;
  gap: 0.7rem;
  letter-spacing: 0.16em;
  min-height: 46px;
  padding: 0 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popular-searches a:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.popular-searches i {
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  height: 14px;
  position: relative;
  width: 14px;
}

.popular-searches i::after {
  background: currentColor;
  content: "";
  height: 2px;
  position: absolute;
  right: -7px;
  top: 10px;
  transform: rotate(45deg);
  width: 8px;
}

.filters {
  align-items: center;
  background: rgba(0, 0, 0, 0.52);
  border-radius: 7px;
  display: flex;
  gap: clamp(0.8rem, 1.7vw, 2rem);
  padding: 0.5rem 1.25rem;
}

.filters label {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  min-width: 155px;
}

.filters label:nth-of-type(1) {
  min-width: 250px;
}

.filters label:nth-of-type(3) {
  min-width: 260px;
}

.filters label:nth-of-type(4) {
  min-width: 230px;
}

.filters label span {
  font-family: Crimson, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 200;
  line-height: 1;
  margin: 0.25rem 0 0.35rem;
  text-transform: uppercase;
}

.filters select {
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 600;
  line-height: 1.1;
  padding: 0.1rem 1.6rem 0.35rem 0;
  text-shadow: inherit;
  width: 100%;
}

.filters select option {
  color: var(--ink);
}

.filters label {
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position: calc(100% - 10px) calc(100% - 1.1rem), calc(100% - 4px) calc(100% - 1.1rem);
  background-repeat: no-repeat;
  background-size: 7px 7px, 7px 7px;
}

.search-button {
  align-self: flex-end;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.15rem;
  padding: 0.85rem 2.5rem;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.offplan-section {
  margin: 2.35rem auto 3.35rem;
  width: var(--container);
}

.offplan-heading,
.sale-carousel-head {
  align-items: start;
  border-top: 1px solid rgba(8, 7, 8, 0.18);
  display: grid;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 1.45rem;
  padding-top: 1.25rem;
  position: relative;
  z-index: 1;
}

.section-pill {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.7rem 1.15rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.offplan-heading small,
.developer-body small,
.developer-body em,
.developer-list-card small {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading-copy h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2.9rem, 5.2vw, 5.2rem);
  font-weight: 260;
  line-height: 0.88;
  margin: 0;
  max-width: 12.5ch;
}

.section-title-box {
  border-radius: 5px;
  display: inline-flex;
  max-width: 100%;
  padding: 0.58rem 0.82rem 0.54rem;
  width: fit-content;
}

.section-title-box-dark {
  background: var(--ink);
  color: #fff;
}

.section-title-box-light {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
}

.section-heading-copy h2.section-title-box,
.sale-heading-copy h2.section-title-box,
.promote-video-copy h2.section-title-box {
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  max-width: 100%;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading-copy p {
  color: rgba(8, 7, 8, 0.62);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.55;
  margin: 0.9rem 0 0;
  max-width: 58ch;
}

.developer-grid {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(190px, 250px);
}

.developer-card {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.16);
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.developer-card:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.23);
  transform: translateY(-5px);
}

.developer-card a,
.developer-card-linkless {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
}

.developer-card figure {
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.developer-card figure > img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.developer-card:hover figure > img {
  transform: scale(1.04);
}

.developer-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 7, 8, 0.22);
  border-radius: 5px;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  left: 1rem;
  padding: 0.45rem 0.6rem;
  position: absolute;
  top: 1rem;
  width: 104px;
}

.developer-logo img {
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}

.developer-logo.dark-logo {
  background: #080708;
  border-color: #080708;
}

.developer-logo.logo-wide {
  width: 150px;
}

.wordmark-logo {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.92;
  text-align: center;
}

.developer-body {
  padding: 1.1rem 1.15rem 1.35rem;
}

.developer-body small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: none;
}

.developer-body strong {
  display: block;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 2.45rem);
  font-weight: 320;
  line-height: 1;
  margin: 0.15rem 0 0.5rem;
}

.developer-body p {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.45;
  margin: 0 0 1.2rem;
}

.developer-body em {
  display: block;
  font-size: 0.68rem;
  margin-bottom: 0.45rem;
}

.developer-body ul {
  font-family: Crimson, Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 0 0 1.3rem;
  padding-left: 1.15rem;
}

.portfolio-link {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.developer-list-card {
  align-items: center;
  background: var(--ink);
  border-radius: 7px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
}

.developer-list-card span {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  font-size: 1.35rem;
  height: 68px;
  justify-content: center;
  margin-bottom: 2rem;
  width: 68px;
}

.developer-list-card strong {
  font-family: Crimson, Georgia, serif;
  font-size: 1.7rem;
  font-weight: 420;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.developer-list-card small {
  font-size: 0.72rem;
}

.sale-carousel {
  background: #fff;
  color: var(--ink);
  margin: 0 auto 3.35rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: var(--container);
}

.sale-carousel-head {
  grid-template-columns: minmax(0, 1fr) auto;
}

.sale-heading-copy h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2.9rem, 5.2vw, 5.2rem);
  font-weight: 260;
  line-height: 0.88;
  margin: 0;
  max-width: 12.5ch;
}

.sale-heading-copy p {
  color: rgba(8, 7, 8, 0.62);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.55;
  margin: 0.9rem 0 0;
  max-width: 58ch;
}

.section-view-link,
.sale-view-link {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 0.8rem;
  justify-self: end;
  align-self: end;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding-bottom: 0.35rem;
  text-decoration: none;
  text-transform: uppercase;
}

.section-view-link span,
.sale-view-link span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  position: relative;
  width: 38px;
  transition: transform 0.2s ease;
}

.section-view-link span::before,
.sale-view-link span::before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}

.section-view-link:hover span,
.sale-view-link:hover span {
  transform: translateX(4px);
}

.sale-carousel-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-self: end;
}

.sale-carousel-frame {
  margin: -1.25rem -3.25rem -1.25rem;
  padding: 0 3.25rem;
  position: relative;
  z-index: 1;
}

.sale-arrow {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(8, 7, 8, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 68px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 44px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sale-arrow span {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  display: block;
  height: 11px;
  width: 11px;
}

.sale-arrow:hover {
  background: #fff;
  border-color: rgba(8, 7, 8, 0.14);
  color: var(--ink);
  transform: translateY(-1px);
}

.sale-arrow:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.sale-carousel-frame .sale-arrow {
  box-shadow: 0 18px 42px rgba(8, 7, 8, 0.24);
  position: absolute;
  top: calc(50% - 0.4rem);
  transform: translateY(-50%);
  z-index: 4;
}

.sale-carousel-frame .sale-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.sale-arrow-prev {
  left: 0.65rem;
}

.sale-arrow-prev span {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.sale-arrow-next {
  right: 0.65rem;
}

.sale-arrow-next span {
  transform: rotate(45deg) translate(-1px, 1px);
}

.sale-scroll-viewport {
  cursor: grab;
  display: flex;
  gap: 1rem;
  margin: 0;
  overscroll-behavior-inline: contain;
  overflow-x: auto;
  overflow-y: visible;
  padding: 1.25rem 1.6rem 2.25rem;
  position: relative;
  scroll-behavior: auto;
  scroll-padding-left: 1.6rem;
  scrollbar-width: none;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.sale-scroll-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.sale-scroll-viewport.is-dragging a {
  cursor: grabbing;
}

.sale-scroll-viewport::-webkit-scrollbar {
  display: none;
}

.sale-scroll-track {
  display: grid;
  flex: 0 0 auto;
  gap: 1rem;
  grid-auto-columns: clamp(280px, 31vw, 410px);
  grid-auto-flow: column;
  min-width: max-content;
}

.sale-scroll-card {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.14);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
  scroll-snap-align: start;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sale-scroll-card > a {
  color: var(--ink);
  display: grid;
  min-height: 100%;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-user-drag: none;
}

.sale-scroll-card .home-property-status {
  background: #080708;
  border: 1px solid #080708;
  border-radius: 3px;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  left: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.48rem 0.62rem;
  position: absolute;
  text-transform: uppercase;
  top: 0.8rem;
  z-index: 2;
}

.rent-carousel .sale-scroll-card .home-property-status {
  background: #fff;
  border-color: rgba(8, 7, 8, 0.18);
  color: #080708;
}

.sale-scroll-card:hover {
  box-shadow: 0 10px 22px rgba(8, 7, 8, 0.08);
  transform: translateY(-2px);
}

.sale-scroll-card img {
  aspect-ratio: 4 / 3;
  display: block;
  pointer-events: none;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  width: 100%;
}

.sale-scroll-card > a > div {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.05rem 1.15rem;
}

.sale-scroll-card span {
  color: rgba(8, 7, 8, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sale-scroll-card strong {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 360;
  line-height: 0.98;
}

.sale-scroll-card em {
  font-style: normal;
  font-weight: 900;
}

.home-property-actions {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  padding: 0 1.05rem 1.05rem;
}

.home-property-actions a {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 0.45rem;
  justify-content: center;
  letter-spacing: 0.075em;
  min-height: 40px;
  padding: 0 0.62rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-property-actions span {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.home-property-actions img {
  height: 19px;
  width: 19px;
}

.home-whatsapp-action {
  background: #25d366;
  color: #fff;
}

.home-more-action {
  background: #080708;
  color: #fff;
}

.home-more-action,
.listing-card-bottom .more-info-action {
  font-size: clamp(0.62rem, 0.72vw, 0.72rem);
}

.sale-scroll-card-dark {
  align-content: end;
  background: #080708;
  color: #fff;
  min-height: 100%;
}

.sale-scroll-card-dark span {
  color: rgba(255, 255, 255, 0.62);
}

.sale-scroll-card-dark em {
  margin-top: 1.5rem;
}

.promote-video-section {
  align-items: center;
  background: #050505;
  color: #fff;
  display: grid;
  gap: clamp(2rem, 4vw, 4.2rem);
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 0.78fr);
  isolation: isolate;
  margin: 0 0 3.35rem;
  overflow: hidden;
  padding: clamp(3.1rem, 5vw, 4.9rem) max(1.5rem, calc((100vw - 1180px) / 2));
  position: relative;
  width: 100%;
}

.promote-video-section::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.76) 44%, rgba(5, 5, 5, 0.5)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.58)),
    url("assets/images/paraguay-hero-fast.jpg") center / cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.promote-video-section::after {
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  inset: 1.1rem;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.promote-video-copy {
  justify-self: end;
  max-width: 560px;
  text-align: center;
  width: 100%;
}

.promote-video-copy h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3.1rem, 5vw, 5.5rem);
  font-weight: 260;
  letter-spacing: 0.02em;
  line-height: 0.84;
  margin: 0;
  text-transform: uppercase;
}

.promote-video-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 300;
  line-height: 1.48;
  margin: clamp(1.3rem, 2.5vw, 2rem) 0 0;
  max-width: 600px;
}

.promote-video-copy p + p {
  margin-top: clamp(1.1rem, 2vw, 1.65rem);
}

.promote-video-copy strong {
  font-weight: 800;
}

.promote-service-button {
  align-items: center;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  display: inline-flex;
  font-size: clamp(0.82rem, 0.95vw, 0.98rem);
  font-weight: 900;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.02em;
  margin-top: clamp(2rem, 4vw, 4rem);
  margin-left: auto;
  margin-right: auto;
  min-height: 60px;
  padding: 1rem 1.55rem 1rem 1.85rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promote-service-button span {
  border-right: 4px solid currentColor;
  border-top: 4px solid currentColor;
  display: block;
  height: 13px;
  transform: rotate(45deg);
  width: 13px;
}

.promote-service-button:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.promote-video-frame {
  background: transparent;
  border: 0;
  box-shadow: none;
  justify-self: stretch;
  width: 100%;
}

.promote-video-frame iframe,
.vimeo-lite {
  aspect-ratio: 16 / 9;
  border: 0;
  background: #111;
  border-radius: 8px;
  display: block;
  width: 100%;
}

.vimeo-lite {
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.vimeo-lite img {
  display: block;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.25s ease;
  width: 100%;
}

.vimeo-lite span {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  display: flex;
  height: 66px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
}

.vimeo-lite span::before {
  border-bottom: 13px solid transparent;
  border-left: 19px solid #080708;
  border-top: 13px solid transparent;
  content: "";
  display: block;
  margin-left: 4px;
}

.vimeo-lite:hover img {
  opacity: 1;
  transform: scale(1.025);
}

.invest-callout {
  background: #050505;
  color: #fff;
  margin: 0 0 3.35rem;
  overflow: hidden;
  padding: clamp(3.1rem, 5vw, 4.9rem) 0;
  position: relative;
}

.invest-callout::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.3)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    url("assets/images/civis-project.jpg") center / cover no-repeat;
  content: "";
  inset: 0;
  opacity: 0.92;
  position: absolute;
}

.invest-callout::after {
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  inset: 1.1rem;
  pointer-events: none;
  position: absolute;
}

.invest-callout-inner {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4vw, 4.2rem);
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 0.78fr);
  margin: 0 auto;
  position: relative;
  width: min(1180px, calc(100vw - 3rem));
  z-index: 1;
}

.invest-copy {
  justify-self: end;
  max-width: 560px;
  width: 100%;
}

.invest-copy h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3.3rem, 6.8vw, 6rem);
  font-weight: 260;
  line-height: 0.9;
  margin: 0;
  max-width: 12ch;
}

.invest-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 300;
  line-height: 1.65;
  margin: 1.35rem 0 0;
  max-width: 54ch;
}

.invest-actions {
  justify-content: flex-start;
}

.invest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.invest-primary,
.invest-secondary {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 50px;
  min-width: 190px;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.invest-primary {
  background: #fff;
  color: var(--ink);
}

.invest-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.invest-primary:hover,
.invest-secondary:hover {
  transform: translateY(-2px);
}

.invest-secondary:hover {
  background: #fff;
  color: var(--ink);
}

.invest-board {
  backdrop-filter: blur(10px);
  background: rgba(4, 4, 4, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.invest-board::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.invest-board::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%),
    rgba(0, 0, 0, 0.16);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.invest-board article {
  display: grid;
  gap: 0.35rem 1rem;
  grid-template-columns: auto 1fr;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  position: relative;
}

.invest-board article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.invest-board span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 900;
  grid-row: 1 / 3;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.invest-board strong {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 360;
  line-height: 1;
}

.invest-board p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.48;
  margin: 0;
}

.listing-section,
.investment-section,
.about-section,
.reviews-section {
  margin: 0 auto;
  width: var(--container);
}

.listing-section {
  display: grid;
  gap: 15px;
  grid-template-columns: 70px minmax(280px, 720px) 1fr;
  grid-template-rows: auto auto auto;
  margin-bottom: 4.75rem;
  margin-top: 4.75rem;
}

.section-heading {
  background: var(--mist);
  border-radius: 8px;
  display: grid;
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  grid-template-rows: subgrid;
  padding: 4rem 3.5rem;
}

.section-heading small {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  padding-left: 0.15em;
}

.section-heading h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 230;
  line-height: 0.8;
  margin: 0.15em 0 0;
  text-transform: uppercase;
}

.section-heading .button {
  align-self: end;
  justify-self: start;
}

.category-row {
  align-self: end;
  border: 1px solid var(--ink);
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  grid-column: 3 / 4;
  justify-self: end;
  margin-bottom: 2rem;
  padding: 0.8rem 1.5rem;
}

.category-row span {
  font-weight: 300;
}

.category-row a {
  font-weight: 500;
  text-decoration: none;
}

.property-grid {
  display: grid;
  gap: 30px;
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.property-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.property-card:hover {
  transform: scale(1.025);
}

.property-card a {
  border: 5px solid #fff;
  border-radius: 20px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
}

.property-card img {
  aspect-ratio: 157 / 120;
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
}

.property-info {
  display: grid;
  gap: 0.4rem 0.7rem;
  grid-template-columns: 1fr auto;
  line-height: 1;
  padding: 0.8rem;
}

.property-info strong {
  font-size: 1.05rem;
  font-weight: 500;
}

.property-info span {
  font-size: 0.82rem;
  font-weight: 300;
  grid-column: 1;
}

.property-info em {
  align-self: center;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 300;
  grid-column: 2;
  grid-row: 1 / 3;
}

.button {
  align-items: center;
  border-radius: 3px;
  box-shadow: var(--shadow);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 0.8rem;
  justify-content: center;
  min-height: 48px;
  min-width: 160px;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.button:hover {
  box-shadow: var(--shadow), inset 0 0 0 2px #fff, 0 0 0 3px var(--ink);
}

.button img {
  height: 15px;
  transition: transform 0.2s ease;
  width: auto;
}

.button:hover img:last-child {
  transform: translateX(5px);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-outline {
  background: transparent;
  border: 1px solid var(--ink);
  box-shadow: none;
  color: var(--ink);
}

.full-bleed {
  width: 100%;
}

.management-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1180px) 1fr;
  grid-template-rows: 2rem auto 1.3rem;
  margin-bottom: 5rem;
}

.worker-board {
  align-self: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08)), url("assets/images/footer-bg.webp") center / cover;
  box-shadow: var(--shadow);
  display: grid;
  gap: 3rem 4rem;
  grid-column: 1 / 4;
  grid-row: 2;
  grid-template-columns: 1fr repeat(3, minmax(230px, 310px)) 1fr;
  padding: 4rem 0;
}

.worker-card {
  animation: float-card 8s ease-in-out infinite alternate;
  background: rgba(0, 0, 0, 0.48);
  border-radius: 6px;
  color: #fff;
  display: grid;
  gap: 0.3rem 1rem;
  grid-template-columns: auto 1fr;
  padding: 0.8rem 1rem;
}

.worker-card:nth-child(odd) {
  animation-delay: -4s;
}

.worker-card:nth-child(1),
.worker-card:nth-child(3),
.worker-card:nth-child(5) {
  grid-column: 2;
}

.worker-card:nth-child(2),
.worker-card:nth-child(4),
.worker-card:nth-child(6) {
  grid-column: 3;
}

.worker-card img {
  border-radius: 50%;
  grid-row: 1 / 3;
  height: 76px;
  object-fit: cover;
  width: 76px;
}

.worker-card strong {
  align-self: end;
  font-family: Crimson, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.worker-card span {
  font-size: 0.9rem;
  font-weight: 200;
}

@keyframes float-card {
  from {
    transform: translateX(-1rem);
  }

  to {
    transform: translateX(1rem);
  }
}

.service-card {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.75);
  border-radius: 7px;
  box-shadow: var(--shadow);
  max-width: 610px;
  padding: clamp(2rem, 5vw, 4.4rem);
  position: relative;
}

.service-card::before,
.secondary-panel::before,
.insights-panel::before {
  display: none;
  content: "";
  height: 4px;
  left: 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.service-card.overlay-card {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  justify-self: end;
  min-height: 620px;
  position: relative;
  z-index: 2;
}

.service-card h2,
.secondary-panel h2 {
  display: flex;
  flex-direction: column;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 230;
  line-height: 0.9;
  margin: 0 0 0.7em;
  text-transform: uppercase;
}

.service-card p,
.secondary-panel p {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 300;
  line-height: 1.55;
  max-width: 43ch;
}

.service-card strong,
.secondary-panel strong {
  font-weight: 500;
}

.service-card .button,
.secondary-panel .button {
  margin-top: 2.5rem;
}

.investment-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  padding-top: 4.5rem;
  position: relative;
}

.investment-banner {
  align-self: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.46)), url("assets/images/asuncion-sale-hero.jpeg") center / cover;
  border-radius: 8px;
  min-height: 493px;
  position: relative;
  width: 82%;
}

.investment-banner::before {
  border: 1px solid #fff;
  border-radius: 8px;
  content: "";
  inset: 1rem;
  position: absolute;
}

.investment-banner h2 {
  color: #fff;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 230;
  line-height: 1;
  margin: 0;
  max-width: 24ch;
  padding: 4rem 5rem;
  position: relative;
  text-transform: uppercase;
}

.mini-card-row {
  display: flex;
  gap: clamp(2rem, 10vw, 12rem);
  justify-content: center;
  margin-top: -10rem;
  position: relative;
  z-index: 2;
}

.mini-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 7px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  max-width: 520px;
  padding: 2rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.mini-card:hover {
  transform: scale(1.025);
}

.mini-card h3 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.mini-card p {
  font-size: 0.95rem;
  font-weight: 300;
  grid-column: 1;
  margin: 0;
}

.mini-card img {
  grid-column: 2;
  grid-row: 1 / 3;
  height: 26px;
}

.journey-copy {
  align-self: end;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin-right: 3rem;
  max-width: 25ch;
  text-transform: uppercase;
}

.about-section {
  align-items: flex-end;
  display: flex;
  margin-bottom: 5.5rem;
  margin-top: 1rem;
}

.secondary-panel {
  background: var(--mist);
  border-radius: 5px;
  max-width: 58%;
  padding: clamp(2.5rem, 6vw, 4.7rem);
  position: relative;
}

.secondary-panel h2 {
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  max-width: 12ch;
}

.video-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: -5.5rem;
  margin-left: -8rem;
  max-width: 760px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}

.video-card img {
  aspect-ratio: 16 / 9;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  object-fit: cover;
  padding: 5px;
}

.video-card strong {
  font-family: Crimson, Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.play-button {
  border-bottom: 34px solid transparent;
  border-left: 52px solid rgba(255, 255, 255, 0.92);
  border-top: 34px solid transparent;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.38));
  left: 50%;
  position: absolute;
  top: 39%;
  transform: translate(-45%, -50%);
}

.promote-section {
  align-items: center;
  background: url("assets/images/paraguay-hero-fast.jpg") center / cover;
  display: flex;
  justify-content: center;
  margin: 1rem 0 5.5rem;
  min-height: 530px;
  padding: 1rem;
}

.promote-section .service-card {
  margin-bottom: -1rem;
  margin-top: -1rem;
}

.insights-section {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.insights-panel {
  background: var(--mist);
  border-radius: 20px;
  max-width: min(1300px, 80vw);
  padding: 2rem 3rem 3rem;
  position: relative;
}

.insights-panel h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 230;
  line-height: 0.9;
  margin: 0;
  max-width: 18ch;
  text-transform: uppercase;
}

.insights-panel hr {
  border: 0;
  border-bottom: 1px solid var(--ink);
  margin: 1.5rem 0 2rem;
}

.article-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: -6rem;
}

.article-card {
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 5px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.article-card:hover {
  transform: scale(1.015);
}

.article-card a {
  color: inherit;
  display: block;
  padding: 0.3rem;
  text-decoration: none;
}

.article-card img {
  aspect-ratio: 480 / 260;
  border-radius: 5px 5px 0 0;
  object-fit: cover;
  width: 100%;
}

.article-card div {
  padding: 0.7rem 1.3rem 1rem;
}

.article-card h3 {
  display: -webkit-box;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  overflow: hidden;
  text-transform: uppercase;
}

.article-card p {
  display: -webkit-box;
  font-size: 0.95rem;
  font-weight: 300;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.reviews-section {
  display: grid;
  gap: 3rem clamp(1rem, 4vw, 5rem);
  grid-template-columns: 1fr 410px 410px;
  grid-template-rows: repeat(3, minmax(130px, auto));
  margin-bottom: 5rem;
  margin-top: 6rem;
}

.reviews-section h2 {
  display: flex;
  flex-direction: column;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 230;
  grid-row: 1 / 3;
  line-height: 0.91;
  margin: 0;
  text-transform: uppercase;
}

.review-card {
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}

.review-card.tinted {
  background: var(--mist);
}

.review-card.outlined {
  border: 1px solid var(--ink);
}

.review-card strong {
  font-family: Crimson, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.review-card p {
  font-size: 0.88rem;
  font-weight: 300;
  margin: 0;
}

.stars {
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.72rem;
  margin-left: 0.6rem;
}

.shifted-left {
  transform: translateX(-90px);
}

.shifted-right {
  transform: translateX(90px);
}

.review-score {
  align-items: flex-start;
  background: var(--ink);
  border-radius: 7px;
  box-shadow: var(--shadow);
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 1.15rem;
  font-weight: 500;
  gap: 0.4rem;
  justify-self: end;
  max-width: 300px;
  padding: 1rem 1.3rem;
  text-decoration: none;
  text-transform: uppercase;
}

.review-score span {
  align-items: center;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 300;
  gap: 0.4rem;
}

.review-score img {
  display: inline-block;
  height: 16px;
  width: auto;
}

.team-section {
  background: #fff;
  overflow: hidden;
  padding: clamp(3.25rem, 5.4vw, 5.2rem) 0 clamp(3rem, 5vw, 4.8rem);
  position: relative;
}

.team-circle-shell {
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: var(--container);
  z-index: 1;
}

.team-circle-heading {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  margin-bottom: clamp(1.85rem, 3.2vw, 3rem);
}

.team-circle-heading > span {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 0.42rem 0.82rem;
  text-transform: uppercase;
}

.team-circle-heading h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3.7rem, 7.2vw, 7.8rem);
  font-weight: 350;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.team-circle-grid {
  align-items: start;
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 3.2rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-circle-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.7vw, 1.35rem);
}

.team-circle-card:nth-child(even) {
  margin-top: clamp(1.4rem, 3.5vw, 3rem);
}

.team-circle-photo {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.16);
  border-radius: 50%;
  box-shadow: 0 22px 48px rgba(8, 7, 8, 0.12);
  display: flex;
  justify-content: center;
  margin: 0;
  max-width: 280px;
  overflow: hidden;
  padding: 0.55rem;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  width: min(100%, clamp(12.2rem, 17vw, 16.5rem));
}

.team-circle-photo::before {
  border: 1px solid rgba(8, 7, 8, 0.18);
  border-radius: 50%;
  content: "";
  inset: 0.38rem;
  position: absolute;
  z-index: 2;
}

.team-circle-photo img {
  border-radius: 50%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.team-circle-card:hover .team-circle-photo {
  box-shadow: 0 30px 64px rgba(8, 7, 8, 0.18);
  transform: translateY(-5px);
}

.team-circle-copy h3 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 420;
  line-height: 0.95;
  margin: 0;
}

.whatsapp {
  align-items: center;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 5px;
  bottom: 2rem;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  color: var(--ink);
  display: flex;
  font-size: 1.05rem;
  gap: 0.45rem;
  height: 40px;
  justify-content: center;
  outline: 2px solid #fff;
  padding: 0 0.6rem;
  position: fixed;
  right: 2rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 30;
}

.whatsapp:hover {
  background: var(--green);
  color: #fff;
}

.whatsapp img {
  height: 25px;
  width: 25px;
}

.site-footer {
  background: #050505;
  border-top: 0;
  color: #fff;
  overflow: hidden;
  padding: clamp(2.8rem, 5vw, 5rem) 0 clamp(1.5rem, 3vw, 2.4rem);
  position: relative;
}

.site-footer::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.footer-shell {
  margin: 0 auto;
  position: relative;
  width: var(--container);
}

.footer-shell a {
  color: #fff;
  text-decoration: none;
}

.footer-listings h3,
.footer-contact h3,
.footer-social h3 {
  color: rgba(255, 255, 255, 0.56);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  gap: clamp(1.6rem, 4vw, 4rem);
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.7fr) minmax(220px, 0.85fr) auto;
  padding: clamp(1.2rem, 3vw, 2.6rem) 0 clamp(1.4rem, 3vw, 2.8rem);
}

.footer-logo-col {
  align-items: start;
  display: grid;
  gap: 1rem;
}

.footer-logo {
  filter: brightness(0) invert(1);
  max-height: 155px;
  max-width: 155px;
  object-fit: contain;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.55;
  margin: 0;
  max-width: 34ch;
}

.footer-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.footer-markets span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.44rem 0.68rem;
  text-transform: uppercase;
}

.footer-listings {
  display: grid;
  gap: 0.55rem;
}

.footer-listings a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-listings a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-social {
  display: grid;
  justify-items: end;
  align-content: start;
}

.footer-social nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.footer-social nav a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  display: inline-flex;
  padding: 0.35rem;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social nav img {
  height: 34px;
  object-fit: contain;
  width: auto;
}

.footer-social nav a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  grid-area: bottom;
  justify-content: space-between;
  padding-top: clamp(1.1rem, 2vw, 1.5rem);
}

.footer-bottom address,
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  font-style: normal;
  gap: 0.6rem 1rem;
  justify-content: flex-end;
}

.footer-bottom address a,
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-bottom address a:hover,
.footer-legal-links a:hover {
  color: #fff;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
}

.legal-page {
  background: #fff;
  color: var(--ink);
  padding: clamp(7.4rem, 11vw, 10.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.legal-hero {
  border-bottom: 1px solid rgba(8, 7, 8, 0.14);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(1.6rem, 4vw, 3.2rem);
  text-align: center;
  width: min(980px, calc(100vw - 2rem));
}

.legal-hero span {
  color: rgba(8, 7, 8, 0.52);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.legal-hero h1 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  margin: 0;
}

.legal-hero p {
  color: rgba(8, 7, 8, 0.62);
  font-size: 1rem;
  margin: 1rem 0 0;
}

.legal-content {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  padding-top: clamp(1.6rem, 4vw, 3rem);
  width: min(980px, calc(100vw - 2rem));
}

.legal-card {
  border: 1px solid rgba(8, 7, 8, 0.12);
  border-radius: 8px;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
}

.legal-card h2 {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 0.7rem;
}

.legal-card p,
.legal-card li {
  color: rgba(8, 7, 8, 0.68);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-card p {
  margin: 0;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-card a {
  color: var(--ink);
  font-weight: 800;
}

.sale-page {
  background: #fff;
  color: var(--ink);
  padding-bottom: 5rem;
}

.sale-page-hero {
  align-items: stretch;
  background-image: linear-gradient(90deg, rgba(8, 7, 8, 0.74), rgba(8, 7, 8, 0.18) 58%, rgba(8, 7, 8, 0.08)), url("assets/images/asuncion-sale-hero.jpeg");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  justify-content: flex-end;
  min-height: clamp(480px, 46vw, 680px);
  padding: clamp(8rem, 13vw, 13rem) max(1rem, calc((100vw - 1400px) / 2)) clamp(7rem, 9vw, 9rem);
  position: relative;
}

.rent-page-hero {
  background-image: linear-gradient(90deg, rgba(8, 7, 8, 0.78), rgba(8, 7, 8, 0.32) 58%, rgba(8, 7, 8, 0.1)), url("assets/images/hero-property-fast.jpg");
  background-position: center 58%;
}

.sale-page-hero-copy {
  max-width: 760px;
  padding-left: clamp(0rem, 1.5vw, 1rem);
  position: relative;
  z-index: 1;
}

.sale-page-hero-copy span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.sale-page-hero-copy h1 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  font-weight: 300;
  line-height: 0.88;
  margin: 0;
  max-width: 860px;
}

.sale-page-hero-copy p {
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 400;
  line-height: 1.55;
  margin: 1.3rem 0 0;
  max-width: 58ch;
}

.sale-page-search {
  bottom: 0;
  left: 50%;
  margin: 0;
  max-width: none;
  position: absolute;
  transform: translate(-50%, 50%);
  width: min(1180px, calc(100vw - 4rem));
  z-index: 2;
}

.sale-page-search .hero-search-bar {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.catalog-search-panel {
  margin: -3.5rem auto 0;
  position: relative;
  width: min(1180px, calc(100vw - 4rem));
  z-index: 3;
}

.catalog-search-form .hero-search-bar {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(8, 7, 8, 0.2);
}

.sale-listings-section {
  padding: clamp(4.4rem, 5.8vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
}

.sale-listings-head {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto clamp(1.4rem, 2.5vw, 2.3rem);
  width: min(1780px, calc(100vw - 3rem));
}

.sale-listings-head h2 {
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.25rem, 1.55vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}

.sale-listings-head h2 span {
  color: rgba(8, 7, 8, 0.45);
  margin: 0 0.35rem;
}

.sale-listings-head h2 strong {
  font-weight: 800;
}

.sale-listings-head p {
  color: rgba(8, 7, 8, 0.66);
  font-size: clamp(0.92rem, 1.05vw, 1.04rem);
  margin: 0.35rem 0 0;
}

.sale-listing-controls {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 1rem;
}

.sale-listing-controls > span {
  color: rgba(8, 7, 8, 0.72);
  font-weight: 500;
  white-space: nowrap;
}

.filter-icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 0.26rem;
  height: 38px;
  justify-content: center;
  padding: 0;
  width: 38px;
}

.filter-icon-button span {
  background: #080708;
  border-radius: 999px;
  display: block;
  height: 3px;
}

.filter-icon-button span:nth-child(1) {
  width: 26px;
}

.filter-icon-button span:nth-child(2) {
  width: 16px;
}

.filter-icon-button span:nth-child(3) {
  width: 7px;
}

.sale-select-pill {
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.5 7 7.5 13 1.5' fill='none' stroke='%23080708' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 0.35rem center;
  background-repeat: no-repeat;
  background-size: 14px 9px;
  border: 1px solid rgba(8, 7, 8, 0.14);
  border-radius: 4px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.75rem;
  justify-content: space-between;
  min-height: 42px;
  min-width: 205px;
  padding: 0.35rem 2rem 0.35rem 0.8rem;
}

.sale-select-pill:focus-visible {
  border-color: #080708;
  outline: 2px solid rgba(8, 7, 8, 0.16);
  outline-offset: 2px;
}

.sale-card-grid {
  display: grid;
  gap: clamp(1.35rem, 2.2vw, 2rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  width: min(1780px, calc(100vw - 3rem));
}

.sale-grid-card {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.11);
  border-radius: 11px;
  box-shadow: 0 5px 18px rgba(8, 7, 8, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sale-grid-card.is-clickable-card {
  cursor: pointer;
}

.sale-grid-card.is-clickable-card:focus-visible {
  outline: 3px solid rgba(8, 7, 8, 0.42);
  outline-offset: 4px;
}

.sale-grid-card:hover {
  box-shadow: 0 12px 28px rgba(8, 7, 8, 0.1);
  transform: translateY(-2px);
}

.sale-grid-media {
  aspect-ratio: 1.44 / 1;
  background: #111;
  overflow: hidden;
  position: relative;
}

.sale-grid-media img,
.sale-grid-media video {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.sale-grid-media video {
  background: #111;
  cursor: pointer;
}

.sale-grid-card:hover .sale-grid-media img,
.sale-grid-card:hover .sale-grid-media video {
  transform: scale(1.035);
}

.sale-status-label {
  align-items: center;
  background: rgba(8, 7, 8, 0.88);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 32px;
  padding: 0 0.82rem;
  position: absolute;
  left: 0.8rem;
  pointer-events: none;
  text-transform: uppercase;
  top: 0.8rem;
  z-index: 2;
}

.rent-page .sale-status-label {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.16);
  color: #080708;
}

.sale-grid-body {
  display: grid;
  gap: 0.72rem;
  padding: clamp(1.15rem, 1.55vw, 1.45rem) clamp(1.1rem, 1.8vw, 1.55rem) clamp(1.15rem, 1.55vw, 1.45rem);
}

.sale-grid-body h2 {
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  font-weight: 500;
  line-height: 1.34;
  margin: 0;
}

.sale-grid-price {
  font-size: clamp(1.3rem, 1.65vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
}

.listing-tagline {
  color: rgba(8, 7, 8, 0.83);
  font-size: clamp(0.82rem, 0.95vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
  margin: 0;
  text-transform: uppercase;
}

.listing-location {
  align-items: start;
  color: rgba(8, 7, 8, 0.7);
  display: inline-grid;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  gap: 0.55rem;
  grid-template-columns: auto 1fr;
  line-height: 1.45;
  margin: 0;
  position: relative;
}

.listing-location::before {
  border: 2px solid #3c7067;
  border-radius: 999px 999px 999px 0;
  content: "";
  height: 13px;
  margin-top: 0.14rem;
  transform: rotate(-45deg);
  width: 13px;
}

.listing-location::after {
  background: #3c7067;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 4.5px;
  position: absolute;
  top: 8px;
  width: 4px;
}

.sale-grid-meta {
  color: rgba(8, 7, 8, 0.82);
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  gap: 0.5rem;
  margin: 0;
}

.sale-grid-meta span:not(:last-child)::after {
  background: rgba(8, 7, 8, 0.48);
  content: "";
  display: inline-block;
  height: 20px;
  margin-left: 0.5rem;
  vertical-align: -0.25rem;
  width: 1px;
}

.listing-card-bottom {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 0.65rem;
}

.listing-action-row {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  width: 100%;
}

.listing-card-bottom .whatsapp-action,
.listing-card-bottom .more-info-action {
  align-items: center;
  border-radius: 9px;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.45rem;
  justify-content: center;
  letter-spacing: 0.075em;
  min-height: 42px;
  padding: 0 0.72rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.listing-card-bottom .whatsapp-action {
  background: #25d366;
  color: #fff;
}

.listing-card-bottom .whatsapp-action img {
  height: 20px;
  width: 20px;
}

.listing-card-bottom .more-info-action {
  background: #080708;
  color: #fff;
}

.listing-pagination {
  align-items: center;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin: clamp(2rem, 4vw, 3.4rem) auto 0;
  width: min(1780px, calc(100vw - 3rem));
}

.listing-pagination a {
  align-items: center;
  border: 1px solid rgba(8, 7, 8, 0.14);
  border-radius: 999px;
  color: rgba(8, 7, 8, 0.72);
  display: inline-flex;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 0.85rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.listing-pagination a:hover,
.listing-pagination a.is-active {
  background: #080708;
  border-color: #080708;
  color: #fff;
}

.listing-pagination .is-disabled {
  opacity: 0.34;
  pointer-events: none;
}

.sale-grid-actions {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 0.35rem;
}

.sale-grid-actions a {
  align-items: center;
  background: #e9eef2;
  border-radius: 8px;
  color: #69757d;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  text-align: center;
  text-decoration: none;
}

.sale-grid-actions a img {
  flex: 0 0 auto;
  height: 22px;
  object-fit: contain;
  width: 22px;
}

.sale-grid-actions .email-action {
  background: #e8eef2;
  color: #69757d;
}

.sale-grid-actions .whatsapp-action {
  background: #e8f9ef;
  color: #25d366;
}

.sale-grid-actions .whatsapp-action img {
  height: 24px;
  width: 24px;
}

.sale-grid-actions .show-more {
  background: var(--ink);
  color: #fff;
  grid-column: 1 / -1;
}

.sale-no-results {
  background: #f5f5f3;
  border: 1px solid rgba(8, 7, 8, 0.12);
  border-radius: 9px;
  margin: clamp(1.5rem, 3vw, 2.4rem) auto 0;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  width: min(820px, calc(100vw - 4rem));
}

.sale-no-results h3 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 350;
  line-height: 0.95;
  margin: 0 0 0.8rem;
}

.sale-no-results p {
  color: rgba(8, 7, 8, 0.66);
  margin: 0 auto 1.4rem;
  max-width: 44ch;
}

.sale-no-results button {
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  min-height: 48px;
  padding: 0 1.25rem;
}

.property-detail-page {
  background: #f3f6f8;
  padding: clamp(7.1rem, 9vw, 8.4rem) 0 clamp(3rem, 6vw, 5rem);
}

.property-detail-layout {
  margin: 0 auto;
  width: min(1500px, calc(100vw - 2rem));
}

.property-breadcrumb {
  align-items: center;
  color: #42576b;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  gap: 0.58rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.property-breadcrumb a {
  color: #263d53;
  font-weight: 650;
  text-decoration: none;
}

.property-breadcrumb span {
  color: rgba(38, 61, 83, 0.58);
}

.property-detail-top-grid,
.property-detail-lower-grid {
  align-items: start;
  display: grid;
  gap: clamp(1.35rem, 2.4vw, 2.2rem);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
}

.property-media-stack,
.property-detail-main {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.property-main-video {
  aspect-ratio: 16 / 10;
  background: #0b1118;
  border-radius: 4px;
  box-shadow: 0 22px 58px rgba(27, 43, 58, 0.12);
  overflow: hidden;
  position: relative;
}

.property-main-video video,
.property-main-video iframe {
  border: 0;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.property-media-actions {
  display: flex;
  gap: 0.5rem;
  position: absolute;
  right: 1.15rem;
  top: 1.15rem;
  z-index: 2;
}

.property-media-actions span {
  background: rgba(18, 39, 58, 0.88);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 850;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 42px;
  padding: 0 0.9rem;
  align-items: center;
  text-transform: uppercase;
}

.property-media-actions span.is-active {
  background: #0aaee8;
}

.property-thumb-strip {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-thumb-strip figure {
  aspect-ratio: 1.65 / 1;
  background: #dfe4e8;
  border-radius: 2px;
  margin: 0;
  overflow: hidden;
}

.property-thumb-strip img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.property-detail-contact,
.property-detail-card,
.property-detail-facts-card,
.property-request-card {
  background: #fff;
  border: 1px solid rgba(31, 47, 63, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(28, 43, 58, 0.07);
}

.property-detail-contact {
  padding: clamp(1.35rem, 2.3vw, 2rem);
  position: sticky;
  top: 7rem;
}

.detail-eyebrow {
  color: rgba(27, 43, 58, 0.62);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 850;
  gap: 0.55rem;
  letter-spacing: 0.11em;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}

.detail-eyebrow span:first-child {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  padding: 0.38rem 0.68rem;
}

.property-detail-contact h1 {
  color: #122334;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.75rem, 2.2vw, 2.45rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 0.8rem;
}

.detail-location {
  color: rgba(27, 43, 58, 0.62);
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0 0 1.05rem;
}

.detail-location::before {
  content: "⌖";
  margin-right: 0.35rem;
}

.detail-side-price {
  color: #122334;
  display: block;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 1.45rem;
}

.property-agent-card {
  align-items: center;
  border-top: 1px solid rgba(27, 43, 58, 0.1);
  display: flex;
  gap: 1rem;
  margin: 0 0 1.2rem;
  padding-top: 1.2rem;
}

.property-agent-card img {
  background: #f5f7f9;
  border-radius: 7px;
  filter: brightness(0);
  height: 72px;
  object-fit: contain;
  padding: 0.45rem;
  width: 72px;
}

.property-agent-card span {
  color: #122334;
  display: block;
  font-weight: 850;
}

.property-agent-card small,
.detail-contact-note {
  color: rgba(27, 43, 58, 0.58);
  display: block;
  line-height: 1.5;
}

.detail-whatsapp-button,
.detail-email-button {
  align-items: center;
  border-radius: 7px;
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-whatsapp-button {
  background: #e9fbf0;
  border: 1px solid rgba(37, 211, 102, 0.34);
  color: #128c4a;
  gap: 0.5rem;
  margin-bottom: 0.72rem;
}

.detail-whatsapp-button img {
  height: 25px;
  width: 25px;
}

.detail-email-button {
  background: #e8eef4;
  color: #4c6176;
  margin-bottom: 0.95rem;
}

.property-detail-lower-grid {
  margin-top: clamp(1.35rem, 2.4vw, 2.2rem);
}

.property-overview-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-detail-facts-card {
  padding: clamp(1rem, 1.7vw, 1.3rem);
}

.property-overview-grid article {
  background: #fff;
  border: 1px solid rgba(31, 47, 63, 0.08);
  border-radius: 8px;
  min-height: 78px;
  padding: 1rem;
}

.property-overview-grid span,
.property-details-list dt {
  color: rgba(27, 43, 58, 0.54);
  display: block;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  margin-bottom: 0.34rem;
  text-transform: uppercase;
}

.property-overview-grid strong,
.property-details-list dd {
  color: #122334;
  font-size: 1rem;
  font-weight: 850;
  margin: 0;
}

.property-detail-card,
.property-request-card {
  padding: clamp(1.25rem, 2.2vw, 2rem);
}

.property-detail-card h2,
.property-request-card h2 {
  color: #122334;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.detail-tagline {
  color: #122334;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.property-detail-card p:not(.detail-tagline) {
  color: rgba(27, 43, 58, 0.68);
  font-size: 1.02rem;
  line-height: 1.68;
  margin: 0;
  max-width: 78ch;
}

.property-details-list,
.property-feature-list {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.property-details-list div,
.property-feature-list li {
  background: #f5f7f9;
  border-radius: 8px;
  min-height: 54px;
  padding: 0.85rem 0.95rem;
}

.property-feature-list {
  list-style: none;
  padding: 0;
}

.property-feature-list li {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 0.55rem;
}

.property-feature-list li::before {
  background: #122334;
  border-radius: 50%;
  content: "";
  flex: 0 0 7px;
  height: 7px;
  width: 7px;
}

.property-request-card {
  position: sticky;
  top: 7rem;
}

.property-request-card .message-form {
  display: grid;
  gap: 0.65rem;
}

.property-request-card input,
.property-request-card textarea {
  background: #fff;
  border: 1px solid rgba(31, 47, 63, 0.12);
  border-radius: 7px;
  color: #122334;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  width: 100%;
}

.property-request-card textarea {
  min-height: 120px;
  resize: vertical;
}

.property-request-card button {
  background: #0aaee8;
  border: 0;
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  min-height: 52px;
  text-transform: uppercase;
}

.property-request-card .form-status {
  color: rgba(27, 43, 58, 0.68);
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}

.catalog-no-results {
  grid-column: 1 / -1;
}

.catalog-page {
  background: #fff;
  padding-bottom: 6rem;
}

.catalog-hero {
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: 610px;
  padding: 9rem clamp(1rem, 8vw, 8rem) 8rem;
  position: relative;
}

.catalog-hero::before {
  background: linear-gradient(90deg, rgba(8, 7, 8, 0.82), rgba(8, 7, 8, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.catalog-hero-sale {
  background-image: url("assets/images/asuncion-sale-hero.jpeg");
}

.catalog-hero-rent {
  background-image: url("assets/images/hero-property-fast.jpg");
}

.catalog-hero-compact {
  min-height: 340px;
  padding-bottom: 4.2rem;
}

.catalog-hero-compact::before {
  background: linear-gradient(90deg, rgba(8, 7, 8, 0.82), rgba(8, 7, 8, 0.36));
}

.catalog-hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.catalog-hero-copy small,
.catalog-intro small,
.message-copy small,
.pricing-section small,
.exposure-section small,
.media-card small {
  display: block;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-hero-copy h1 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 260;
  line-height: 0.9;
  margin: 0.15rem 0 1.5rem;
}

.catalog-hero-copy p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  max-width: 52ch;
}

.catalog-arrows {
  display: flex;
  inset: 0;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.catalog-arrows span {
  align-self: center;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(5rem, 10vw, 7rem);
  font-weight: 200;
}

.catalog-toolbar {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.24);
  border-radius: 7px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: -3rem auto 0;
  padding: 1.25rem 1.5rem;
  position: relative;
  text-transform: uppercase;
  width: min(1500px, calc(100vw - 2rem));
  z-index: 3;
}

.catalog-toolbar div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.catalog-toolbar a {
  text-decoration: none;
}

.filter-button {
  border: 1px solid var(--ink);
  border-radius: 5px;
  padding: 0.8rem 1.4rem;
}

.catalog-intro {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  margin: 6rem auto 3rem;
  width: var(--container);
}

.catalog-intro h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  font-weight: 260;
  line-height: 0.88;
  margin: 0.25rem 0 0;
}

.catalog-intro p {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.catalog-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin: 0 auto;
  width: var(--container);
}

.catalog-search-results {
  grid-template-columns: 1fr;
}

.catalog-list {
  display: grid;
  gap: 2rem;
}

.result-card {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.16);
  border-radius: 0;
  box-shadow: 0 20px 45px rgba(8, 7, 8, 0.1);
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  overflow: hidden;
}

.result-media {
  background: var(--ink);
  color: #fff;
  display: block;
  height: 100%;
  isolation: isolate;
  min-height: 340px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.result-media img {
  display: block;
  filter: saturate(1.02) contrast(1.02);
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
  width: 100%;
}

.result-media::after {
  background: linear-gradient(180deg, rgba(8, 7, 8, 0.08), rgba(8, 7, 8, 0.42));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.result-card:hover .result-media img {
  opacity: 0.92;
  transform: scale(1.035);
}

.media-label {
  background: #fff;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  left: 1rem;
  letter-spacing: 0.12em;
  padding: 0.55rem 0.75rem;
  position: absolute;
  text-transform: uppercase;
  top: 1rem;
  z-index: 2;
}

.play-badge {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  bottom: 1.1rem;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.8rem;
  height: 46px;
  justify-content: center;
  left: 1.1rem;
  padding-left: 0.1rem;
  position: absolute;
  width: 46px;
  z-index: 2;
}

.result-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.result-topline {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
}

.status-tag {
  align-self: start;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.45rem 0.75rem;
  text-transform: uppercase;
}

.result-ref {
  color: rgba(8, 7, 8, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.result-price {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 420;
  line-height: 1;
}

.result-content h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1;
  margin: 0;
}

.result-location {
  border-bottom: 1px solid rgba(8, 7, 8, 0.18);
  border-top: 1px solid rgba(8, 7, 8, 0.18);
  font-weight: 300;
  margin: 0;
  padding: 0.85rem 0;
}

.result-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.result-amenities span {
  border: 1px solid rgba(8, 7, 8, 0.24);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  text-transform: uppercase;
}

.result-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.result-actions a {
  border: 1px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.8rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.result-actions a:first-child {
  background: var(--ink);
  color: #fff;
}

.tour-callout {
  align-items: center;
  background: var(--ink);
  border-radius: 9px;
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(220px, 0.75fr) 1fr;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.tour-callout small {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tour-callout h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin: 0.2rem 0 0;
}

.tour-callout p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

.filters-aside {
  background: var(--mist);
  border: 1px solid rgba(8, 7, 8, 0.2);
  border-radius: 9px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 1.2rem;
  padding: 1.4rem;
  position: sticky;
  top: 7rem;
}

.filters-aside h2 {
  font-family: Crimson, Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0;
}

.filters-aside label,
.message-form label {
  display: grid;
  gap: 0.45rem;
}

.filters-aside label span,
.message-form span,
.filter-checks > span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filters-aside select,
.message-form input,
.message-form select,
.message-form textarea {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.2);
  border-radius: 5px;
  color: var(--ink);
  min-height: 46px;
  padding: 0.8rem;
  width: 100%;
}

.filter-checks {
  display: grid;
  gap: 0.65rem;
}

.filter-checks label {
  align-items: center;
  display: flex;
  font-size: 0.95rem;
  font-weight: 300;
  gap: 0.5rem;
}

.promote-page {
  background: #fff;
}

.service-hero {
  align-items: flex-end;
  background: url("assets/images/promote-bg.webp") center / cover;
  color: #fff;
  display: flex;
  min-height: 620px;
  padding: 9rem clamp(1rem, 8vw, 8rem) 8rem;
  position: relative;
}

.service-hero-overlay {
  background: linear-gradient(90deg, rgba(8, 7, 8, 0.82), rgba(8, 7, 8, 0.2));
  inset: 0;
  position: absolute;
}

.service-hero-content {
  max-width: 740px;
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 260;
  line-height: 0.88;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}

.service-hero p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
  max-width: 52ch;
}

.hero-tab {
  background: #fff;
  border-radius: 0 18px 0 0;
  bottom: 0;
  color: var(--ink);
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  left: 0;
  min-width: min(520px, 90vw);
  padding: 1.3rem 3rem;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 2;
}

.exposure-section,
.pricing-section,
.message-section {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  margin: 6rem auto;
  width: var(--container);
}

.exposure-section article h2,
.pricing-section h2,
.message-copy h2,
.why-section h2,
.mini-team-section h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 260;
  line-height: 0.9;
  margin: 0.25rem 0 1.3rem;
  text-transform: uppercase;
}

.exposure-section p,
.pricing-section p,
.message-copy p {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 300;
  line-height: 1.55;
}

.social-stack {
  align-self: center;
  display: grid;
  gap: 1rem;
}

.social-stack span,
.contact-pills a {
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  padding: 0.85rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.media-services {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 6rem;
  width: var(--container);
}

.media-card {
  border: 1px solid rgba(8, 7, 8, 0.2);
  border-radius: 9px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

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

.media-card div {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.media-card h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 0.95;
  margin: 0.2rem 0 1rem;
}

.media-card p {
  font-weight: 300;
  line-height: 1.5;
}

.media-card.dark {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
}

.media-card.dark a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.why-section {
  background: var(--mist);
  padding: 5rem 0;
}

.why-section h2,
.why-section > div {
  margin-left: auto;
  margin-right: auto;
  width: var(--container);
}

.why-section > div {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-section article {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.2);
  border-radius: 9px;
  padding: 1.8rem;
}

.why-section span {
  font-family: Crimson, Georgia, serif;
  font-size: 3rem;
}

.why-section h3 {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-section p {
  font-weight: 300;
  line-height: 1.5;
}

.pricing-table {
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 9px;
  box-shadow: var(--shadow);
}

.pricing-table div {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.pricing-table div + div {
  border-top: 1px solid rgba(8, 7, 8, 0.16);
}

.pricing-table span {
  font-family: Crimson, Georgia, serif;
  font-size: 1.6rem;
}

.message-section {
  align-items: start;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.message-form {
  background: var(--ink);
  border-radius: 9px;
  color: #fff;
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.message-form textarea {
  min-height: 130px;
  resize: vertical;
}

.message-form button {
  background: #fff;
  border: 0;
  border-radius: 5px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  min-height: 52px;
  text-transform: uppercase;
}

.form-status {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.32);
  border-radius: 10px;
  color: #0f5d31;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  padding: 0.85rem 1rem;
}

.message-form .form-status {
  color: #d9ffe7;
}

.mini-team-section {
  margin: 0 auto 6rem;
  width: var(--container);
}

.mini-team-section > div {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-team-section article {
  text-align: center;
}

.mini-team-section img {
  aspect-ratio: 1;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.mini-team-section h3 {
  font-family: Crimson, Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  margin: 1rem 0 0.2rem;
}

.mini-team-section a {
  text-decoration: none;
}

.team-page,
.promotion-page,
.contact-page {
  background: #fff;
  color: var(--ink);
}

.team-page-hero,
.promotion-hero,
.contact-hero {
  color: #fff;
  overflow: hidden;
  position: relative;
}

.team-page-hero::before,
.promotion-hero::before,
.contact-hero::before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.team-page-hero > *,
.promotion-hero > *,
.contact-hero > * {
  position: relative;
  z-index: 1;
}

.team-page-hero {
  align-items: end;
  background: #050505;
  display: grid;
  gap: clamp(1.6rem, 4vw, 4rem);
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.72fr);
  min-height: clamp(500px, 42vw, 650px);
  padding: clamp(9rem, 13vw, 12rem) max(1.5rem, calc((100vw - 1180px) / 2)) clamp(3rem, 5vw, 4.8rem);
}

.team-page-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.76) 48%, rgba(5, 5, 5, 0.42)),
    url("assets/images/management-bg.webp") center / cover no-repeat;
  opacity: 0.95;
}

.team-page-hero span,
.promotion-hero-copy span,
.contact-hero-copy span,
.team-method-copy span,
.promotion-showcase-copy span,
.promotion-flow span,
.contact-form > div span,
.contact-info-panel > div span {
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.team-page-hero h1,
.promotion-hero h1,
.contact-hero h1 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.88;
  margin: 0;
  max-width: 12ch;
}

.team-page-hero p,
.promotion-hero-copy p,
.contact-hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-width: 44ch;
}

.team-hero-context {
  display: grid;
  gap: 1.2rem;
}

.team-directory {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 2.7rem auto 3rem;
  position: relative;
  width: var(--container);
  z-index: 2;
}

.team-profile-card {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(8, 7, 8, 0.12);
  display: grid;
  justify-items: center;
  padding: clamp(1.2rem, 2vw, 1.8rem) 1rem clamp(1.25rem, 2vw, 1.7rem);
  text-align: center;
}

.team-profile-card figure {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.16);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(8, 7, 8, 0.1);
  margin: 0 0 1.2rem;
  max-width: 250px;
  overflow: hidden;
  padding: 0.42rem;
  width: min(100%, 15.5rem);
}

.team-profile-card img {
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.team-profile-card:nth-child(4) img {
  object-position: center 24%;
}

.team-profile-card h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-weight: 420;
  line-height: 0.95;
  margin: 0;
}

.team-method {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(280px, 0.6fr) minmax(320px, 1fr);
  margin: 0 auto 3rem;
  width: var(--container);
}

.team-method-copy h2,
.promotion-showcase-copy h2,
.promotion-flow h2,
.contact-form h2,
.contact-info-panel h2,
.contact-route h2,
.team-contact-strip h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 0.92;
  margin: 0;
}

.team-method-grid,
.contact-route {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-method-grid article,
.contact-route article,
.promotion-proof article {
  border: 1px solid rgba(8, 7, 8, 0.14);
  border-radius: 14px;
  padding: clamp(1.25rem, 2.4vw, 1.8rem);
}

.team-method-grid strong,
.promotion-proof strong,
.contact-route span {
  color: rgba(8, 7, 8, 0.42);
  display: block;
  font-family: Crimson, Georgia, serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.team-method-grid h3,
.promotion-proof h2,
.contact-route h2 {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.team-method-grid p,
.promotion-proof p,
.contact-route p,
.contact-info-panel p {
  color: rgba(8, 7, 8, 0.66);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.team-contact-strip {
  align-items: center;
  background: #050505;
  color: #fff;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto 3rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  width: var(--container);
}

.team-contact-strip a,
.promotion-hero-actions a,
.contact-form button {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
}

.promotion-hero {
  align-items: center;
  background: #050505;
  display: grid;
  grid-template-columns: minmax(320px, 1180px);
  justify-content: center;
  min-height: clamp(600px, 82svh, 760px);
  padding: clamp(7.4rem, 9vw, 9.5rem) max(1.25rem, calc((100vw - 1180px) / 2)) clamp(3rem, 5vw, 4.4rem);
}

.promotion-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.66) 48%, rgba(5, 5, 5, 0.4)),
    url("assets/images/promote-bg.webp") center / cover no-repeat;
}

.promotion-hero h1 {
  font-size: clamp(4rem, 5.9vw, 6.55rem);
  line-height: 0.9;
  margin-bottom: clamp(0.75rem, 1.4vw, 1.05rem);
  max-width: 14ch;
}

.promotion-hero-copy {
  max-width: min(650px, 100%);
}

.promotion-hero-copy span {
  margin-bottom: 0.7rem;
}

.promotion-hero-copy p {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.48;
  max-width: 44ch;
}

.promotion-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: clamp(1.15rem, 2.1vw, 1.75rem);
}

.promotion-hero-actions a {
  letter-spacing: 0.04em;
  min-height: 48px;
  padding: 0 1.05rem;
}

.promotion-hero-actions a + a {
  background: transparent;
  color: #fff;
}

.promotion-video-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  padding: 0.55rem;
}

.promotion-video-card iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  display: block;
  width: 100%;
}

.promotion-proof {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(2rem, 4vw, 3.2rem) auto 3rem;
  position: relative;
  width: var(--container);
  z-index: 2;
}

.promotion-proof article {
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 7, 8, 0.07);
}

.promotion-service-video {
  align-items: center;
  background: #050505;
  color: #fff;
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  margin: 0 auto 3rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  width: var(--container);
}

.promotion-service-copy {
  padding: clamp(0.4rem, 2vw, 1.6rem);
}

.promotion-service-copy span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.promotion-service-copy h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 0.92;
  margin: 0;
  max-width: 10ch;
}

.promotion-service-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.55;
  margin: 1rem 0 0;
  max-width: 48ch;
}

.promotion-service-player {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 0.55rem;
}

.promotion-service-player iframe,
.promotion-service-player .vimeo-lite {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  display: block;
  width: 100%;
}

.promotion-showcase {
  align-items: center;
  border: 1px solid rgba(8, 7, 8, 0.14);
  display: grid;
  gap: clamp(1.4rem, 3vw, 3rem);
  grid-template-columns: minmax(320px, 0.92fr) minmax(300px, 0.72fr);
  margin: 0 auto 3rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  width: var(--container);
}

.promotion-showcase-media img {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.promotion-showcase-copy {
  padding: clamp(0.4rem, 2vw, 1rem);
}

.promotion-showcase-copy ul {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.promotion-showcase-copy li {
  border-top: 1px solid rgba(8, 7, 8, 0.14);
  font-weight: 400;
  line-height: 1.5;
  padding-top: 0.8rem;
}

.promotion-flow {
  background: #050505;
  color: #fff;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 1fr);
  margin: 0 0 3rem;
  padding: clamp(2.7rem, 5vw, 4.6rem) max(1.5rem, calc((100vw - 1180px) / 2));
}

.promotion-flow ol {
  counter-reset: flow;
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.promotion-flow li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: clamp(1.15rem, 2.5vw, 1.7rem);
}

.promotion-flow strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.promotion-flow p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.promotion-message {
  margin-bottom: 3rem;
  margin-top: 0;
}

.contact-hero {
  align-items: end;
  background: #050505;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(320px, 0.92fr) minmax(300px, 0.52fr);
  min-height: clamp(500px, 40vw, 640px);
  padding: clamp(9rem, 13vw, 12rem) max(1.5rem, calc((100vw - 1180px) / 2)) clamp(3rem, 5vw, 4.6rem);
}

.contact-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.62) 50%, rgba(5, 5, 5, 0.28)),
    url("assets/images/footer-bg.webp") center / cover no-repeat;
}

.contact-quick-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  display: grid;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.contact-quick-card a {
  align-items: center;
  border: 1px solid rgba(8, 7, 8, 0.14);
  border-radius: 12px;
  display: flex;
  font-weight: 800;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0 0.9rem;
  text-decoration: none;
}

.contact-quick-card img {
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.3rem, 3vw, 3rem);
  grid-template-columns: minmax(320px, 0.82fr) minmax(300px, 0.58fr);
  margin: 3rem auto;
  width: var(--container);
}

.contact-form {
  border: 1px solid rgba(8, 7, 8, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(8, 7, 8, 0.1);
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  color: rgba(8, 7, 8, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #f6f6f4;
  border: 1px solid rgba(8, 7, 8, 0.12);
  border-radius: 10px;
  color: var(--ink);
  min-height: 54px;
  padding: 0.9rem 1rem;
  width: 100%;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  cursor: pointer;
}

.contact-info-panel {
  background: #050505;
  border-radius: 18px;
  color: #fff;
  display: grid;
  gap: 2rem;
  padding: clamp(1.45rem, 3vw, 2.3rem);
  position: sticky;
  top: 7.5rem;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1rem;
}

.contact-info-panel ul {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info-panel li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 0.3rem;
  padding-top: 1rem;
}

.contact-info-panel strong {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info-panel li span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  line-height: 1.5;
}

.contact-route {
  margin: 0 auto 3rem;
  width: var(--container);
}

.offplan-page {
  background: #fff;
  color: var(--ink);
}

.offplan-page-list {
  margin: clamp(2.3rem, 4vw, 3.5rem) auto 3.25rem;
  width: var(--container);
}

.offplan-page-list .offplan-heading {
  margin-bottom: 1.6rem;
}

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

.offplan-project-grid .developer-card {
  box-shadow: 0 16px 36px rgba(8, 7, 8, 0.13);
}

.offplan-project-grid .developer-card:hover {
  box-shadow: 0 22px 48px rgba(8, 7, 8, 0.18);
}

.offplan-project-grid .developer-body strong {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
}

.offplan-project-grid .developer-body p {
  min-height: 3.8rem;
}

.offplan-project-grid .developer-body ul {
  font-size: 1.04rem;
}

.offplan-page-hero {
  align-items: end;
  background: #050505;
  color: #fff;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(320px, 0.92fr) minmax(280px, 0.48fr);
  min-height: clamp(520px, 42vw, 680px);
  overflow: hidden;
  padding: clamp(9rem, 13vw, 12rem) max(1.5rem, calc((100vw - 1180px) / 2)) clamp(3rem, 5vw, 4.6rem);
  position: relative;
}

.offplan-page-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.62) 52%, rgba(5, 5, 5, 0.22)),
    url("assets/images/zuba-project.jpg") center 42% / cover no-repeat;
  content: "";
  inset: 0;
  opacity: 0.95;
  position: absolute;
}

.offplan-page-hero > * {
  position: relative;
  z-index: 1;
}

.offplan-page-copy span,
.developer-directory-head span,
.offplan-diligence span {
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.offplan-page-copy h1 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.88;
  margin: 0;
  max-width: 12ch;
}

.offplan-page-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.58;
  margin: 1.25rem 0 0;
  max-width: 58ch;
}

.offplan-hero-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.offplan-hero-panel strong {
  display: block;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.78;
}

.offplan-hero-panel span {
  display: block;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-top: 1rem;
  text-transform: uppercase;
}

.offplan-hero-panel p {
  color: rgba(8, 7, 8, 0.64);
  font-weight: 300;
  line-height: 1.5;
  margin: 0.8rem 0 0;
}

.offplan-featured {
  display: grid;
  gap: clamp(1rem, 2vw, 1.3rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -2.8rem auto 3rem;
  position: relative;
  width: var(--container);
  z-index: 2;
}

.offplan-featured article {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(8, 7, 8, 0.12);
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.15rem, 2vw, 1.5rem);
}

.offplan-featured .developer-logo {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.16);
  border-radius: 12px;
  display: inline-flex;
  height: 54px;
  left: auto;
  padding: 0.45rem 0.6rem;
  position: static;
  top: auto;
  width: 116px;
}

.offplan-featured .developer-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.offplan-featured h2,
.developer-directory-grid h3 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  font-weight: 420;
  line-height: 0.95;
  margin: 0;
}

.offplan-featured p,
.developer-directory-grid p {
  color: rgba(8, 7, 8, 0.66);
  font-weight: 300;
  line-height: 1.48;
  margin: 0;
}

.offplan-featured small,
.developer-directory-grid small {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.developer-directory {
  margin: 0 auto 3rem;
  width: var(--container);
}

.developer-directory-head {
  align-items: end;
  display: grid;
  gap: clamp(1.2rem, 3vw, 3rem);
  grid-template-columns: minmax(320px, 0.72fr) minmax(300px, 0.58fr);
  margin-bottom: 1.4rem;
}

.developer-directory-head h2,
.offplan-diligence h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  font-weight: 300;
  line-height: 0.9;
  margin: 0;
}

.developer-directory-head p {
  color: rgba(8, 7, 8, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.developer-directory-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.developer-directory-grid article {
  background: #fff;
  border: 1px solid rgba(8, 7, 8, 0.12);
  border-radius: 14px;
  display: grid;
  gap: 0.75rem;
  min-height: 250px;
  padding: 1rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.developer-directory-grid article:hover {
  box-shadow: 0 18px 42px rgba(8, 7, 8, 0.12);
  transform: translateY(-2px);
}

.developer-directory-grid i {
  align-items: center;
  background: #050505;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 46px;
}

.developer-directory-grid h3 {
  font-size: clamp(1.55rem, 1.7vw, 2.05rem);
}

.developer-directory-grid p {
  font-size: 0.9rem;
}

.developer-directory-grid small {
  align-self: end;
}

.offplan-diligence {
  background: #050505;
  color: #fff;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(300px, 0.64fr) minmax(340px, 1fr);
  margin: 0 0 3rem;
  padding: clamp(2.7rem, 5vw, 4.6rem) max(1.5rem, calc((100vw - 1180px) / 2));
}

.offplan-diligence-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offplan-diligence-list article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
}

.offplan-diligence-list strong {
  display: block;
  font-family: Crimson, Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.offplan-diligence-list p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

.offplan-cta {
  margin-bottom: 3rem;
}

.offplan-invest-cta {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(8, 7, 8, 0.18);
  border-top: 1px solid rgba(8, 7, 8, 0.18);
  color: var(--ink);
  display: grid;
  gap: clamp(1.4rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  margin: clamp(2rem, 4vw, 3.5rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: visible;
  padding: clamp(1.65rem, 3.6vw, 3.15rem) 0;
}

@media (max-width: 900px) {
  .offplan-invest-cta {
    grid-template-columns: 1fr;
    margin-bottom: clamp(3.2rem, 10vw, 4.6rem);
    padding: clamp(1.35rem, 6vw, 2rem) 0;
  }

  .offplan-invest-actions {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .offplan-invest-actions a {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    min-height: 54px;
    padding-inline: 0.85rem;
  }

  .offplan-whatsapp-link img {
    height: 21px;
    width: 21px;
  }
}

.offplan-invest-copy span {
  color: rgba(8, 7, 8, 0.52);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.offplan-invest-copy h2 {
  font-family: Crimson, Georgia, serif;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  font-weight: 300;
  line-height: 0.92;
  margin: 0;
  max-width: 11ch;
}

.offplan-invest-copy p {
  color: rgba(8, 7, 8, 0.66);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 300;
  line-height: 1.55;
  margin: 1rem 0 0;
  max-width: 58ch;
}

.offplan-invest-actions {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.offplan-invest-actions a {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 54px;
  padding: 0.9rem 1rem;
  text-align: center;
  text-decoration: none;
}

.offplan-email-link {
  background: #f4f4f1;
  border: 1px solid rgba(8, 7, 8, 0.14);
  color: var(--ink);
}

.offplan-whatsapp-link {
  border: 1px solid #25d366;
  background: #25d366;
  color: #fff;
}

.offplan-whatsapp-link img {
  height: 24px;
  margin-right: 0.55rem;
  width: 24px;
}

@media (min-width: 1181px) and (max-width: 1536px) {
  :root {
    --container: min(1220px, calc(100vw - 2.5rem));
  }

  .site-header {
    gap: clamp(0.9rem, 1.9vw, 2.15rem);
    min-height: 104px;
    padding: 0.78rem clamp(1.2rem, 2.3vw, 2.15rem);
  }

  .site-header.is-sticky {
    min-height: 84px;
    padding-bottom: 0.52rem;
    padding-top: 0.52rem;
  }

  .brand img {
    height: 82px;
  }

  .site-header.is-sticky .brand img {
    height: 64px;
  }

  .main-nav {
    gap: clamp(0.72rem, 1.12vw, 1.35rem);
  }

  .main-nav a {
    font-size: clamp(0.72rem, 0.78vw, 0.88rem);
    letter-spacing: 0.11em;
  }

  .hero {
    height: 94svh;
    min-height: 680px;
  }

  .hero::after {
    height: 34px;
  }

  .hero-search-panel {
    transform: translateY(12px);
    width: min(1040px, calc(100vw - 4.5rem));
  }

  .sale-page-search.hero-search-panel {
    transform: translate(-50%, 50%);
    width: min(1040px, calc(100vw - 4.5rem));
  }

  .hero-search-panel h1 {
    font-size: clamp(2.2rem, 3.25vw, 3.6rem);
    margin-bottom: 1.12rem;
  }

  .hero-search-bar {
    border-radius: 14px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
    gap: 0.46rem;
    grid-template-columns: repeat(4, minmax(136px, 1fr)) minmax(148px, 0.72fr);
    min-height: 80px;
    padding: 0.46rem;
  }

  .search-field {
    border-radius: 10px;
    padding: 0.68rem 0.9rem 0.62rem;
  }

  .search-field::after {
    height: 7px;
    right: 0.85rem;
    width: 7px;
  }

  .search-field span {
    font-size: 0.61rem;
    letter-spacing: 0.13em;
    margin-bottom: 0.38rem;
  }

  .search-field select {
    font-size: 0.98rem;
    padding-right: 1.75rem;
  }

  .hero-search-submit {
    border-radius: 10px;
    font-size: 1.04rem;
    padding: 0 1rem;
  }

  .popular-searches {
    gap: 0.55rem 0.7rem;
    margin-top: 0.75rem;
  }

  .popular-searches > span {
    font-size: 0.76rem;
    letter-spacing: 0.15em;
  }

  .popular-searches a {
    font-size: 0.76rem;
    gap: 0.55rem;
    letter-spacing: 0.13em;
    min-height: 38px;
    padding: 0 0.85rem;
  }

  .popular-searches i {
    height: 12px;
    width: 12px;
  }

  .offplan-section {
    margin-bottom: 3.1rem;
    margin-top: 2rem;
  }

  .offplan-heading {
    margin-bottom: 1.55rem;
  }

  .section-pill {
    font-size: 0.74rem;
    padding: 0.6rem 0.95rem;
  }

  .offplan-heading small,
  .developer-body small,
  .developer-body em,
  .developer-list-card small {
    font-size: 0.66rem;
  }

  .offplan-heading h2 {
    font-size: clamp(2.75rem, 4.35vw, 4.25rem);
  }

  .developer-grid {
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(170px, 215px);
  }

  .developer-card {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  }

  .developer-logo {
    height: 46px;
    left: 0.75rem;
    padding: 0.34rem 0.48rem;
    top: 0.75rem;
    width: 94px;
  }

  .wordmark-logo {
    font-size: 0.9rem;
  }

  .developer-body {
    padding: 0.95rem 0.98rem 1.1rem;
  }

  .developer-body strong {
    font-size: clamp(1.72rem, 2.5vw, 2.08rem);
  }

  .developer-body p {
    font-size: 0.8rem;
    line-height: 1.35;
    margin-bottom: 0.85rem;
  }

  .developer-body em {
    margin-bottom: 0.32rem;
  }

  .developer-body ul {
    font-size: 1.04rem;
    margin-bottom: 1rem;
  }

  .portfolio-link {
    font-size: 0.69rem;
  }

  .developer-list-card {
    padding: 1.3rem 0.9rem;
  }

  .developer-list-card span {
    font-size: 1.05rem;
    height: 54px;
    margin-bottom: 1.3rem;
    width: 54px;
  }

  .developer-list-card strong {
    font-size: 1.4rem;
  }

  .sale-carousel {
    margin-bottom: 3.1rem;
  }

  .sale-carousel-head {
    margin-bottom: 1.2rem;
  }

  .sale-carousel-head h2 {
    font-size: clamp(2.55rem, 4.15vw, 4rem);
  }

  .sale-heading-copy p {
    max-width: 48ch;
  }

  .section-view-link,
  .sale-view-link {
    font-size: 0.72rem;
  }

  .sale-scroll-track {
    animation-duration: 28s;
    gap: 0.9rem;
    grid-auto-columns: clamp(260px, 27vw, 360px);
  }

  .sale-arrow {
    height: 60px;
    width: 40px;
  }

  .sale-arrow span {
    height: 10px;
    width: 10px;
  }

  .sale-scroll-card > a > div {
    gap: 0.45rem;
    padding: 0.85rem 0.9rem 1rem;
  }

  .sale-scroll-card span {
    font-size: 0.66rem;
  }

  .sale-scroll-card strong {
    font-size: clamp(1.38rem, 1.9vw, 1.78rem);
  }

  .invest-callout {
    margin-bottom: 3.1rem;
    padding-bottom: 3.65rem;
    padding-top: 3.65rem;
  }

  .invest-callout-inner {
    gap: clamp(2rem, 4vw, 4rem);
    grid-template-columns: minmax(340px, 0.92fr) minmax(340px, 0.78fr);
    width: min(1080px, calc(100vw - 3rem));
  }

  .invest-copy h2 {
    font-size: clamp(3.05rem, 5.35vw, 5rem);
  }

  .invest-board article {
    padding: 1.45rem;
  }
}

@media (min-width: 1181px) and (max-height: 850px) {
  .hero {
    height: 92svh;
    min-height: 630px;
  }

  .hero-search-panel {
    transform: translateY(22px);
  }

  .sale-page-search.hero-search-panel {
    transform: translate(-50%, 50%);
  }

  .hero-search-panel h1 {
    font-size: clamp(2rem, 2.8vw, 3rem);
    margin-bottom: 0.95rem;
  }
}

@media (max-width: 1220px) {
  .hero {
    min-height: 830px;
  }

  .search-panel {
    margin-top: -4rem;
    width: min(720px, calc(100vw - 2rem));
  }

  .hero-search-panel {
    margin-left: auto;
    margin-right: auto;
    width: min(880px, calc(100vw - 2rem));
  }

  .hero-search-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .search-field {
    border-bottom: 1px solid rgba(8, 7, 8, 0.13);
    min-height: 66px;
  }

  .search-field:nth-of-type(2n) {
    border-right: 0;
  }

  .hero-search-submit {
    grid-column: 1 / -1;
    min-height: 66px;
  }

  .sale-page-search {
    width: min(880px, calc(100vw - 2rem));
  }

  .sale-listings-section {
    padding-top: 7.5rem;
  }

  .filters {
    align-items: stretch;
    background: transparent;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
  }

  .filters label {
    background-color: rgba(0, 0, 0, 0.52);
    border-radius: 7px;
    padding: 1rem 1rem 0.8rem 1.5rem;
  }

  .search-button {
    align-self: start;
    background: rgba(0, 0, 0, 0.52);
    margin-left: 4px;
    outline: 4px solid rgba(0, 0, 0, 0.52);
  }

  .listing-section {
    display: block;
  }

  .section-heading {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .category-row {
    justify-content: flex-start;
    margin-bottom: 2rem;
  }

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

  .sale-listings-head {
    align-items: start;
    flex-direction: column;
  }

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

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filters-aside {
    position: static;
  }

  .media-services,
  .why-section > div {
    grid-template-columns: 1fr;
  }

  .media-card.wide {
    grid-column: auto;
  }

  .offplan-heading,
  .sale-carousel-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .developer-list-card {
    grid-column: 1 / 3;
    min-height: 260px;
  }

  .sale-carousel-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .section-view-link,
  .sale-view-link,
  .sale-carousel-head .button {
    justify-self: start;
  }

  .sale-carousel-actions {
    justify-content: flex-start;
    justify-self: start;
  }

  .sale-scroll-track {
    grid-auto-columns: minmax(280px, 46vw);
  }

  .promote-video-section {
    grid-template-columns: 1fr;
  }

  .promote-video-copy {
    max-width: 660px;
  }

  .promote-video-copy h2 {
    font-size: clamp(3rem, 8vw, 5.2rem);
  }

  .invest-callout {
    margin-bottom: 3rem;
  }

  .invest-callout-inner {
    grid-template-columns: 1fr;
    width: var(--container);
  }

  .invest-copy {
    justify-self: start;
    max-width: 720px;
  }

  .invest-copy h2 {
    max-width: 13ch;
  }

  .invest-board {
    max-width: 760px;
  }

  .worker-board {
    grid-template-columns: 1fr minmax(230px, 310px) minmax(230px, 310px) 1fr;
  }

  .worker-card:nth-child(odd) {
    grid-column: 2;
  }

  .worker-card:nth-child(even) {
    grid-column: 3;
  }

  .service-card.overlay-card {
    justify-self: center;
    max-width: min(620px, 90vw);
    min-height: unset;
  }

  .mini-card-row {
    align-items: center;
    flex-direction: column;
  }

  .about-section {
    align-items: center;
    flex-direction: column;
    margin-bottom: 4.2rem;
  }

  .secondary-panel {
    max-width: 760px;
  }

  .video-card {
    margin: 2rem 0 0;
  }

  .article-grid {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .reviews-section {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-section h2 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .shifted-left,
  .shifted-right {
    transform: none;
  }

  .team-circle-grid {
    gap: clamp(1rem, 2vw, 2rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.8fr);
  }

  .footer-social {
    justify-items: start;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 0.75rem;
    min-height: 84px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .brand {
    flex-basis: auto;
    padding: 0;
  }

  .brand img {
    height: 64px;
    max-height: none;
    width: auto;
  }

  .site-header.is-sticky .brand img {
    height: 56px;
    max-height: none;
  }

  .language-current {
    font-size: 0.68rem;
    gap: 0.32rem;
    min-height: 34px;
    min-width: 74px;
    padding: 0.24rem 0.5rem;
  }

  .language-label {
    display: none;
  }

  .language-code {
    display: inline;
  }

  .language-current img,
  .language-menu a img {
    height: 16px;
    width: 24px;
  }

  .language-menu {
    min-width: 154px;
    right: -0.25rem;
  }

  .hero {
    min-height: 780px;
  }

  .search-panel {
    margin-top: -4rem;
  }

  .hero-search-panel {
    margin-left: auto;
    margin-right: auto;
  }

  .search-panel h1,
  .hero-search-panel h1 {
    font-size: 1.55rem;
    text-align: left;
  }

  .hero-search-bar {
    grid-template-columns: 1fr;
  }

  .search-field,
  .search-field:nth-of-type(2n) {
    border-right: 0;
  }

  .search-field select {
    font-size: 1rem;
    padding-left: 1.15rem;
  }

  .popular-searches {
    align-items: stretch;
    justify-content: flex-start;
  }

  .popular-searches > span {
    flex-basis: 100%;
  }

  .popular-searches a {
    flex: 1 1 160px;
    justify-content: center;
  }

  .filters {
    gap: 0.85rem;
  }

  .filters label {
    padding: 0.75rem 1rem 0.65rem 1.35rem;
  }

  .filters label span {
    font-size: 1.15rem;
  }

  .filters select {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
    max-width: 100%;
  }

  .search-button {
    padding-bottom: 0.7rem;
    padding-top: 0.7rem;
  }

  .section-heading {
    flex-direction: column;
    padding: 2.4rem;
  }

  .section-heading h2 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .catalog-hero,
  .service-hero {
    min-height: 560px;
    padding: 7.5rem 1rem 6rem;
  }

  .sale-page-hero {
    min-height: 560px;
    padding: 7.5rem 1rem 2.8rem;
  }

  .sale-page-hero-copy h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .sale-page-search {
    bottom: auto;
    left: auto;
    margin: 1.35rem auto 0;
    position: relative;
    transform: none;
    width: 100%;
  }

  .sale-listings-section {
    padding-top: 2.5rem;
  }

  .sale-listings-head,
  .sale-card-grid {
    width: min(100% - 2rem, 640px);
  }

  .sale-listing-controls {
    flex-direction: column;
    width: 100%;
  }

  .sale-select-pill {
    width: 100%;
  }

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

  .catalog-hero-copy h1,
  .service-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .catalog-arrows {
    display: none;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-intro,
  .exposure-section,
  .pricing-section,
  .message-section {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
    margin-top: 4rem;
  }

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

  .result-media {
    min-height: 260px;
  }

  .result-actions,
  .pricing-table div {
    align-items: flex-start;
    flex-direction: column;
  }

  .tour-callout {
    grid-template-columns: 1fr;
  }

  .hero-tab {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .mini-team-section > div {
    grid-template-columns: 1fr;
  }

  .offplan-section {
    margin-bottom: 2.65rem;
    margin-top: 1.85rem;
  }

  .offplan-heading {
    margin-bottom: 1.5rem;
  }

  .offplan-heading h2 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

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

  .developer-list-card {
    grid-column: auto;
  }

  .sale-carousel {
    margin-bottom: 2.65rem;
  }

  .sale-carousel-head h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .section-heading-copy p,
  .sale-heading-copy p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .section-view-link,
  .sale-view-link {
    width: 100%;
  }

  .sale-scroll-track {
    grid-auto-columns: minmax(265px, 82vw);
  }

  .sale-carousel-frame {
    margin: -1rem -1.35rem -1rem;
    padding: 0 1.35rem;
  }

  .sale-carousel-frame .sale-arrow {
    height: 52px;
    top: 48%;
    width: 36px;
  }

  .sale-arrow span {
    height: 9px;
    width: 9px;
  }

  .sale-arrow-prev {
    left: 0.15rem;
  }

  .sale-arrow-next {
    right: 0.15rem;
  }

  .sale-scroll-viewport {
    margin-left: 0;
    margin-right: 0;
    overflow-x: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .sale-carousel-actions {
    align-items: stretch;
    width: 100%;
  }

  .sale-carousel-actions .button {
    flex: 1 1 220px;
  }

  .sale-scroll-track {
    animation: none;
  }

  .sale-scroll-track-copy {
    display: none;
  }

  .promote-video-section {
    margin-bottom: 2.65rem;
  }

  .promote-video-copy h2 {
    font-size: clamp(2.85rem, 13vw, 4.4rem);
  }

  .promote-video-copy p {
    font-size: clamp(0.98rem, 4.2vw, 1.16rem);
    line-height: 1.44;
  }

  .promote-service-button {
    min-height: 56px;
    width: 100%;
  }

  .invest-callout {
    margin-bottom: 2.65rem;
    padding: 2.65rem 0;
  }

  .invest-callout::after {
    inset: 0.7rem;
  }

  .invest-copy h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .invest-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .invest-primary,
  .invest-secondary {
    width: 100%;
  }

  .invest-board article {
    gap: 0.5rem;
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .invest-board span {
    grid-row: auto;
  }

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

  .management-section {
    grid-template-columns: 1rem 1fr 1rem;
  }

  .worker-board {
    min-height: 420px;
  }

  .worker-card {
    display: none;
  }

  .service-card.overlay-card {
    grid-column: 2;
  }

  .investment-banner {
    min-height: 390px;
    width: 100%;
  }

  .investment-banner h2 {
    padding: 2.5rem;
  }

  .mini-card-row {
    margin-top: -5rem;
  }

  .journey-copy {
    align-self: start;
    margin-left: 0;
    margin-right: 0;
  }

  .secondary-panel {
    max-width: 100%;
    padding: 2.2rem;
  }

  .video-card strong {
    font-size: 1.4rem;
  }

  .insights-panel {
    max-width: calc(100vw - 2rem);
    padding: 1.5rem;
  }

  .button-row .button {
    width: 100%;
  }

  .reviews-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .reviews-section h2 {
    display: grid;
    grid-template-columns: auto auto;
  }

  .reviews-section h2 span:first-child {
    grid-column: 1 / 3;
  }

  .review-score {
    justify-self: stretch;
    max-width: none;
  }

  .team-circle-shell {
    width: min(100% - 2rem, 560px);
  }

  .team-circle-heading h2 {
    font-size: clamp(3.4rem, 14vw, 5.8rem);
  }

  .team-circle-grid {
    gap: 2.4rem;
    grid-template-columns: 1fr;
  }

  .team-circle-card:nth-child(even) {
    margin-top: 0;
  }

  .team-circle-photo {
    width: min(17.5rem, 78vw);
  }

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

  .footer-logo-col,
  .footer-listings,
  .footer-contact,
  .footer-social {
    justify-items: start;
    justify-content: start;
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp {
    border-radius: 999px;
    height: 49px;
    right: 1rem;
    width: 49px;
  }

  .whatsapp span {
    display: none;
  }
}

@media (max-width: 430px) {
  .property-info {
    grid-template-columns: 1fr;
  }

  .property-info em {
    grid-column: 1;
    grid-row: auto;
    justify-content: start;
  }

  .team-circle-photo {
    width: min(15.5rem, 76vw);
  }
}

@media (max-width: 1220px) {
  .team-page-hero,
  .promotion-hero,
  .contact-hero,
  .offplan-page-hero,
  .team-method,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .contact-layout,
  .developer-directory-head,
  .offplan-diligence {
    grid-template-columns: 1fr;
  }

  .team-page-hero,
  .contact-hero,
  .offplan-page-hero {
    min-height: 560px;
  }

  .team-directory,
  .promotion-proof,
  .offplan-featured,
  .team-method-grid,
  .contact-route,
  .offplan-diligence-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .promotion-video-card,
  .contact-quick-card,
  .offplan-hero-panel {
    max-width: 760px;
  }

  .contact-info-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .team-page-hero,
  .promotion-hero,
  .contact-hero,
  .offplan-page-hero {
    min-height: auto;
    padding: 7.2rem 1rem 2.6rem;
  }

  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1,
  .offplan-page-copy h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
    line-height: 0.92;
  }

  .promotion-hero {
    min-height: auto;
    padding-bottom: 2.9rem;
    padding-top: 7.6rem;
  }

  .promotion-hero-copy p {
    line-height: 1.45;
  }

  .promotion-service-video {
    margin-bottom: 2.5rem;
    padding: 1rem;
    width: min(100% - 2rem, 640px);
  }

  .promotion-service-copy {
    padding: 0.5rem 0.35rem 0.2rem;
  }

  .promotion-service-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .team-directory {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
    margin-top: 2.2rem;
    width: min(100% - 2rem, 520px);
  }

  .team-method,
  .promotion-showcase,
  .contact-layout,
  .contact-route,
  .team-contact-strip,
  .developer-directory,
  .offplan-diligence {
    margin-bottom: 2.5rem;
    margin-top: 0;
    width: min(100% - 2rem, 640px);
  }

  .team-method-grid,
  .promotion-proof,
  .contact-route,
  .offplan-featured,
  .developer-directory-head,
  .developer-directory-grid,
  .offplan-diligence-list {
    grid-template-columns: 1fr;
  }

  .team-contact-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .team-contact-strip a,
  .promotion-hero-actions a {
    width: 100%;
  }

  .promotion-proof {
    margin-bottom: 2.5rem;
    margin-top: 2rem;
    width: min(100% - 2rem, 640px);
  }

  .offplan-featured {
    margin-bottom: 2.5rem;
    margin-top: -1.4rem;
    width: min(100% - 2rem, 640px);
  }

  .promotion-flow {
    margin-bottom: 2.5rem;
    padding: 2.5rem 1rem;
  }

  .offplan-diligence {
    padding: 2.5rem 1rem;
    width: 100%;
  }

  .promotion-message {
    margin-bottom: 2.5rem;
  }

  .contact-form,
  .contact-info-panel {
    border-radius: 14px;
  }
}

@media (min-width: 1181px) and (max-width: 1536px) {
  .offplan-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1220px) {
  .offplan-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .offplan-page-list {
    margin-bottom: 2.6rem;
    margin-top: 2.2rem;
    width: min(100% - 2rem, 640px);
  }

  .offplan-project-grid {
    grid-template-columns: 1fr;
  }

  .offplan-project-grid .developer-body p {
    min-height: 0;
  }
}

/* Final responsive polish: tablets and phones */
@media (max-width: 1024px) {
  :root {
    --container: min(100% - 2rem, 900px);
  }

  body {
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  select,
  input,
  textarea,
  strong,
  span {
    overflow-wrap: anywhere;
  }

  .site-header {
    min-height: 88px;
    padding: 0.65rem 1rem;
  }

  .site-header.is-sticky {
    min-height: 76px;
  }

  .brand img {
    height: 68px;
  }

  .site-header.is-sticky .brand img {
    height: 58px;
  }

  .main-nav {
    gap: 1.2rem;
    overflow-y: auto;
    padding: 7rem 1.2rem 3rem;
  }

  .main-nav a {
    font-size: clamp(1.35rem, 4.6vw, 2.5rem);
    line-height: 1.08;
    text-align: center;
    white-space: normal;
  }

  .hero {
    height: auto;
    min-height: 760px;
    padding: 7.4rem 1rem 4.5rem;
  }

  .hero-search-panel {
    width: min(100%, 820px);
  }

  .hero-search-panel h1 {
    font-size: clamp(2.25rem, 7vw, 4.2rem);
    line-height: 0.98;
  }

  .hero-search-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .sale-page-hero {
    min-height: 650px;
    padding: 8rem 1rem 4.5rem;
  }

  .sale-page-hero-copy {
    max-width: min(100%, 760px);
  }

  .sale-page-hero-copy h1 {
    font-size: clamp(3.4rem, 9vw, 6.2rem);
    max-width: 11ch;
  }

  .sale-page-search {
    width: min(100% - 2rem, 820px);
  }

  .sale-listings-section {
    padding-top: 7.8rem;
  }

  .sale-listings-head,
  .sale-card-grid,
  .listing-pagination {
    width: min(100% - 2rem, 920px);
  }

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

  .listing-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-card-bottom .whatsapp-action {
    width: 100%;
  }

  .offplan-heading,
  .sale-carousel-head,
  .developer-directory-head,
  .sale-listings-head {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .sale-listings-head {
    flex-direction: column;
  }

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

  .developer-list-card {
    grid-column: 1 / -1;
  }

  .invest-callout-inner,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .team-method,
  .contact-layout,
  .offplan-diligence {
    grid-template-columns: 1fr;
  }

  .promotion-service-player,
  .promotion-showcase-media,
  .contact-quick-card,
  .offplan-hero-panel {
    max-width: 760px;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100% - 1.25rem, 560px);
  }

  .site-header {
    min-height: 72px;
    padding: 0.45rem 0.75rem;
  }

  .site-header.is-sticky {
    min-height: 68px;
  }

  .brand img {
    height: 54px;
  }

  .site-header.is-sticky .brand img {
    height: 48px;
  }

  .menu-toggle {
    width: 36px;
  }

  .main-nav {
    align-items: center;
    padding: 6rem 1.1rem 2.5rem;
  }

  .main-nav a {
    font-size: clamp(1.22rem, 7vw, 2rem);
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: auto;
    padding: 6.4rem 0.75rem 3rem;
  }

  .hero::after {
    height: 20px;
  }

  .hero-search-panel h1 {
    font-size: clamp(2rem, 11vw, 3.45rem);
    line-height: 0.98;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-search-bar {
    border-radius: 14px;
    gap: 0.45rem;
    grid-template-columns: 1fr;
    padding: 0.45rem;
  }

  .search-field {
    min-height: 58px;
    padding: 0.65rem 0.85rem;
  }

  .search-field span {
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }

  .search-field select {
    font-size: 0.98rem;
    padding-left: 0;
  }

  .hero-search-submit {
    min-height: 58px;
    width: 100%;
  }

  .popular-searches {
    align-items: stretch;
    gap: 0.55rem;
    justify-content: center;
    margin-top: 0.85rem;
  }

  .popular-searches > span {
    flex-basis: 100%;
    text-align: center;
  }

  .popular-searches a {
    flex: 1 1 46%;
    min-height: 42px;
    padding: 0 0.65rem;
  }

  .offplan-section,
  .sale-carousel,
  .invest-callout,
  .promote-video-section,
  .team-section,
  .developer-directory,
  .offplan-page-list {
    margin-bottom: 2.35rem;
    margin-top: 2rem;
  }

  .offplan-heading h2,
  .sale-carousel-head h2,
  .invest-copy h2,
  .promotion-service-copy h2,
  .promotion-showcase-copy h2,
  .promotion-flow h2,
  .developer-directory-head h2,
  .offplan-diligence h2,
  .team-method-copy h2,
  .contact-form h2,
  .contact-info-panel h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
    line-height: 0.94;
  }

  .developer-grid,
  .offplan-project-grid,
  .developer-directory-grid,
  .promotion-proof,
  .team-method-grid,
  .contact-route,
  .offplan-featured,
  .offplan-diligence-list,
  .sale-card-grid,
  .property-grid,
  .mini-team-section > div {
    grid-template-columns: 1fr;
  }

  .developer-card figure {
    aspect-ratio: 16 / 11;
  }

  .developer-body,
  .sale-grid-body {
    padding: 1rem;
  }

  .developer-body p,
  .offplan-project-grid .developer-body p {
    min-height: 0;
  }

  .sale-scroll-track {
    grid-auto-columns: minmax(250px, 84vw);
  }

  .sale-carousel-frame {
    margin-inline: -0.75rem;
    padding-inline: 0.75rem;
  }

  .sale-arrow {
    border-radius: 999px;
    height: 44px;
    width: 34px;
  }

  .invest-callout {
    padding: 2.4rem 0;
  }

  .invest-callout-inner {
    gap: 1.25rem;
  }

  .invest-board article,
  .promotion-proof article,
  .team-method-grid article,
  .contact-route article,
  .offplan-diligence-list article {
    border-radius: 12px;
    padding: 1rem;
  }

  .sale-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero,
  .offplan-page-hero {
    min-height: auto;
    padding: 6.6rem 0.8rem 2.6rem;
  }

  .sale-page-hero-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1,
  .offplan-page-copy h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.92;
    max-width: 10.5ch;
  }

  .sale-page-hero-copy p,
  .team-page-hero p,
  .promotion-hero-copy p,
  .contact-hero-copy p,
  .offplan-page-copy p {
    font-size: 0.98rem;
    line-height: 1.48;
    max-width: 38ch;
  }

  .sale-page-search {
    bottom: auto;
    left: auto;
    margin: 1.2rem auto 0;
    position: relative;
    transform: none;
    width: 100%;
  }

  .sale-listings-section {
    padding-top: 2.4rem;
  }

  .sale-listings-head,
  .sale-card-grid,
  .listing-pagination {
    width: min(100% - 1.25rem, 560px);
  }

  .sale-listing-controls {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }

  .sale-select-pill {
    border: 1px solid rgba(8, 7, 8, 0.14);
    border-radius: 10px;
    min-height: 46px;
    padding: 0 0.9rem;
    width: 100%;
  }

  .sale-grid-media {
    aspect-ratio: 16 / 10.5;
  }

  .listing-card-bottom {
    gap: 0.85rem;
  }

  .sale-grid-meta {
    gap: 0.35rem;
  }

  .listing-pagination {
    flex-wrap: wrap;
  }

  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .team-method,
  .contact-layout,
  .contact-route,
  .team-contact-strip,
  .developer-directory,
  .offplan-diligence,
  .message-section {
    margin-bottom: 2.35rem;
    width: min(100% - 1.25rem, 560px);
  }

  .promotion-service-video,
  .promotion-flow,
  .offplan-diligence {
    padding: 1rem;
  }

  .promotion-showcase {
    padding: 0.75rem;
  }

  .promotion-service-player iframe {
    border-radius: 10px;
  }

  .team-directory {
    gap: 1.8rem;
    grid-template-columns: 1fr;
    width: min(100% - 1.25rem, 520px);
  }

  .team-profile-card {
    max-width: 220px;
  }

  .contact-form,
  .contact-info-panel {
    padding: 1.2rem;
  }

  .footer-shell {
    padding: 2.2rem 1rem 1rem;
  }

  .footer-main {
    gap: 1.65rem;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 1rem;
  }

  .footer-bottom address,
  .footer-legal-links {
    gap: 0.5rem 0.85rem;
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .hero-search-panel h1 {
    font-size: clamp(1.85rem, 12vw, 3rem);
  }

  .popular-searches a {
    flex-basis: 100%;
  }

  .sale-page-hero-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1,
  .offplan-page-copy h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .sale-grid-price {
    font-size: 1.22rem;
  }

  .footer-logo {
    max-width: 145px;
  }
}

/* Mobile and tablet hardening */
@media (max-width: 1280px) {
  .site-header {
    min-height: 86px;
    padding: 0.65rem clamp(0.9rem, 2vw, 1.4rem);
  }

  .brand img {
    height: clamp(58px, 7.4vw, 76px);
  }

  .site-header.is-sticky .brand img {
    height: clamp(52px, 6.2vw, 64px);
  }

  .main-nav {
    gap: clamp(1rem, 3vh, 1.7rem);
    overflow-y: auto;
    padding: 6.5rem 1.25rem 2.5rem;
  }

  .main-nav a {
    max-width: min(92vw, 760px);
    text-align: center;
    white-space: normal;
  }

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

  .hero,
  .sale-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero,
  .offplan-page-hero {
    min-height: min(760px, 100svh);
  }

  .hero-search-panel,
  .sale-page-search,
  .catalog-search-panel {
    width: min(100% - 2rem, 900px);
  }

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

  .hero-search-submit {
    grid-column: 1 / -1;
    min-height: 64px;
  }

  .popular-searches {
    max-width: min(100%, 820px);
    margin-left: auto;
    margin-right: auto;
  }

  .offplan-section,
  .sale-carousel,
  .team-section,
  .developer-directory,
  .offplan-page-list,
  .promotion-proof,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .message-section,
  .contact-layout,
  .contact-route,
  .team-method,
  .team-contact-strip {
    width: min(100% - 2rem, 920px);
  }

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

  .developer-card figure {
    min-height: 0;
  }

  .sale-carousel-frame {
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 940px);
  }

  .sale-scroll-viewport {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .sale-scroll-track {
    grid-auto-columns: clamp(280px, 42vw, 390px);
  }

  .property-detail-layout {
    width: min(100% - 2rem, 940px);
  }

  .property-detail-top-grid,
  .property-detail-lower-grid {
    grid-template-columns: 1fr;
  }

  .property-detail-contact,
  .property-request-card {
    position: static;
  }

  .property-main-video {
    aspect-ratio: 16 / 9;
  }

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

  .property-detail-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .property-detail-contact .detail-eyebrow,
  .property-detail-contact h1,
  .property-detail-contact .detail-location,
  .property-detail-contact .detail-side-price,
  .property-agent-card,
  .detail-contact-note {
    grid-column: 1 / -1;
  }

  .promotion-proof,
  .team-method-grid,
  .contact-route {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.8fr) minmax(210px, 0.9fr);
  }

  .footer-social {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .footer-social nav {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 1.5rem, 760px);
  }

  body {
    width: 100%;
  }

  .hero {
    height: auto;
    min-height: min(720px, 100svh);
    padding: 6.8rem 0.75rem 2.75rem;
  }

  .hero-media {
    background-position: center;
  }

  .hero::after {
    height: 18px;
  }

  .hero-search-panel {
    width: min(100%, 720px);
  }

  .hero-search-panel h1 {
    font-size: clamp(2.2rem, 8.6vw, 4.2rem);
    line-height: 0.96;
    margin-bottom: 1rem;
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-search-bar {
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    gap: 0.5rem;
    min-height: 0;
    padding: 0.5rem;
  }

  .search-field {
    min-height: 64px;
    padding: 0.7rem 0.9rem;
  }

  .search-field select {
    font-size: 1rem;
  }

  .popular-searches {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-searches > span {
    grid-column: 1 / -1;
    text-align: center;
  }

  .popular-searches a {
    border-radius: 8px;
    justify-content: center;
    min-width: 0;
    padding: 0 0.8rem;
    text-align: center;
  }

  .offplan-section,
  .sale-carousel,
  .invest-callout,
  .promote-video-section,
  .team-section {
    margin-top: 2.5rem;
    margin-bottom: 2.6rem;
  }

  .offplan-heading,
  .sale-carousel-head {
    gap: 0.95rem;
  }

  .section-title-box {
    border-radius: 8px;
    font-size: clamp(0.82rem, 2.4vw, 0.95rem);
    line-height: 1.1;
    padding: 0.48rem 0.74rem;
  }

  .section-heading-copy p,
  .sale-heading-copy p {
    font-size: 0.96rem;
    line-height: 1.5;
    max-width: 58ch;
  }

  .developer-card,
  .sale-grid-card,
  .team-profile-card,
  .contact-form,
  .contact-info-panel {
    border-radius: 14px;
  }

  .invest-callout-inner,
  .promote-video-section,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .team-method,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .invest-callout {
    padding: 2.8rem 0;
  }

  .invest-copy h2,
  .promote-video-copy h2,
  .promotion-service-copy h2,
  .promotion-showcase-copy h2,
  .promotion-flow h2,
  .team-method-copy h2,
  .contact-form h2,
  .contact-info-panel h2 {
    font-size: clamp(2.65rem, 9vw, 4.75rem);
    line-height: 0.92;
  }

  .invest-board {
    gap: 0.8rem;
  }

  .promote-video-section {
    padding: 2rem 1rem;
  }

  .promote-video-frame,
  .promotion-service-player {
    width: 100%;
  }

  .sale-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero,
  .offplan-page-hero {
    min-height: auto;
    padding: 6.7rem 1rem 2.3rem;
  }

  .sale-page-hero-copy,
  .promotion-hero-copy,
  .contact-hero-copy,
  .offplan-page-copy {
    max-width: min(100%, 620px);
  }

  .sale-page-hero-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1,
  .offplan-page-copy h1 {
    font-size: clamp(3rem, 12vw, 5.25rem);
    line-height: 0.9;
    max-width: 11ch;
  }

  .sale-page-hero-copy p,
  .team-page-hero p,
  .promotion-hero-copy p,
  .contact-hero-copy p,
  .offplan-page-copy p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .sale-page-search {
    bottom: auto;
    left: auto;
    margin-top: 1.2rem;
    position: relative;
    transform: none;
    width: 100%;
  }

  .sale-page-search .hero-search-bar {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  }

  .sale-listings-section {
    padding-top: 2.4rem;
  }

  .sale-listings-head {
    align-items: stretch;
    flex-direction: column;
    width: min(100% - 1.5rem, 760px);
  }

  .sale-listing-controls {
    justify-content: space-between;
    width: 100%;
  }

  .sale-card-grid {
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 1.5rem, 760px);
  }

  .listing-pagination {
    width: min(100% - 1.5rem, 760px);
  }

  .sale-grid-media {
    aspect-ratio: 16 / 10.5;
  }

  .sale-grid-body {
    gap: 0.6rem;
    padding: 1rem;
  }

  .listing-card-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .whatsapp-action {
    justify-content: center;
    width: 100%;
  }

  .team-page-hero,
  .contact-hero,
  .offplan-page-hero {
    grid-template-columns: 1fr;
  }

  .team-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .team-profile-card figure {
    width: min(100%, 12rem);
  }

  .team-contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-contact-strip a {
    width: 100%;
  }

  .contact-info-panel {
    position: static;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 1rem, 540px);
  }

  .site-header {
    min-height: 68px;
    padding: 0.45rem 0.7rem;
  }

  .site-header.is-sticky {
    min-height: 64px;
  }

  .brand img {
    height: 50px;
  }

  .site-header.is-sticky .brand img {
    height: 44px;
  }

  .menu-toggle {
    width: 34px;
  }

  .main-nav {
    padding: 5.75rem 1rem 2.25rem;
  }

  .main-nav a {
    font-size: clamp(1.15rem, 7vw, 1.85rem);
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 100svh;
    padding: 5.9rem 0.55rem 2rem;
  }

  .hero-media {
    background-image: url("assets/images/hero-mobile.jpg");
    background-position: center;
  }

  .hero-search-panel h1 {
    font-size: clamp(2.05rem, 11.5vw, 3.35rem);
  }

  .hero-search-bar {
    grid-template-columns: 1fr;
    padding: 0.42rem;
  }

  .search-field {
    min-height: 56px;
  }

  .hero-search-submit {
    min-height: 56px;
  }

  .popular-searches {
    grid-template-columns: 1fr 1fr;
  }

  .popular-searches a {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    min-height: 42px;
  }

  .property-detail-page {
    padding-top: 5.6rem;
  }

  .property-detail-layout {
    width: min(100% - 1rem, 540px);
  }

  .property-breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
  }

  .property-main-video {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .property-media-actions {
    right: 0.65rem;
    top: 0.65rem;
  }

  .property-media-actions span {
    font-size: 0.62rem;
    min-height: 34px;
    padding: 0 0.62rem;
  }

  .property-thumb-strip,
  .property-overview-grid,
  .property-details-list,
  .property-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-detail-card,
  .property-detail-contact,
  .property-detail-facts-card,
  .property-request-card {
    border-radius: 10px;
  }

  .property-detail-contact {
    display: block;
  }

  .property-detail-contact h1 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .property-agent-card img {
    height: 62px;
    width: 62px;
  }

  .offplan-section,
  .sale-carousel,
  .invest-callout,
  .promote-video-section,
  .team-section,
  .developer-directory,
  .offplan-page-list,
  .promotion-proof,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .message-section,
  .contact-layout,
  .contact-route,
  .team-method,
  .team-contact-strip {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: min(100% - 1rem, 540px);
  }

  .developer-grid,
  .offplan-project-grid,
  .developer-directory-grid,
  .promotion-proof,
  .team-method-grid,
  .contact-route,
  .invest-board,
  .offplan-featured,
  .offplan-diligence-list {
    grid-template-columns: 1fr;
  }

  .developer-list-card {
    min-height: 180px;
  }

  .sale-carousel-frame {
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
  }

  .sale-scroll-viewport {
    padding: 0.85rem 1rem 1.45rem;
  }

  .sale-scroll-track {
    gap: 0.75rem;
    grid-auto-columns: minmax(238px, 82vw);
  }

  .sale-arrow {
    height: 42px;
    width: 36px;
  }

  .sale-arrow-prev {
    left: 0.35rem;
  }

  .sale-arrow-next {
    right: 0.35rem;
  }

  .invest-callout {
    padding: 2.2rem 0;
  }

  .invest-callout-inner {
    padding-inline: 0.35rem;
  }

  .invest-actions,
  .promotion-hero-actions,
  .contact-pills {
    align-items: stretch;
    flex-direction: column;
  }

  .invest-primary,
  .invest-secondary,
  .promotion-hero-actions a,
  .contact-pills a,
  .promote-service-button {
    width: 100%;
  }

  .promote-video-section {
    padding: 1.6rem 0.75rem;
  }

  .promote-video-copy p {
    font-size: 1rem;
  }

  .sale-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero,
  .offplan-page-hero {
    padding: 5.7rem 0.75rem 1.65rem;
  }

  .sale-page-hero-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1,
  .offplan-page-copy h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .sale-page-search {
    margin-top: 1rem;
  }

  .sale-listings-section {
    padding-top: 1.8rem;
    padding-bottom: 2.5rem;
  }

  .sale-listings-head,
  .sale-card-grid,
  .listing-pagination {
    width: min(100% - 1rem, 540px);
  }

  .sale-listing-controls {
    align-items: stretch;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
  }

  .sale-listing-controls > span {
    align-self: center;
    justify-self: end;
  }

  .sale-select-pill {
    grid-column: 1 / -1;
    min-height: 46px;
    padding: 0.4rem 0.85rem;
    width: 100%;
  }

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

  .sale-grid-card:hover,
  .developer-card:hover,
  .sale-scroll-card:hover {
    transform: none;
  }

  .sale-grid-media {
    aspect-ratio: 16 / 10;
  }

  .listing-pagination a,
  .listing-pagination span {
    min-width: 42px;
  }

  .promotion-service-video,
  .promotion-flow,
  .offplan-diligence,
  .contact-form,
  .contact-info-panel,
  .message-form,
  .message-copy {
    padding: 1rem;
  }

  .promotion-showcase {
    padding: 0.75rem;
  }

  .promotion-showcase-media {
    order: -1;
  }

  .team-directory {
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 1rem, 540px);
  }

  .team-profile-card {
    padding: 0.85rem 0.65rem 1rem;
  }

  .team-profile-card figure {
    margin-bottom: 0.8rem;
    padding: 0.3rem;
    width: min(100%, 9.25rem);
  }

  .team-profile-card h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 1;
  }

  .team-contact-strip h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 50px;
    padding: 0.78rem 0.85rem;
  }

  .whatsapp {
    bottom: 0.75rem;
    min-width: 0;
    right: 0.75rem;
  }

  .whatsapp span {
    display: none;
  }

  .footer-shell {
    width: min(100% - 1rem, 540px);
  }

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

  .footer-logo {
    max-height: 118px;
    max-width: 118px;
  }

  .footer-social {
    justify-items: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .popular-searches {
    grid-template-columns: 1fr;
  }

  .hero-search-panel h1 {
    max-width: 11ch;
  }

  .section-heading-copy p,
  .sale-heading-copy p,
  .invest-copy p,
  .promotion-hero-copy p,
  .contact-hero-copy p,
  .offplan-page-copy p {
    font-size: 0.95rem;
  }

  .sale-scroll-track {
    grid-auto-columns: minmax(228px, 86vw);
  }

  .team-directory {
    grid-template-columns: 1fr;
  }

  .team-profile-card {
    justify-self: center;
    width: min(100%, 280px);
  }
}

@media (hover: none) {
  .sale-grid-card:hover,
  .developer-card:hover,
  .sale-scroll-card:hover,
  .property-card:hover,
  .team-circle-card:hover .team-circle-photo {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero .hero-search-panel {
    margin-top: 0;
  }
}

/* Native Houzez controls inside the custom property detail layout. */
.paraguay-houzez-tools {
  margin: -0.2rem 0 1rem;
}

.paraguay-houzez-tools .property-item-tools {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.paraguay-houzez-tools .item-tool {
  align-items: center;
  background: #f4f4f3;
  border: 1px solid #dededb;
  border-radius: 4px;
  color: #090909;
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.paraguay-houzez-tools .item-tool:hover,
.paraguay-houzez-tools .item-tool:focus-within {
  background: #090909;
  border-color: #090909;
  color: #fff;
}

.sale-grid-media {
  display: block;
}

.sale-grid-body h2 a {
  color: inherit;
  text-decoration: none;
}

/* Final responsive guardrails for tablets and phones. */
@media (max-width: 1280px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .site-header {
    min-height: 82px;
    padding: 0.62rem clamp(0.75rem, 2.4vw, 1.3rem);
  }

  .site-header.is-sticky {
    min-height: 74px;
  }

  .brand img {
    height: clamp(56px, 8vw, 72px);
  }

  .site-header.is-sticky .brand img {
    height: clamp(50px, 7vw, 62px);
  }

  .header-actions {
    gap: 0.55rem;
    min-width: 0;
  }

  .language-current {
    min-width: 108px;
    padding-inline: 0.58rem;
  }

  .main-nav {
    overflow-y: auto;
    padding: 6rem 1.2rem 2rem;
  }

  .main-nav a {
    max-width: min(92vw, 760px);
    text-align: center;
    white-space: normal;
  }

  .hero-search-panel,
  .sale-page-search,
  .catalog-search-panel,
  .sale-listings-head,
  .sale-card-grid,
  .listing-pagination,
  .offplan-section,
  .sale-carousel,
  .invest-callout-inner,
  .promote-video-section,
  .team-section,
  .developer-directory,
  .offplan-page-list,
  .promotion-proof,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .message-section,
  .contact-layout,
  .contact-route,
  .team-method,
  .team-contact-strip,
  .footer-shell,
  .property-detail-layout {
    width: min(100% - 2rem, 940px);
  }

  .property-detail-top-grid,
  .property-detail-lower-grid,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .contact-layout,
  .team-method,
  .offplan-diligence {
    grid-template-columns: 1fr;
  }

  .property-detail-contact,
  .property-request-card,
  .contact-info-panel {
    position: static;
  }

  .property-main-video {
    aspect-ratio: 16 / 9;
  }

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

  .offplan-project-grid,
  .developer-grid,
  .developer-directory-grid,
  .team-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero,
  .sale-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero,
  .offplan-page-hero {
    min-height: auto;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .hero {
    padding-bottom: 2rem;
    padding-top: 6.25rem;
  }

  .hero-search-panel,
  .sale-page-search,
  .catalog-search-panel,
  .sale-listings-head,
  .sale-card-grid,
  .listing-pagination,
  .offplan-section,
  .sale-carousel,
  .invest-callout-inner,
  .promote-video-section,
  .team-section,
  .developer-directory,
  .offplan-page-list,
  .promotion-proof,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .message-section,
  .contact-layout,
  .contact-route,
  .team-method,
  .team-contact-strip,
  .footer-shell,
  .property-detail-layout {
    width: min(100% - 1.25rem, 720px);
  }

  .hero-search-bar {
    border-radius: 14px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0.45rem;
  }

  .search-field,
  .hero-search-submit {
    min-height: 56px;
  }

  .search-field {
    padding: 0.72rem 0.85rem;
  }

  .search-field select {
    font-size: 0.98rem;
  }

  .sale-page-search {
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    position: relative;
    transform: none;
    width: min(100% - 1.25rem, 720px);
  }

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

  .sale-grid-media {
    aspect-ratio: 16 / 10;
  }

  .listing-action-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .developer-card figure,
  .developer-list-card figure {
    aspect-ratio: 16 / 10;
  }

  .property-detail-page {
    padding-top: 5.5rem;
  }

  .property-detail-contact {
    display: block;
  }

  .property-overview-grid,
  .property-details-list,
  .property-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-request-card,
  .property-detail-card,
  .property-detail-contact,
  .property-detail-facts-card {
    padding: 1rem;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    padding: 0.42rem 0.55rem;
  }

  .site-header.is-sticky {
    min-height: 62px;
  }

  .brand img,
  .site-header.is-sticky .brand img {
    height: 44px;
  }

  .language-current {
    gap: 0.28rem;
    min-height: 34px;
    min-width: 62px;
    padding: 0.2rem 0.45rem;
  }

  .language-label {
    display: none;
  }

  .language-code {
    display: inline;
    font-size: 0.68rem;
  }

  .language-current img {
    height: 15px;
    width: 23px;
  }

  .language-menu {
    right: 0;
  }

  .menu-toggle {
    width: 32px;
  }

  .main-nav {
    padding-top: 5rem;
  }

  .main-nav a {
    font-size: clamp(1.08rem, 7vw, 1.65rem);
    letter-spacing: 0.07em;
  }

  .hero-search-panel,
  .sale-page-search,
  .catalog-search-panel,
  .sale-listings-head,
  .sale-card-grid,
  .listing-pagination,
  .offplan-section,
  .sale-carousel,
  .invest-callout-inner,
  .promote-video-section,
  .team-section,
  .developer-directory,
  .offplan-page-list,
  .promotion-proof,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .message-section,
  .contact-layout,
  .contact-route,
  .team-method,
  .team-contact-strip,
  .footer-shell,
  .property-detail-layout {
    width: min(100% - 1rem, 520px);
  }

  .hero-search-panel h1,
  .sale-page-hero-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1,
  .offplan-page-copy h1 {
    font-size: clamp(2.2rem, 12.5vw, 3.45rem);
    line-height: 0.94;
  }

  .hero {
    min-height: auto;
    padding: 5.55rem 0.5rem 1.55rem;
  }

  .popular-searches {
    grid-template-columns: 1fr 1fr;
  }

  .popular-searches a {
    min-width: 0;
    white-space: normal;
  }

  .sale-scroll-track {
    grid-auto-columns: minmax(238px, 84vw);
  }

  .sale-listing-controls {
    align-items: stretch;
    grid-template-columns: auto 1fr;
  }

  .sale-select-pill {
    grid-column: 1 / -1;
    width: 100%;
  }

  .listing-action-row {
    grid-template-columns: 1fr;
  }

  .listing-card-bottom .whatsapp-action,
  .listing-card-bottom .more-info-action,
  .home-whatsapp-action,
  .home-more-action {
    min-height: 44px;
    width: 100%;
  }

  .property-main-video {
    aspect-ratio: 16 / 10;
  }

  .property-thumb-strip,
  .property-overview-grid,
  .property-details-list,
  .property-feature-list,
  .developer-grid,
  .offplan-project-grid,
  .developer-directory-grid,
  .promotion-proof,
  .team-method-grid,
  .contact-route,
  .offplan-featured,
  .offplan-diligence-list,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .property-media-actions {
    gap: 0.35rem;
    right: 0.5rem;
    top: 0.5rem;
  }

  .property-media-actions span {
    font-size: 0.58rem;
    min-height: 30px;
    padding: 0 0.5rem;
  }

  .property-detail-contact h1 {
    font-size: clamp(1.45rem, 8vw, 2.05rem);
  }

  .property-agent-card {
    align-items: flex-start;
  }

  .team-directory {
    grid-template-columns: 1fr;
  }

  .team-profile-card {
    justify-self: center;
    width: min(100%, 300px);
  }

  .footer-social {
    justify-items: start;
  }

  .footer-bottom address,
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .hero-search-panel h1,
  .sale-page-hero-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1,
  .offplan-page-copy h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .popular-searches {
    grid-template-columns: 1fr;
  }

  .sale-scroll-track {
    grid-auto-columns: minmax(220px, 86vw);
  }

  .language-menu {
    min-width: 160px;
  }
}

/* Footer polish: remove the floating WhatsApp chip and keep socials left-aligned. */
.whatsapp {
  display: none !important;
}

.footer-social {
  justify-items: start;
  justify-self: start;
  text-align: left;
}

.footer-social h3 {
  text-align: left;
  width: 100%;
}

.footer-social nav {
  justify-content: flex-start;
}

/* Center internal page hero copy consistently. */
.sale-page-hero {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sale-page-hero-copy,
.offplan-page-copy,
.promotion-hero-copy,
.contact-hero-copy {
  margin-inline: auto;
  max-width: min(920px, calc(100vw - 2rem));
  padding-left: 0;
  text-align: center;
}

.sale-page-hero-copy h1,
.offplan-page-copy h1,
.promotion-hero h1,
.contact-hero h1,
.team-page-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 13ch;
}

.sale-page-hero-copy p,
.offplan-page-copy p,
.promotion-hero-copy p,
.contact-hero-copy p,
.team-page-hero p {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.offplan-page-hero,
.team-page-hero,
.contact-hero {
  align-items: center;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.promotion-hero {
  align-items: center;
  display: grid;
  justify-items: center;
  text-align: center;
}

.team-page-hero > div,
.team-hero-context,
.contact-quick-card {
  justify-self: center;
  max-width: min(760px, calc(100vw - 2rem));
}

.promotion-hero-actions {
  justify-content: center;
}

/* 2026 premium system pass */
:root {
  --soft-paper: #f7f7f5;
  --hairline: rgba(8, 7, 8, 0.12);
  --premium-shadow: 0 18px 48px rgba(8, 7, 8, 0.08);
  --premium-shadow-hover: 0 24px 60px rgba(8, 7, 8, 0.13);
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--ink);
  color: #fff;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-header {
  border-bottom: 0;
}

.site-header.is-sticky {
  border-bottom: 0;
  box-shadow: 0 12px 38px rgba(8, 7, 8, 0.08);
}

.main-nav a {
  position: relative;
}

.main-nav a[aria-current="page"]::after {
  opacity: 1;
}

.offplan-section,
.sale-carousel,
.rent-carousel,
.team-section {
  padding-bottom: clamp(2rem, 3.4vw, 3.4rem);
  padding-top: clamp(2rem, 3.4vw, 3.4rem);
}

.offplan-section {
  margin-bottom: clamp(1.4rem, 2.5vw, 2.2rem);
  margin-top: clamp(1rem, 2vw, 1.6rem);
}

.sale-carousel,
.rent-carousel {
  margin-bottom: clamp(1.5rem, 2.8vw, 2.4rem);
}

.invest-callout,
.promote-video-section {
  margin-bottom: clamp(1.5rem, 2.8vw, 2.4rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.8rem);
  padding-top: clamp(2.5rem, 4vw, 3.8rem);
}

.team-section {
  padding-bottom: clamp(2.5rem, 4vw, 3.8rem);
  padding-top: clamp(2.5rem, 4vw, 3.8rem);
}

.developer-card,
.sale-scroll-card,
.sale-property-card,
.team-profile-card,
.property-detail-contact,
.property-detail-card,
.property-detail-facts-card,
.property-request-card {
  border-color: var(--hairline);
  box-shadow: var(--premium-shadow);
}

.contact-quick-card {
  border-radius: 6px;
}

.developer-card,
.sale-scroll-card,
.sale-property-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.developer-card:hover,
.sale-scroll-card:hover,
.sale-property-card:hover {
  border-color: rgba(8, 7, 8, 0.28);
  box-shadow: var(--premium-shadow-hover);
  transform: translateY(-4px);
}

.developer-card figure,
.sale-scroll-card > a > img,
.sale-grid-media {
  background: #ececea;
}

.developer-card figure > img,
.sale-scroll-card > a > img,
.sale-grid-media img,
.sale-grid-media video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Keep each supplied developer rendering focused on the architecture. */
.developer-card--civis figure > img {
  object-position: 50% 46%;
}

.developer-card--avanza figure > img {
  object-position: 50% 55%;
}

.developer-card--altius figure > img {
  object-position: 50% 42%;
}

.developer-card--casatua figure > img {
  object-position: 50% 43%;
}

.developer-card--zuba figure > img {
  object-position: 50% 48%;
}

.developer-card--urban-domus figure > img {
  object-position: 50% 45%;
}

/* Unified developer mark: a simple black square over every project image. */
.developer-logo,
.developer-logo.logo-wide,
.developer-logo.dark-logo {
  aspect-ratio: 1;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  height: auto;
  left: 0.85rem;
  padding: 0.65rem;
  top: 0.85rem;
  width: clamp(70px, 5.5vw, 84px);
}

.developer-logo img,
.developer-logo.logo-wide img {
  display: block;
  height: 100%;
  max-height: none;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 760px) {
  .developer-logo,
  .developer-logo.logo-wide,
  .developer-logo.dark-logo {
    width: 68px;
  }
}

.section-view-link,
.portfolio-link {
  text-underline-offset: 0.3em;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-listings a,
.footer-contact a,
.footer-legal-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-listings a:hover,
.footer-contact a:hover,
.footer-legal-links a:hover {
  color: #fff;
  opacity: 0.7;
}

.enhanced-ui .reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.enhanced-ui .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 900px) {
  .offplan-section,
  .invest-callout,
  .sale-carousel,
  .promotion-band,
  .rent-carousel,
  .team-section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 780px;
  }
}

@media (max-width: 760px) {
  .developer-card:hover,
  .sale-scroll-card:hover,
  .sale-property-card:hover {
    transform: none;
  }
}

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

  .enhanced-ui .reveal-item,
  .developer-card,
  .sale-scroll-card,
  .sale-property-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Premium agency refinement: consistent across home, catalog and service pages. */
:root {
  --agency-paper: #ffffff;
  --agency-soft: #f5f5f2;
  --agency-ink: #050505;
  --agency-muted: rgba(5, 5, 5, 0.62);
  --agency-line: rgba(5, 5, 5, 0.13);
  --agency-radius: 4px;
  --agency-shadow: 0 14px 40px rgba(5, 5, 5, 0.07);
  --agency-shadow-hover: 0 22px 54px rgba(5, 5, 5, 0.12);
  --container: min(1360px, calc(100vw - 4rem));
}

h1,
h2,
h3,
p,
a,
button,
label,
input,
select,
textarea,
span,
small,
strong,
em,
li {
  letter-spacing: 0;
}

body {
  background: var(--agency-paper);
}

.site-header {
  gap: 1.5rem;
  min-height: 106px;
  padding: 0.72rem clamp(1.25rem, 2.7vw, 2.8rem);
}

.site-header.is-sticky {
  min-height: 78px;
  padding-bottom: 0.45rem;
  padding-top: 0.45rem;
}

.brand img {
  height: 82px;
}

.site-header.is-sticky .brand img {
  height: 62px;
}

.main-nav {
  gap: clamp(0.75rem, 1.35vw, 1.65rem);
}

.main-nav a {
  font-size: 0.79rem;
  font-weight: 700;
}

.main-nav a::after {
  margin-top: 0.38rem;
}

.language-current,
.language-menu {
  border-radius: var(--agency-radius);
}

.hero {
  height: min(900px, 100svh);
  min-height: 700px;
}

.hero::after {
  height: 20px;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.75));
}

.hero-search-panel {
  width: min(1160px, calc(100vw - 4rem));
}

.hero-search-panel h1 {
  font-size: 4.55rem;
  font-weight: 300;
  line-height: 0.96;
  margin-bottom: 1.45rem;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.5);
}

.hero-search-bar {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--agency-radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  gap: 0.38rem;
  min-height: 82px;
  padding: 0.42rem;
}

.search-field {
  background: #f7f7f5;
  border-color: rgba(5, 5, 5, 0.08);
  border-radius: 2px;
  padding-inline: 0.95rem;
}

.search-field span {
  font-size: 0.65rem;
  font-weight: 700;
}

.search-field select {
  font-size: 1rem;
  font-weight: 600;
}

.hero-search-submit {
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 700;
}

.popular-searches {
  margin-top: 0.85rem;
}

.popular-searches > span {
  font-size: 0.76rem;
  font-weight: 700;
}

.popular-searches a {
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 700;
  min-height: 42px;
  padding-inline: 1rem;
}

.offplan-section,
.sale-carousel,
.rent-carousel,
.team-section {
  padding-bottom: 2.8rem;
  padding-top: 2.8rem;
}

.offplan-heading,
.sale-carousel-head {
  border-top-color: var(--agency-line);
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.section-heading-copy p,
.sale-heading-copy p {
  color: var(--agency-muted);
  margin-top: 0.7rem;
}

.section-title-box {
  border-radius: 2px;
  padding: 0.58rem 0.78rem;
}

.section-heading-copy h2.section-title-box,
.sale-heading-copy h2.section-title-box,
.promote-video-copy h2.section-title-box {
  font-size: 0.8rem;
  font-weight: 700;
}

.section-view-link,
.sale-view-link {
  font-size: 0.75rem;
  font-weight: 700;
}

.section-view-link span,
.sale-view-link span {
  border-radius: 2px;
  height: 36px;
  width: 36px;
}

.offplan-section > .developer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.developer-card {
  border-color: var(--agency-line);
  border-radius: var(--agency-radius);
  box-shadow: var(--agency-shadow);
}

.developer-card:hover {
  box-shadow: var(--agency-shadow-hover);
  transform: translateY(-3px);
}

.developer-card figure {
  aspect-ratio: 4 / 3;
}

.developer-body {
  padding: 1.05rem 1.05rem 1.2rem;
}

.developer-body strong {
  font-size: 2rem;
  margin-bottom: 0.42rem;
}

.developer-body p {
  color: var(--agency-muted);
  margin-bottom: 1rem;
}

.developer-body ul {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.portfolio-link {
  font-size: 0.7rem;
  font-weight: 700;
}

.developer-list-card {
  align-items: center;
  border-radius: var(--agency-radius);
  flex-direction: row;
  gap: 1rem;
  grid-column: 1 / -1;
  justify-content: flex-start;
  min-height: 86px;
  padding: 1rem 1.25rem;
  text-align: left;
}

.developer-list-card span {
  border-radius: 2px;
  flex: 0 0 auto;
  height: 48px;
  margin: 0;
  width: 48px;
}

.developer-list-card strong {
  font-size: 1.55rem;
  margin: 0;
}

.developer-list-card small {
  margin-left: auto;
}

.sale-carousel-frame {
  margin-bottom: -0.75rem;
  margin-top: -0.75rem;
}

.sale-scroll-viewport {
  padding-bottom: 1.75rem;
  padding-top: 0.95rem;
}

.sale-scroll-card,
.sale-grid-card,
.listing-card-style {
  border-color: var(--agency-line);
  border-radius: var(--agency-radius);
  box-shadow: 0 10px 30px rgba(5, 5, 5, 0.055);
}

.sale-scroll-card:hover,
.sale-grid-card:hover,
.listing-card-style:hover {
  box-shadow: var(--agency-shadow-hover);
  transform: translateY(-3px);
}

/* Home carousels: keep the hover shadow soft and fully inside the scroll area. */
.sale-carousel .sale-scroll-viewport,
.rent-carousel .sale-scroll-viewport {
  padding-bottom: 2.7rem;
}

.sale-carousel .sale-carousel-frame,
.rent-carousel .sale-carousel-frame {
  margin-bottom: -1.7rem;
}

.sale-carousel .sale-scroll-card,
.rent-carousel .sale-scroll-card {
  border-color: rgba(5, 5, 5, 0.1);
  box-shadow: 0 8px 24px -18px rgba(5, 5, 5, 0.24);
}

.sale-carousel .sale-scroll-card:hover,
.rent-carousel .sale-scroll-card:hover {
  border-color: rgba(5, 5, 5, 0.12);
  box-shadow: 0 18px 38px -20px rgba(5, 5, 5, 0.28);
  transform: translateY(-2px);
}

.sale-scroll-card > a > div {
  padding: 0.95rem 1rem 1rem;
}

.sale-scroll-card strong {
  font-size: 1.75rem;
}

.home-property-actions {
  padding: 0 1rem 1rem;
}

.home-property-actions a,
.listing-card-bottom .whatsapp-action,
.listing-card-bottom .more-info-action {
  border-radius: 3px;
  font-weight: 700;
}

.sale-arrow {
  border-radius: 3px;
  height: 54px;
  width: 42px;
}

.invest-callout,
.promote-video-section {
  margin-bottom: 2rem;
  padding-bottom: 3.6rem;
  padding-top: 3.6rem;
}

.invest-callout::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68)),
    url("assets/images/civis-project.jpg") center 48% / cover no-repeat;
}

.invest-callout::after,
.promote-video-section::after {
  border-left: 0;
  border-right: 0;
  inset: 1rem 0;
}

.invest-copy h2,
.promote-video-copy h2 {
  font-size: 5rem;
  line-height: 0.92;
}

.invest-primary,
.invest-secondary,
.promote-service-button,
.promotion-hero-actions a,
.team-contact-strip a,
.contact-form button {
  border-radius: 3px;
  font-weight: 700;
}

.invest-board {
  border-radius: var(--agency-radius);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
}

.promote-video-frame iframe,
.vimeo-lite,
.promotion-service-player,
.promotion-service-player iframe,
.promotion-service-player .vimeo-lite {
  border-radius: var(--agency-radius);
}

.team-section {
  background: #ececea;
  margin: 0;
  max-width: none;
  width: 100%;
}

.team-section::after {
  background: #ececea;
  content: "";
  inset: 0 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
}

.team-circle-shell {
  position: relative;
  z-index: 1;
}

.team-circle-heading {
  margin-bottom: 2rem;
}

.team-circle-heading > span {
  border-radius: 2px;
  font-weight: 700;
}

.team-circle-heading h2 {
  font-size: 5.3rem;
  line-height: 0.94;
}

.team-circle-card:nth-child(even) {
  margin-top: 0;
}

.team-circle-photo {
  background: transparent;
  border-color: rgba(8, 7, 8, 0.12);
  box-shadow: 0 16px 38px rgba(5, 5, 5, 0.09);
  padding: 0.28rem;
}

.team-circle-card:hover .team-circle-photo {
  box-shadow: 0 22px 48px rgba(5, 5, 5, 0.14);
  transform: translateY(-3px);
}

.team-circle-copy h3 {
  font-size: 2.35rem;
}

.team-section + .site-footer {
  margin-top: 0;
}

.enhanced-ui .site-footer.reveal-item {
  opacity: 1;
  transform: none;
}

.sale-page-hero,
.offplan-page-hero,
.team-page-hero,
.promotion-hero,
.contact-hero {
  min-height: 610px;
}

.sale-page-hero-copy h1,
.offplan-page-copy h1,
.team-page-hero h1,
.promotion-hero h1,
.contact-hero h1 {
  font-size: 5.4rem;
  line-height: 0.94;
  max-width: 14ch;
}

.sale-page-hero-copy span,
.offplan-page-copy span,
.team-page-hero span,
.promotion-hero-copy span,
.contact-hero-copy span {
  font-size: 0.74rem;
  font-weight: 700;
}

.sale-page-search .hero-search-bar,
.catalog-search-form .hero-search-bar {
  box-shadow: 0 20px 54px rgba(5, 5, 5, 0.2);
}

.sale-listings-section {
  padding-bottom: 4rem;
  padding-top: 4.8rem;
}

.sale-listings-head,
.sale-card-grid,
.listing-pagination {
  width: var(--container);
}

.sale-card-grid {
  gap: 1.4rem;
}

.sale-status-label {
  border-radius: 2px;
  font-weight: 700;
}

.sale-grid-body {
  gap: 0.65rem;
  padding: 1.15rem;
}

.sale-grid-price {
  font-size: 1.55rem;
  letter-spacing: 0;
}

.listing-tagline {
  font-size: 0.78rem;
}

.listing-pagination a {
  border-radius: 3px;
}

.offplan-page-list,
.team-directory,
.team-method,
.contact-layout,
.contact-route,
.promotion-proof,
.promotion-service-video,
.promotion-showcase,
.message-section {
  width: var(--container);
}

.offplan-page-list {
  margin-bottom: 2.8rem;
  margin-top: 2.8rem;
}

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

.offplan-project-grid .developer-card,
.team-profile-card,
.team-method-grid article,
.contact-route article,
.promotion-proof article,
.contact-form,
.contact-info-panel,
.property-detail-contact,
.property-detail-card,
.property-detail-facts-card,
.property-request-card,
.legal-card {
  border-radius: var(--agency-radius);
  box-shadow: var(--agency-shadow);
}

.offplan-invest-cta {
  margin-bottom: 3.5rem;
  margin-top: 2.7rem;
}

.offplan-invest-actions a,
.contact-quick-card,
.contact-quick-card a {
  border-radius: var(--agency-radius);
}

.promotion-proof,
.contact-layout,
.team-directory {
  margin-bottom: 2.6rem;
  margin-top: 2.6rem;
}

.promotion-service-video,
.promotion-showcase,
.promotion-flow,
.promotion-message,
.team-method,
.team-contact-strip,
.contact-route {
  margin-bottom: 2.6rem;
}

.promotion-service-player {
  background: transparent;
  border: 0;
  padding: 0;
}

.promotion-showcase {
  border-color: var(--agency-line);
  padding: 1rem;
}

.promotion-showcase-media img {
  border-radius: var(--agency-radius);
}

.promotion-flow li,
.promotion-proof article,
.team-method-grid article,
.contact-route article {
  border-radius: var(--agency-radius);
}

.team-profile-card {
  border-color: var(--agency-line);
  padding: 1.15rem 1rem 1.35rem;
}

.team-profile-card h2 {
  font-size: 2.25rem;
}

.team-method-copy h2,
.promotion-showcase-copy h2,
.promotion-flow h2,
.contact-form h2,
.contact-info-panel h2,
.team-contact-strip h2,
.offplan-invest-copy h2 {
  font-size: 4.2rem;
  line-height: 0.95;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.message-form input,
.message-form select,
.message-form textarea,
.property-request-card input,
.property-request-card textarea {
  background: var(--agency-soft);
  border-color: var(--agency-line);
  border-radius: 3px;
}

.contact-info-panel {
  background: var(--agency-ink);
}

.property-detail-page {
  background: var(--agency-soft);
}

.property-detail-layout {
  width: var(--container);
}

.property-main-video {
  border-radius: var(--agency-radius);
  box-shadow: var(--agency-shadow);
}

.property-breadcrumb,
.property-breadcrumb a {
  color: rgba(5, 5, 5, 0.64);
}

.property-media-actions span {
  background: rgba(5, 5, 5, 0.86);
  border-radius: 2px;
}

.site-footer {
  background: #030303;
  padding-bottom: 1.5rem;
  padding-top: 3.6rem;
}

.footer-main {
  gap: 2.5rem;
  padding-bottom: 2.4rem;
  padding-top: 1rem;
}

.footer-logo {
  max-height: 128px;
  max-width: 128px;
}

.footer-markets span,
.footer-social nav a {
  border-radius: var(--agency-radius);
}

.footer-social nav a {
  padding: 0.28rem;
}

.footer-social nav img {
  height: 32px;
}

@media (max-width: 1280px) {
  :root {
    --container: min(100% - 2.5rem, 980px);
  }

  .site-header {
    min-height: 92px;
  }

  .brand img {
    height: 70px;
  }

  .main-nav a {
    font-size: 0.7rem;
  }

  .hero-search-panel h1,
  .sale-page-hero-copy h1,
  .offplan-page-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1 {
    font-size: 4.4rem;
  }

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

  .hero-search-submit {
    grid-column: 1 / -1;
    min-height: 54px;
  }

  .offplan-section > .developer-grid,
  .team-circle-grid,
  .team-directory,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .invest-copy h2,
  .promote-video-copy h2,
  .team-circle-heading h2 {
    font-size: 4.25rem;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 1.25rem, 560px);
  }

  .site-header,
  .site-header.is-sticky {
    min-height: 74px;
    padding: 0.45rem 0.75rem;
  }

  .brand img,
  .site-header.is-sticky .brand img {
    height: 56px;
  }

  .hero {
    height: auto;
    min-height: 860px;
    padding: 7rem 0 2.5rem;
  }

  .hero::after {
    display: none;
  }

  .hero-search-panel {
    width: var(--container);
  }

  .hero-search-panel h1,
  .sale-page-hero-copy h1,
  .offplan-page-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1 {
    font-size: 3.2rem;
    line-height: 0.98;
  }

  .hero-search-bar {
    grid-template-columns: 1fr;
  }

  .hero-search-submit {
    grid-column: auto;
    min-height: 52px;
  }

  .search-field {
    min-height: 64px;
  }

  .popular-searches {
    gap: 0.55rem;
  }

  .popular-searches > span {
    flex-basis: 100%;
    text-align: center;
  }

  .offplan-section,
  .sale-carousel,
  .rent-carousel,
  .team-section {
    padding-bottom: 2.1rem;
    padding-top: 2.1rem;
  }

  .offplan-heading,
  .sale-carousel-head {
    grid-template-columns: 1fr;
  }

  .section-view-link,
  .sale-view-link {
    justify-self: start;
  }

  .offplan-section > .developer-grid,
  .sale-card-grid,
  .offplan-project-grid,
  .team-circle-grid,
  .team-directory,
  .team-method-grid,
  .contact-route,
  .promotion-proof,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .developer-list-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .developer-list-card small {
    flex-basis: 100%;
    margin-left: 4rem;
  }

  .sale-carousel-frame {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sale-arrow {
    height: 46px;
    width: 36px;
  }

  .invest-callout-inner,
  .promote-video-section,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .team-method,
  .contact-layout,
  .property-detail-top-grid,
  .property-detail-lower-grid {
    grid-template-columns: 1fr;
  }

  .invest-callout,
  .promote-video-section {
    padding-bottom: 2.8rem;
    padding-top: 2.8rem;
  }

  .invest-copy h2,
  .promote-video-copy h2,
  .team-circle-heading h2,
  .team-method-copy h2,
  .promotion-showcase-copy h2,
  .promotion-flow h2,
  .contact-form h2,
  .contact-info-panel h2,
  .team-contact-strip h2,
  .offplan-invest-copy h2 {
    font-size: 3rem;
  }

  .sale-page-hero,
  .offplan-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero {
    min-height: 560px;
    padding: 7rem 1rem 2.5rem;
  }

  .sale-page-search {
    bottom: auto;
    left: auto;
    margin-top: 1.5rem;
    position: static;
    transform: none;
    width: 100%;
  }

  .sale-listings-section {
    padding-bottom: 3rem;
    padding-top: 2.5rem;
  }

  .sale-listings-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sale-listing-controls {
    justify-content: space-between;
    width: 100%;
  }

  .team-profile-card {
    width: 100%;
  }

  .team-contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-info-panel {
    position: static;
  }

  .footer-social {
    justify-self: start;
  }
}

@media (max-width: 400px) {
  .hero-search-panel h1,
  .sale-page-hero-copy h1,
  .offplan-page-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1 {
    font-size: 2.65rem;
  }

  .listing-action-row,
  .home-property-actions {
    grid-template-columns: 1fr;
  }

  .developer-list-card small {
    margin-left: 0;
  }

  .listing-pagination {
    flex-wrap: nowrap;
    gap: 0.3rem;
    width: calc(100% - 1rem);
  }

  .listing-pagination a {
    font-size: 0.82rem;
    height: 36px;
    min-width: 36px;
    padding: 0 0.45rem;
  }
}

/* Production footer: social links stay hidden until official profile URLs are supplied. */
.footer-main {
  grid-template-columns: minmax(260px, 1.15fr) minmax(190px, 0.72fr) minmax(260px, 0.92fr);
}

.office-appointment {
  color: rgba(5, 5, 5, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0.55rem 0 0;
  text-transform: uppercase;
}

.not-found-page {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
    url("assets/images/asuncion-sale-hero.jpeg") center / cover no-repeat;
  color: #fff;
  display: flex;
  min-height: 78vh;
  padding: 9rem 1.5rem 5rem;
}

.not-found-inner {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  width: 100%;
}

.not-found-inner > span {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.not-found-inner h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.94;
  margin: 0 auto;
}

.not-found-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
  margin: 1.5rem auto 0;
  max-width: 58ch;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.not-found-actions a {
  align-items: center;
  background: #fff;
  border: 1px solid #fff;
  border-radius: var(--agency-radius);
  color: #050505;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  text-transform: uppercase;
}

.not-found-actions a:last-child {
  background: transparent;
  color: #fff;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .not-found-page {
    min-height: 72vh;
    padding-top: 7.5rem;
  }

  .not-found-actions a {
    width: 100%;
  }
}

/* Comfortable mobile and tablet gutters across hero copy, search and page sections. */
@media (max-width: 900px) {
  :root {
    --container: min(calc(100% - 3rem), 760px);
  }

  .hero-search-panel,
  .sale-page-search,
  .catalog-search-panel,
  .sale-listings-head,
  .sale-card-grid,
  .listing-pagination,
  .offplan-section,
  .sale-carousel,
  .invest-callout-inner,
  .promote-video-section,
  .team-section,
  .developer-directory,
  .offplan-page-list,
  .promotion-proof,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .message-section,
  .contact-layout,
  .contact-route,
  .team-method,
  .team-contact-strip,
  .footer-shell,
  .property-detail-layout {
    width: var(--container);
  }

  .sale-page-hero,
  .offplan-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(calc(100% - 2.5rem), 560px);
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-search-panel {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100vw - 2.5rem);
    transform: none;
  }

  .hero-search-panel h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 12ch;
    overflow-wrap: normal;
    text-align: center;
    word-break: normal;
  }

  .hero-search-bar {
    box-sizing: border-box;
    max-width: 100%;
  }

  .sale-page-hero,
  .offplan-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Mobile-first polish: a dedicated compact interface for phones and tablets. */
@media (max-width: 1024px) {
  :root {
    --container: min(calc(100% - 2.5rem), 920px);
  }

  html {
    scroll-padding-top: 88px;
  }

  .site-header,
  .site-header.is-sticky {
    min-height: 82px;
    padding: 0.55rem 1.25rem;
  }

  .brand img,
  .site-header.is-sticky .brand img {
    height: 64px;
    width: auto;
  }

  body.pr-menu-open .brand {
    position: relative;
    z-index: 22;
  }

  body.pr-menu-open .brand img,
  body.pr-menu-open .site-header.is-sticky .brand img {
    filter: brightness(0) invert(1);
  }

  .header-actions {
    gap: 0.6rem;
    position: relative;
    z-index: 22;
  }

  .menu-toggle {
    height: 44px;
    padding: 0.65rem 0.45rem;
    width: 44px;
  }

  .main-nav {
    align-items: flex-start;
    gap: 0;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 7.5rem max(1.5rem, calc((100vw - 760px) / 2)) 2.5rem;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--sans);
    font-size: clamp(1.15rem, 3vw, 1.65rem);
    font-weight: 650;
    line-height: 1.2;
    padding: 1rem 0;
    width: 100%;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-search-bar {
    gap: 0.45rem;
  }

  .search-field {
    min-height: 68px;
  }

  .sale-card-grid,
  .offplan-project-grid {
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sale-grid-card,
  .developer-card,
  .sale-scroll-card,
  .property-detail-contact,
  .property-detail-card,
  .property-detail-facts-card,
  .property-request-card {
    border-radius: 6px;
  }

  .sale-grid-card:hover,
  .developer-card:hover,
  .sale-scroll-card:hover {
    transform: none;
  }

  .property-detail-top-grid,
  .property-detail-lower-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  }

  .property-detail-contact,
  .property-request-card {
    position: static;
  }

  .footer-main {
    gap: 2rem;
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(calc(100% - 2rem), 560px);
  }

  html {
    scroll-padding-top: 74px;
  }

  body {
    font-size: 15px;
  }

  .site-header,
  .site-header.is-sticky {
    min-height: 72px;
    padding: 0.42rem 0.85rem;
  }

  .brand img,
  .site-header.is-sticky .brand img {
    height: 54px;
  }

  .language-current {
    min-height: 42px;
    min-width: 64px;
    padding: 0.35rem 0.5rem;
  }

  .language-current .language-label {
    display: none;
  }

  .language-current .language-code {
    display: inline;
  }

  .language-current img {
    height: 16px;
    width: 24px;
  }

  .language-menu {
    border-radius: 6px;
    min-width: 164px;
    right: -3rem;
  }

  .language-menu a:hover,
  .language-menu a.is-active {
    border-radius: 3px;
  }

  .main-nav {
    padding: 6.5rem 1.25rem 2rem;
  }

  .main-nav a {
    font-size: 1.12rem;
    padding: 0.92rem 0;
  }

  .hero {
    align-items: flex-start;
    min-height: 780px;
    padding: 6.4rem 0 2rem;
  }

  .hero-search-panel {
    max-width: none;
    width: var(--container);
  }

  .hero-search-panel h1 {
    font-size: clamp(2rem, 9.5vw, 2.55rem);
    line-height: 0.96;
    margin-bottom: 1.15rem;
    max-width: none;
    text-wrap: balance;
    width: 100%;
  }

  .hero-search-panel h1 > span {
    display: block;
    white-space: nowrap;
  }

  .hero-search-bar {
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    padding: 0.42rem;
  }

  .search-field {
    min-height: 60px;
    padding: 0.55rem 0.9rem;
  }

  .search-field span {
    font-size: 0.61rem;
    letter-spacing: 0.12em;
  }

  .search-field select {
    font-size: 0.96rem;
  }

  .hero-search-submit {
    min-height: 52px;
  }

  .popular-searches {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.75rem;
  }

  .popular-searches > span {
    grid-column: 1 / -1;
    margin-bottom: 0;
    text-align: left;
  }

  .popular-searches a {
    min-height: 42px;
    padding: 0.55rem 0.65rem;
  }

  .offplan-section,
  .sale-carousel,
  .rent-carousel,
  .team-section {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  .offplan-heading,
  .sale-carousel-head {
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding-top: 0.85rem;
  }

  .section-heading-copy p,
  .sale-heading-copy p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-top: 0.55rem;
    max-width: 42ch;
  }

  .section-view-link,
  .sale-view-link {
    min-height: 40px;
  }

  .offplan-section > .developer-grid,
  .team-circle-grid {
    display: flex;
    gap: 0.85rem;
    margin-left: calc((100vw - var(--container)) / -2);
    margin-right: calc((100vw - var(--container)) / -2);
    overflow-x: auto;
    padding: 0.2rem calc((100vw - var(--container)) / 2) 1.1rem;
    scroll-padding-inline: calc((100vw - var(--container)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .offplan-section > .developer-grid::-webkit-scrollbar,
  .team-circle-grid::-webkit-scrollbar {
    display: none;
  }

  .offplan-section > .developer-grid .developer-card,
  .offplan-section > .developer-grid .developer-list-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: center;
  }

  .developer-card figure {
    aspect-ratio: 4 / 3;
  }

  .developer-body {
    padding: 0.9rem 0.9rem 1rem;
  }

  .developer-body strong {
    font-size: 1.7rem;
  }

  .developer-body p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .developer-body ul {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .developer-list-card {
    align-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 46px 1fr;
    min-height: 132px;
    padding: 1rem;
  }

  .developer-list-card small {
    grid-column: 2;
    margin: -0.4rem 0 0;
  }

  .sale-carousel-frame {
    margin-left: calc((100vw - var(--container)) / -2);
    margin-right: calc((100vw - var(--container)) / -2);
    padding-left: calc((100vw - var(--container)) / 2);
    padding-right: calc((100vw - var(--container)) / 2);
  }

  .sale-scroll-viewport {
    padding-bottom: 1.2rem;
    padding-top: 0.5rem;
  }

  .sale-scroll-track {
    gap: 0.85rem;
  }

  .sale-scroll-card {
    flex-basis: min(82vw, 322px);
    width: min(82vw, 322px);
  }

  .sale-scroll-card img {
    aspect-ratio: 16 / 11;
  }

  .sale-scroll-card > a > div {
    gap: 0.42rem;
    padding: 0.85rem 0.9rem 0.75rem;
  }

  .sale-scroll-card strong {
    font-size: 1.55rem;
  }

  .home-property-actions {
    gap: 0.4rem;
    padding: 0 0.9rem 0.9rem;
  }

  .home-property-actions a {
    font-size: 0.65rem;
    min-height: 44px;
    padding: 0 0.4rem;
  }

  .sale-arrow {
    background: rgba(5, 5, 5, 0.9);
    height: 44px;
    width: 34px;
  }

  .invest-callout,
  .promote-video-section {
    margin-bottom: 1rem;
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }

  .invest-callout-inner,
  .promote-video-section {
    gap: 1.5rem;
  }

  .invest-copy h2,
  .promote-video-copy h2,
  .team-circle-heading h2 {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
    line-height: 0.94;
    text-wrap: balance;
  }

  .invest-board {
    padding: 0.9rem;
  }

  .invest-board article {
    min-height: 74px;
    padding: 0.8rem;
  }

  .team-circle-heading {
    margin-bottom: 1.25rem;
  }

  .team-circle-card {
    flex: 0 0 min(74vw, 280px);
    gap: 0.75rem;
    scroll-snap-align: center;
  }

  .team-circle-photo {
    max-width: 230px;
    width: 100%;
  }

  .team-circle-copy h3 {
    font-size: 1.85rem;
  }

  .sale-page-hero,
  .offplan-page-hero,
  .team-page-hero,
  .promotion-hero,
  .contact-hero {
    align-items: center;
    min-height: auto;
    padding: 7rem 1rem 2rem;
    text-align: center;
  }

  .sale-page-hero-copy,
  .offplan-page-copy,
  .promotion-hero-copy,
  .contact-hero-copy,
  .team-page-hero > div {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
    width: 100%;
  }

  .sale-page-hero-copy h1,
  .offplan-page-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.55rem);
    margin-left: auto;
    margin-right: auto;
    max-width: 11ch;
    text-wrap: balance;
  }

  .sale-page-hero-copy p,
  .offplan-page-copy p,
  .team-page-hero p,
  .promotion-hero-copy p,
  .contact-hero-copy p {
    font-size: 0.96rem;
    line-height: 1.58;
    margin-left: auto;
    margin-right: auto;
    max-width: 40ch;
  }

  .sale-page-search {
    margin: 1.5rem auto 0;
    width: min(100%, 560px);
  }

  .sale-listings-section {
    padding: 2rem 0 2.8rem;
  }

  .sale-listings-head {
    gap: 1rem;
  }

  .sale-listings-head h2 {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .sale-listings-head h2 span {
    display: none;
  }

  .sale-listings-head h2 strong {
    display: block;
    font-size: 0.78rem;
    margin-top: 0.4rem;
  }

  .sale-listing-controls {
    align-items: center;
    border-bottom: 1px solid var(--agency-line);
    border-top: 1px solid var(--agency-line);
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 40px auto 1fr;
    padding: 0.6rem 0;
  }

  .sale-select-pill {
    font-size: 0.9rem;
    min-height: 42px;
    min-width: 0;
    width: 100%;
  }

  .sale-card-grid,
  .offplan-project-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .sale-grid-media {
    aspect-ratio: 16 / 10;
  }

  .sale-grid-body {
    gap: 0.55rem;
    padding: 1rem;
  }

  .sale-grid-price {
    font-size: 1.45rem;
  }

  .sale-grid-body h2 {
    font-size: 1.05rem;
  }

  .listing-tagline {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .listing-card-bottom {
    gap: 0.65rem;
    margin-top: 0.4rem;
  }

  .listing-action-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .listing-card-bottom .whatsapp-action,
  .listing-card-bottom .more-info-action {
    font-size: 0.65rem;
    min-height: 46px;
    padding: 0 0.45rem;
  }

  .listing-pagination {
    gap: 0.35rem;
    margin-top: 1.6rem;
  }

  .listing-pagination a {
    height: 38px;
    min-width: 38px;
    padding: 0 0.6rem;
  }

  .offplan-page-list,
  .promotion-proof,
  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .message-section,
  .team-directory,
  .team-method,
  .team-contact-strip,
  .contact-layout,
  .contact-route {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  .offplan-project-grid .developer-card figure {
    aspect-ratio: 16 / 11;
  }

  .team-directory {
    gap: 1rem;
  }

  .team-profile-card {
    padding: 0.8rem 0.8rem 1rem;
  }

  .team-profile-card h2 {
    font-size: 1.85rem;
  }

  .promotion-service-video,
  .promotion-showcase,
  .promotion-flow,
  .team-method,
  .contact-layout {
    gap: 1.4rem;
  }

  .team-method-copy h2,
  .promotion-showcase-copy h2,
  .promotion-flow h2,
  .contact-form h2,
  .contact-info-panel h2,
  .team-contact-strip h2,
  .offplan-invest-copy h2 {
    font-size: clamp(2.4rem, 10vw, 3.1rem);
    text-wrap: balance;
  }

  .contact-form,
  .contact-info-panel,
  .property-detail-card,
  .property-request-card {
    padding: 1.15rem;
  }

  .contact-form input,
  .contact-form select,
  .message-form input,
  .message-form select,
  .property-request-card input {
    min-height: 50px;
  }

  .property-detail-page {
    padding: 6rem 0 2.5rem;
  }

  .property-detail-layout {
    width: var(--container);
  }

  .property-breadcrumb {
    font-size: 0.76rem;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
  }

  .property-detail-top-grid,
  .property-detail-lower-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .property-main-video {
    aspect-ratio: 16 / 9;
  }

  .property-media-actions {
    right: 0.65rem;
    top: 0.65rem;
  }

  .property-media-actions span {
    font-size: 0.58rem;
    min-height: 34px;
    padding: 0 0.65rem;
  }

  .property-thumb-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .property-thumb-strip::-webkit-scrollbar {
    display: none;
  }

  .property-thumb-strip figure {
    flex: 0 0 31%;
    scroll-snap-align: start;
  }

  .property-detail-contact {
    padding: 1.15rem;
  }

  .property-detail-contact h1 {
    font-size: 1.65rem;
  }

  .detail-side-price {
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }

  .property-agent-card {
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
  }

  .property-agent-card img {
    height: 58px;
    width: 58px;
  }

  .property-overview-grid {
    gap: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-overview-grid article {
    min-height: 68px;
    padding: 0.75rem;
  }

  .property-details-list,
  .property-feature-list {
    gap: 0.55rem;
    grid-template-columns: 1fr;
  }

  .property-detail-card h2,
  .property-request-card h2 {
    font-size: 1.45rem;
  }

  .property-detail-card p:not(.detail-tagline) {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .site-footer {
    padding: 2.5rem 0 1.2rem;
  }

  .footer-main {
    gap: 1.8rem;
    grid-template-columns: 1fr;
    padding: 0.5rem 0 1.8rem;
  }

  .footer-logo {
    max-height: 105px;
    max-width: 105px;
  }

  .footer-tagline {
    font-size: 0.9rem;
    max-width: 32ch;
  }

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

  .footer-listings h3 {
    grid-column: 1 / -1;
  }

  .footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1.35rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .footer-bottom address,
  .footer-legal-links {
    justify-content: flex-start;
  }

  .footer-bottom address a,
  .footer-legal-links a {
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(calc(100% - 1.5rem), 560px);
  }

  .site-header,
  .site-header.is-sticky {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .brand img,
  .site-header.is-sticky .brand img {
    height: 50px;
  }

  .language-current {
    min-width: 58px;
  }

  .hero-search-panel h1,
  .sale-page-hero-copy h1,
  .offplan-page-copy h1,
  .team-page-hero h1,
  .promotion-hero h1,
  .contact-hero h1 {
    font-size: 2.35rem;
  }

  .hero-search-panel h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.2rem);
  }

  .listing-card-bottom .whatsapp-action,
  .listing-card-bottom .more-info-action,
  .home-property-actions a {
    font-size: 0.6rem;
    letter-spacing: 0.045em;
  }
}

@media (max-width: 620px) {
  html[lang="ru"] .hero-search-panel h1 {
    font-size: clamp(1.62rem, 7.4vw, 2rem);
    max-width: none;
    width: 100%;
  }

  html[lang="ru"] .hero-search-panel h1 > span {
    white-space: nowrap;
  }
}

@media (hover: none) {
  .sale-grid-card:hover,
  .developer-card:hover,
  .sale-scroll-card:hover,
  .team-circle-card:hover .team-circle-photo {
    box-shadow: var(--agency-shadow);
    transform: none;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .hero-search-panel h1 {
    font-size: clamp(3.1rem, 7.25vw, 3.65rem);
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    text-wrap: balance;
    width: 100%;
  }
}

/* Blog page and Elementor editing surface */
.blog-page {
  background: #fff;
  color: #080708;
}

.blog-page-hero {
  align-items: end;
  color: #fff;
  display: grid;
  isolation: isolate;
  min-height: clamp(430px, 58vh, 620px);
  overflow: hidden;
  padding: clamp(132px, 15vw, 190px) max(24px, calc((100vw - 1280px) / 2)) clamp(58px, 7vw, 86px);
  position: relative;
}

.blog-page-hero::before,
.blog-page-hero::after {
  content: "";
  inset: 0;
  position: absolute;
}

.blog-page-hero::before {
  background: url("assets/images/asuncion-sale-hero.jpeg") center 48% / cover no-repeat;
  transform: scale(1.01);
  z-index: -2;
}

.blog-page-hero::after {
  background: rgba(4, 4, 4, 0.58);
  z-index: -1;
}

.blog-page-hero-copy {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
  width: 100%;
}

.blog-page-hero-copy > span,
.blog-builder-intro > span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.blog-page-hero-copy h1 {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.4vw, 6.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  text-wrap: balance;
}

.blog-page-hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  margin: 1.4rem auto 0;
  max-width: 670px;
}

.blog-builder-section {
  padding: clamp(56px, 7vw, 94px) max(20px, calc((100vw - 1280px) / 2));
}

.blog-builder-shell {
  margin: 0 auto;
  max-width: 1280px;
}

.blog-builder-intro {
  border-bottom: 1px solid #d9d9d9;
  margin: 0 auto;
  max-width: 940px;
  padding: 0 0 clamp(32px, 4vw, 52px);
  text-align: center;
}

.blog-builder-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 auto;
  max-width: 820px;
  text-wrap: balance;
}

.blog-elementor-content {
  min-height: 280px;
  padding-top: clamp(34px, 5vw, 58px);
}

.blog-builder-placeholder {
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  display: grid;
  gap: 1rem 3rem;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  padding: clamp(28px, 4vw, 52px) 0;
}

.blog-builder-placeholder strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.blog-builder-placeholder p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.paraguay-blog-elementor-root,
.paraguay-blog-elementor-root .elementor {
  width: 100%;
}

.paraguay-blog-elementor-root > :first-child {
  margin-top: 0;
}

.paraguay-blog-elementor-root > :last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .blog-page-hero {
    min-height: 510px;
    padding: 155px 22px 58px;
  }

  .blog-page-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .blog-page-hero-copy p {
    font-size: 0.98rem;
  }

  .blog-builder-section {
    padding: 48px 20px 58px;
  }

  .blog-builder-placeholder {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
}
/* Contact location */
.contact-location-section {
  background: #fff;
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(3.5rem, 6vw, 6rem);
}

.contact-location-shell {
  align-items: stretch;
  border-top: 1px solid rgba(8, 7, 8, 0.14);
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem);
  grid-template-columns: minmax(260px, 0.72fr) minmax(500px, 1.28fr);
  margin: 0 auto;
  max-width: 1280px;
  padding-top: clamp(2.5rem, 4vw, 4rem);
  width: min(92%, 1280px);
}

.contact-location-copy {
  align-self: center;
  max-width: 440px;
}

.contact-location-copy > span {
  color: rgba(8, 7, 8, 0.58);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-location-copy h2 {
  color: #080708;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
  margin: 0 0 1.4rem;
  text-wrap: balance;
}

.contact-location-copy p {
  color: rgba(8, 7, 8, 0.68);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.7rem;
  max-width: 38ch;
}

.contact-location-copy a {
  align-items: center;
  border-bottom: 1px solid #080708;
  color: #080708;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0 0 0.45rem;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-location-copy a span {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.contact-location-copy a:hover span {
  transform: translate(2px, -2px);
}

.contact-map-frame {
  background: #ececea;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.contact-map-frame iframe {
  display: block;
  height: 100%;
  inset: 0;
  min-height: 430px;
  position: absolute;
  width: 100%;
}

@media (max-width: 1024px) {
  .contact-location-shell {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .contact-location-copy {
    max-width: 620px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .contact-location-section {
    padding: 2rem 0 3rem;
  }

  .contact-location-shell {
    padding-top: 2rem;
    width: calc(100% - 2rem);
  }

  .contact-location-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 330px;
  }
}

/* Full-bleed team band on every viewport. */
.team-section {
  background: #ececea;
  margin: 0;
  max-width: none;
  width: 100%;
}

.team-circle-shell,
.team-circle-grid,
.team-circle-card,
.team-circle-copy {
  background: transparent;
}

.sale-scroll-viewport {
  scroll-snap-type: none;
}

.enhanced-ui .team-section.reveal-item {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .sale-scroll-viewport {
    scrollbar-width: none;
  }

  .sale-scroll-track-copy {
    display: grid;
  }

  .sale-carousel-frame .sale-arrow-prev {
    left: 2.25rem;
  }

  .sale-carousel-frame .sale-arrow-next {
    right: 1.35rem;
  }
}

/* Property previews: static image first, video only after deliberate hover. */
.sale-scroll-card > a > .home-property-media {
  aspect-ratio: 4 / 3;
  background: #ececea;
  display: block;
  gap: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.sale-scroll-card .home-property-media > img,
.sale-scroll-card .home-property-media > video {
  aspect-ratio: auto;
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.22s ease, transform 0.35s ease;
  width: 100%;
}

.sale-scroll-card .home-property-media > img {
  opacity: 1;
}

.sale-scroll-card .home-property-media > video {
  background: #ececea;
  opacity: 0;
}

.sale-scroll-card .home-property-media.is-preview-playing > video {
  opacity: 1;
}

.sale-scroll-card:hover .home-property-media > img,
.sale-scroll-card:hover .home-property-media > video {
  transform: scale(1.025);
}

.sale-scroll-card .home-property-status {
  z-index: 4;
}

.sale-grid-media video {
  background-color: #ececea;
}

/* Keep the property contact rail balanced on every screen size. */
.property-detail-contact,
.property-request-card {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.property-detail-contact > *,
.property-request-card > * {
  min-width: 0;
}

.detail-whatsapp-button,
.detail-email-button,
.property-request-card button {
  box-sizing: border-box;
  line-height: 1.2;
  padding: 0.75rem 1rem;
  text-align: center;
  width: 100%;
}

.detail-contact-note,
.property-agent-card span,
.property-agent-card small {
  overflow-wrap: anywhere;
}

@media (max-width: 1280px) {
  .property-detail-contact,
  .property-request-card {
    position: static;
  }

  .property-detail-contact {
    align-items: center;
    display: grid;
    gap: 0.75rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-detail-contact .detail-eyebrow,
  .property-detail-contact h1,
  .property-detail-contact .detail-location,
  .property-detail-contact .detail-side-price,
  .property-detail-contact .property-agent-card,
  .property-detail-contact .detail-contact-note {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .property-detail-contact .detail-whatsapp-button,
  .property-detail-contact .detail-email-button {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .property-detail-contact {
    display: block;
  }

  .property-detail-contact .detail-whatsapp-button,
  .property-detail-contact .detail-email-button {
    margin-bottom: 0.7rem;
    min-height: 50px;
  }

  .property-detail-contact .detail-contact-note {
    margin-top: 0.25rem;
  }
}

/* Premium Houzez-inspired property presentation. */
.property-detail-page {
  background: #f4f4f2;
  color: #090909;
  padding: clamp(7rem, 8vw, 8.25rem) 0 clamp(3rem, 6vw, 5rem);
}

.property-detail-layout {
  width: min(1460px, calc(100vw - 4rem));
}

.property-breadcrumb {
  color: #777;
  font-size: 0.82rem;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.property-breadcrumb a {
  color: #161616;
  font-weight: 700;
}

.property-title-bar {
  align-items: end;
  border-bottom: 1px solid #d8d8d4;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0 0 1.5rem;
}

.property-title-copy {
  min-width: 0;
}

.property-title-bar .detail-eyebrow {
  align-items: center;
  color: #777;
  margin: 0 0 0.75rem;
}

.property-title-bar .detail-eyebrow span:first-child {
  background: #080808;
  border-radius: 3px;
  color: #fff;
  padding: 0.42rem 0.72rem;
}

.property-title-bar h1 {
  color: #080808;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 450;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0 0 0.75rem;
  max-width: 17ch;
  text-wrap: balance;
}

.property-title-bar .detail-location {
  color: #666;
  font-size: 0.98rem;
  margin: 0;
}

.property-title-price {
  flex: 0 0 auto;
  text-align: right;
}

.property-title-price > span {
  color: #777;
  display: block;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.property-title-price strong {
  color: #080808;
  display: block;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.property-detail-top-grid,
.property-detail-lower-grid {
  gap: clamp(1.25rem, 2vw, 2rem);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
}

.property-main-video {
  aspect-ratio: 16 / 9;
  background: #050505;
  border-radius: 4px;
  box-shadow: none;
}

.property-media-actions {
  gap: 0.35rem;
  right: 0.8rem;
  top: 0.8rem;
}

.property-media-actions span {
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  min-height: 38px;
}

.property-media-actions span.is-active {
  background: #fff;
  border-color: #fff;
  color: #080808;
}

.property-thumb-strip {
  gap: 0.6rem;
}

.property-thumb-strip figure {
  border: 1px solid #d8d8d4;
  border-radius: 3px;
}

.property-thumb-strip figure:first-child {
  border-color: #080808;
}

.property-detail-contact {
  background: #090909;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  overflow: visible;
  padding: clamp(1.5rem, 2.2vw, 2.1rem);
  position: sticky;
  top: 6.8rem;
}

.detail-contact-kicker {
  color: #9f9f9f;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

.property-detail-contact h2 {
  color: #fff;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 0.85rem;
}

.detail-contact-intro {
  color: #bdbdbd;
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.property-agent-card {
  border-color: #303030;
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.property-agent-card img {
  background: #fff;
  border-radius: 3px;
  filter: none;
  height: 66px;
  padding: 0.45rem;
  width: 66px;
}

.property-agent-card span {
  color: #fff;
}

.property-agent-card small {
  color: #9f9f9f;
}

.property-detail-contact .detail-whatsapp-button {
  background: #25d366;
  border: 1px solid #25d366;
  border-radius: 4px;
  color: #071a0e;
  margin-bottom: 0.65rem;
  min-height: 54px;
}

.property-detail-contact .detail-email-button {
  background: transparent;
  border: 1px solid #4b4b4b;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 0.9rem;
  min-height: 54px;
}

.property-detail-contact .detail-email-button:hover {
  background: #fff;
  border-color: #fff;
  color: #080808;
}

.property-detail-contact .detail-contact-note {
  color: #8f8f8f;
  font-size: 0.78rem;
  text-align: center;
}

.property-detail-lower-grid {
  margin-top: clamp(1.25rem, 2vw, 2rem);
}

.property-detail-main {
  gap: 1rem;
}

.property-detail-card,
.property-detail-facts-card,
.property-request-card {
  background: #fff;
  border: 1px solid #dededa;
  border-radius: 4px;
  box-shadow: none;
}

.property-detail-facts-card {
  gap: 0;
  padding: 0;
}

.property-overview-grid article {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-right: 1px solid #dededa;
  min-height: 96px;
  padding: 1.4rem;
}

.property-overview-grid article:last-child {
  border-right: 0;
}

.property-overview-grid span,
.property-details-list dt {
  color: #777;
}

.property-overview-grid strong,
.property-details-list dd {
  color: #080808;
}

.property-detail-card,
.property-request-card {
  padding: clamp(1.4rem, 2.2vw, 2rem);
}

.property-detail-card h2,
.property-request-card h2 {
  color: #080808;
  font-family: Crimson, Georgia, serif;
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 450;
  letter-spacing: 0;
}

.detail-tagline {
  color: #080808;
}

.property-detail-card p:not(.detail-tagline) {
  color: #5f5f5f;
}

.property-details-list div,
.property-feature-list li {
  background: #f5f5f3;
  border: 1px solid #e5e5e1;
  border-radius: 3px;
}

.property-feature-list li::before {
  background: #080808;
}

.property-request-card {
  position: sticky;
  top: 6.8rem;
}

.property-request-card input,
.property-request-card textarea {
  background: #f8f8f6;
  border: 1px solid #d9d9d4;
  border-radius: 3px;
  color: #080808;
}

.property-request-card input:focus,
.property-request-card textarea:focus {
  border-color: #080808;
  outline: 1px solid #080808;
}

.property-request-card button {
  background: #080808;
  border-radius: 4px;
  color: #fff;
}

.property-request-card button:hover {
  background: #262626;
}

@media (max-width: 1120px) {
  .property-detail-layout {
    width: min(920px, calc(100vw - 3rem));
  }

  .property-detail-top-grid,
  .property-detail-lower-grid {
    grid-template-columns: 1fr;
  }

  .property-detail-contact,
  .property-request-card {
    position: static;
  }

  .property-detail-contact {
    align-items: center;
    display: grid;
    gap: 0.75rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-detail-contact .detail-contact-kicker,
  .property-detail-contact h2,
  .property-detail-contact .detail-contact-intro,
  .property-detail-contact .property-agent-card,
  .property-detail-contact .detail-contact-note {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .property-detail-contact .detail-whatsapp-button,
  .property-detail-contact .detail-email-button {
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .property-detail-page {
    padding-top: 5.8rem;
  }

  .property-detail-layout {
    width: min(100% - 1.5rem, 560px);
  }

  .property-title-bar {
    align-items: start;
    display: grid;
    gap: 1rem;
    padding-bottom: 1.15rem;
  }

  .property-title-bar h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    max-width: 100%;
  }

  .property-title-price {
    text-align: left;
  }

  .property-title-price strong {
    font-size: 1.7rem;
  }

  .property-main-video {
    aspect-ratio: 4 / 3;
  }

  .property-thumb-strip {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .property-thumb-strip figure {
    flex: 0 0 38%;
    scroll-snap-align: start;
  }

  .property-detail-contact {
    display: block;
    padding: 1.25rem;
  }

  .property-detail-contact .detail-contact-intro,
  .property-detail-contact .property-agent-card,
  .property-detail-contact .detail-whatsapp-button,
  .property-detail-contact .detail-email-button {
    margin-bottom: 0.75rem;
  }

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

  .property-overview-grid article {
    border-bottom: 1px solid #dededa;
    min-height: 82px;
    padding: 1rem;
  }

  .property-overview-grid article:nth-child(2n) {
    border-right: 0;
  }

  .property-overview-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .property-details-list,
  .property-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .property-detail-layout {
    width: min(100% - 1rem, 390px);
  }

  .property-title-bar .detail-eyebrow {
    gap: 0.4rem;
  }

  .property-title-bar h1 {
    font-size: 2.25rem;
  }

  .property-media-actions span {
    min-height: 34px;
    padding: 0 0.65rem;
  }

  .property-detail-card,
  .property-request-card {
    padding: 1.1rem;
  }
}

/* Keep the browser overscroll area consistent with the black footer. */
html {
  background: #030303;
  overscroll-behavior-y: none;
}

body {
  overscroll-behavior-y: none;
}

/* Multilingual layout guardrails: keep long Cyrillic labels elegant and intact. */
@media (min-width: 1181px) and (max-width: 1500px) {
  html[lang="ru"] .language-current .language-label {
    display: none;
  }

  html[lang="ru"] .language-current .language-code {
    display: inline;
  }

  html[lang="ru"] .language-current {
    min-width: 60px;
    padding-inline: 0.35rem;
  }

  html[lang="ru"] .header-actions {
    transform: translateX(-0.4rem);
  }
}

@media (max-width: 760px) {
  html[lang="ru"] .hero-search-panel h1,
  html[lang="ru"] .sale-page-hero-copy h1,
  html[lang="ru"] .offplan-page-copy h1,
  html[lang="ru"] .team-page-hero h1,
  html[lang="ru"] .promotion-hero h1,
  html[lang="ru"] .contact-hero h1,
  html[lang="ru"] .blog-page-hero-copy h1,
  html[lang="ru"] .legal-hero h1 {
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  html[lang="ru"] .hero-search-panel h1 > span {
    white-space: normal;
  }

  html[lang="ru"] .hero-search-panel h1 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    line-height: 1.02;
    max-width: 14ch;
  }

  html[lang="ru"] .sale-page-hero-copy h1,
  html[lang="ru"] .offplan-page-copy h1,
  html[lang="ru"] .team-page-hero h1,
  html[lang="ru"] .promotion-hero h1,
  html[lang="ru"] .contact-hero h1,
  html[lang="ru"] .blog-page-hero-copy h1 {
    font-size: clamp(2.1rem, 9.6vw, 2.75rem);
    line-height: 1;
    max-width: 15ch;
  }

  html[lang="ru"] .legal-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.55rem);
    line-height: 1;
  }
}

/* German headings contain long compound nouns; keep them intact on small screens. */
@media (max-width: 760px) {
  html[lang="de"] .hero-search-panel h1,
  html[lang="de"] .sale-page-hero-copy h1,
  html[lang="de"] .offplan-page-copy h1,
  html[lang="de"] .team-page-hero h1,
  html[lang="de"] .promotion-hero h1,
  html[lang="de"] .contact-hero h1,
  html[lang="de"] .blog-page-hero-copy h1,
  html[lang="de"] .legal-hero h1 {
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
  }

  html[lang="de"] .hero-search-panel h1 > span {
    white-space: normal;
  }

  html[lang="de"] .hero-search-panel h1 {
    font-size: clamp(1.72rem, 7.8vw, 2rem);
    line-height: 1.02;
    margin-left: auto;
    margin-right: auto;
    max-width: 17ch;
  }

  html[lang="de"] .sale-page-hero-copy h1,
  html[lang="de"] .offplan-page-copy h1,
  html[lang="de"] .team-page-hero h1,
  html[lang="de"] .promotion-hero h1,
  html[lang="de"] .contact-hero h1,
  html[lang="de"] .blog-page-hero-copy h1 {
    font-size: clamp(2rem, 8.8vw, 2.35rem);
    line-height: 1.02;
  }
}

/* Keep the homepage promotion band truly full-width on phones and tablets. */
@media (max-width: 820px) {
  .promote-video-section {
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
  }
}

/* Give both property carousels a clean, full-width rail without side controls. */
.sale-carousel .sale-arrow,
.rent-carousel .sale-arrow {
  display: none;
}

.sale-carousel .sale-carousel-frame,
.rent-carousel .sale-carousel-frame {
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.sale-carousel .sale-scroll-viewport,
.rent-carousel .sale-scroll-viewport {
  box-sizing: border-box;
  padding-left: clamp(0.45rem, 1.5vw, 1rem);
  padding-right: clamp(0.45rem, 1.5vw, 1rem);
  scroll-padding-left: clamp(0.45rem, 1.5vw, 1rem);
  scroll-padding-right: clamp(0.45rem, 1.5vw, 1rem);
  width: 100%;
}

@media (max-width: 760px) {
  .sale-carousel .sale-scroll-viewport,
  .rent-carousel .sale-scroll-viewport {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    scroll-padding-left: 0.25rem;
    scroll-padding-right: 0.25rem;
  }
}

/* Premium full-screen navigation for tablets and phones. */
@media (max-width: 1280px) {
  body.pr-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  body.pr-menu-open .site-header,
  body.pr-menu-open .site-header.is-sticky {
    backdrop-filter: none;
    background: transparent;
    box-shadow: none;
    color: #fff;
  }

  body.pr-menu-open .language-current,
  body.pr-menu-open .site-header.is-sticky .language-current {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
  }

  .main-nav {
    align-items: stretch;
    background: #080708;
    box-sizing: border-box;
    gap: 0;
    height: 100dvh;
    inset: 0;
    justify-content: center;
    max-height: 100dvh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(6.8rem, 15vh, 8.5rem) max(1.5rem, calc((100vw - 760px) / 2)) 2.5rem;
    position: fixed;
    width: 100%;
    z-index: 20;
  }

  .main-nav a {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    flex: 0 0 auto;
    font-family: var(--sans);
    font-size: clamp(1.12rem, 3vw, 1.5rem);
    font-weight: 650;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 760px;
    min-height: 62px;
    padding: 0.9rem 0;
    text-align: left;
    text-transform: uppercase;
    transition: color 0.18s ease, padding-left 0.18s ease;
    white-space: normal;
    width: 100%;
  }

  .main-nav a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a[aria-current="page"] {
    color: rgba(255, 255, 255, 0.68);
    padding-left: 0.45rem;
  }

  .menu-toggle,
  .site-header.is-sticky .menu-toggle {
    align-content: center;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    gap: 0;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
  }

  .menu-toggle span {
    grid-column: 1;
    grid-row: 1;
    height: 1.5px;
    transition: opacity 0.2s ease, transform 0.24s ease;
    width: 20px;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"],
  .site-header.is-sticky .menu-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

@media (max-width: 760px) {
  .main-nav {
    padding: 5.9rem 1.25rem 1.5rem;
  }

  .main-nav a {
    font-size: 1rem;
    min-height: 56px;
    padding: 0.8rem 0;
  }

  .menu-toggle,
  .site-header.is-sticky .menu-toggle {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 1280px) and (max-height: 650px) {
  .main-nav {
    justify-content: flex-start;
  }
}

/* Mobile scroll safety and edge-to-edge dark sections. */
@media (max-width: 1280px) {
  html {
    height: auto !important;
    max-height: none !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto !important;
    position: static !important;
    touch-action: pan-y pinch-zoom !important;
    -webkit-overflow-scrolling: touch;
  }

  body,
  body.pr-menu-open {
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    overscroll-behavior-y: auto !important;
    position: static !important;
    touch-action: pan-y pinch-zoom !important;
  }

  .main-nav,
  .main-nav:not(.is-open) {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  .main-nav.is-open {
    display: flex !important;
    overscroll-behavior: contain;
    pointer-events: auto !important;
    touch-action: pan-y;
    visibility: visible !important;
  }

  .invest-callout,
  .promote-video-section,
  .team-section {
    box-sizing: border-box;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
  }

  .invest-callout::after,
  .promote-video-section::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .sale-scroll-viewport,
  .developer-grid {
    touch-action: pan-y pinch-zoom;
  }
}
