@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwcGFU.woff2") format("woff2");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwcGFU.woff2") format("woff2");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwcGFU.woff2") format("woff2");
}

@font-face {
  font-family: "Fragment Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/fragmentmono/v6/4iCr6K5wfMRRjxp0DA6-2CLnB4NHhg.woff2") format("woff2");
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: #000000;
  --color-text-secondary: #686868;
  --color-text-soft: #a0a0a0;
  --color-border: #e8e8e8;
  --color-border-strong: #d5d5d5;
  --color-surface: #f7f7f7;
  --color-surface-soft: #fbfbfb;
  --color-overlay: rgba(255, 255, 255, 0.76);
  --color-orange: #E07B45;
  --color-success: #3cf05c;
  --font-heading: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Fragment Mono", ui-monospace, monospace;
  --container: 1824px;
  --page-gutter: clamp(1.5rem, 3.6vw, 4rem);
  --radius-card: 30px;
  --radius-hero: 42px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.08);
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --section-space: clamp(3.75rem, 7vw, 7rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.75rem);
}

h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.4rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
}

p,
li,
label,
input,
textarea,
select {
  font-family: var(--font-body);
}

p {
  margin: 0;
  color: var(--color-text-secondary);
  max-width: 68ch;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

hr {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--color-border);
}

main {
  width: min(var(--container), calc(100% - 2 * var(--page-gutter)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-6);
  padding: 1rem var(--page-gutter) 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__brand {
  color: var(--color-text);
  font-size: clamp(1.3rem, 1.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__nav {
  justify-self: center;
}

.site-header__nav-list,
.site-mobile-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.4rem, 2.4vw, 3rem);
}

.site-header__nav-link {
  color: var(--color-text-secondary);
  font-size: 1.04rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-header__nav-link.is-active,
.site-header__nav-link:hover {
  color: var(--color-orange);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.site-header__cta,
.site-mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.28rem;
  padding: 0.24rem 0.28rem 0.24rem 0.82rem;
  border-radius: var(--radius-pill);
  background: var(--color-orange);
  color: var(--color-white);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.site-header__cta:hover,
.site-mobile-menu__cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.site-header__cta-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-success);
  flex: 0 0 auto;
}

.site-header__cta-label {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.site-header__cta-arrow,
.hero-pill__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.25rem;
  line-height: 1;
  flex: 0 0 auto;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.94);
  color: var(--color-black);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.site-header__toggle:hover {
  transform: translateY(-1px);
}

.site-header__toggle span {
  position: absolute;
  width: 1.45rem;
  height: 0.18rem;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__toggle span:nth-child(1) {
  transform: translateY(-0.45rem);
}

.site-header__toggle span:nth-child(2) {
  transform: translateY(0);
}

.site-header__toggle span:nth-child(3) {
  width: 0.95rem;
  transform: translateY(0.45rem);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  width: 1.45rem;
  transform: rotate(-45deg);
}

.lang-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
}

.lang-float__trigger {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: transform 150ms ease, box-shadow 150ms ease;
  white-space: nowrap;
}

.lang-float__trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.lang-float__flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-float__chevron {
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.lang-float.is-open .lang-float__chevron {
  transform: rotate(180deg);
}

.lang-float__menu {
  position: absolute;
  bottom: calc(100% + 0.6rem);
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 10rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.4rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0ms linear 180ms;
}

.lang-float.is-open .lang-float__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lang-float__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.65rem;
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 0.83rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease;
}

.lang-float__option:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

.lang-float__option.is-active {
  color: var(--color-text);
  font-weight: 600;
  background: var(--color-surface);
}

.lang-float__name {
  letter-spacing: -0.01em;
}

.site-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 5.9rem var(--page-gutter) 2rem;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.site-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-mobile-menu__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 42rem);
  min-height: min(70vh, 52rem);
  padding: 4.25rem 2rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(30px);
}

.site-mobile-menu__nav {
  width: 100%;
}

.site-mobile-menu__list {
  display: grid;
  gap: 1.4rem;
  text-align: center;
}

.site-mobile-menu__link {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  color: var(--color-text);
}

.site-mobile-menu__cta {
  margin-top: 3rem;
}

main {
  padding-bottom: 0;
}

section {
  padding: var(--section-space) 0;
}

section:not(.home-hero) > p:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: var(--space-4);
  padding: 0 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface-soft);
  color: var(--color-text-soft);
  font-size: 0.72rem;
  font-weight: 300;
}

section > h1 + p,
section > h2 + p {
  margin-top: var(--space-4);
}

section > p img,
article > a img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
}

section > p:last-of-type a,
footer section a,
article h3 a {
  transition: opacity 180ms ease;
}

section > p:last-of-type a:hover,
footer section a:hover,
article h3 a:hover {
  opacity: 0.7;
}

section > p:last-of-type a:first-child,
article > p strong + a,
form button,
form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.25rem;
  border: 1px solid var(--color-black);
  border-radius: var(--radius-pill);
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 400;
}

section > p:last-of-type a + a {
  margin-left: 0.5rem;
}

section > p:last-of-type a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-text);
}

section > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-left: 0;
  list-style: none;
}

section > ul li {
  color: var(--color-text);
  font-size: 0.92rem;
}

.home-hero {
  padding-top: 0.55rem;
  padding-bottom: 0;
}

.home-hero__card {
  position: relative;
  display: flex;
  min-height: calc(100svh - 6.75rem);
  border-radius: var(--radius-hero);
  overflow: hidden;
  background: #dce8ef;
  isolation: isolate;
}

.home-hero__image,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.14) 32%, rgba(0, 0, 0, 0.04) 58%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0.12) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: inherit;
  width: 100%;
  padding: clamp(2rem, 4.2vw, 6rem);
}

.home-hero__copy {
  max-width: 78rem;
}

.home-hero__title {
  max-width: 15ch;
  color: var(--color-white);
  font-size: clamp(3.8rem, 5.4vw, 6.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero__text {
  margin-top: 1.6rem;
  max-width: 45ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.08vw, 1.16rem);
  line-height: 1.42;
}

.home-hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
}

.home-hero__left {
  display: grid;
  gap: 1.4rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 3.65rem;
  padding: 0.22rem 0.24rem 0.22rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: clamp(0.94rem, 0.94vw, 1.02rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.hero-pill:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.hero-pill--light {
  background: var(--color-white);
  color: var(--color-black);
}

.hero-pill--light:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.hero-pill--light .hero-pill__arrow {
  background: var(--color-orange);
  color: var(--color-white);
}

.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.25rem;
  margin: 0;
}

.home-hero__stat {
  display: grid;
  gap: 0.15rem;
}

.home-hero__stat dt {
  order: 2;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 0.96vw, 1.05rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.home-hero__stat dd {
  order: 1;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.6rem, 3.55vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.home-hero__social-proof {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.3rem 0.95rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  color: var(--color-black);
}

.home-hero__avatars {
  display: flex;
  align-items: center;
}

.home-hero__avatar {
  position: relative;
  width: 3.55rem;
  height: 3.55rem;
  margin-left: -0.9rem;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  overflow: hidden;
  background: #ececec;
}

.home-hero__avatar:first-child {
  margin-left: 0;
}

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

.home-hero__social-copy {
  display: grid;
  gap: 0.25rem;
}

.home-hero__social-copy strong {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.home-hero__social-copy span {
  color: #f4b941;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

/* ------------------------------------------------------------------ listing-hero */

.listing-hero {
  padding-top: 0.55rem;
  padding-bottom: 0;
}

.listing-hero__card {
  position: relative;
  display: flex;
  min-height: calc(100svh - 6.75rem);
  border-radius: var(--radius-hero);
  overflow: hidden;
  background: #1a2a35;
  isolation: isolate;
}

.listing-hero__image,
.listing-hero__shade {
  position: absolute;
  inset: 0;
}

.listing-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.32) 40%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.22) 100%);
}

.listing-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.2rem;
  min-height: inherit;
  width: 100%;
  padding: clamp(2rem, 4.2vw, 6rem);
}

.listing-hero__copy {
  max-width: 78rem;
}

.listing-hero__title {
  max-width: 18ch;
  color: var(--color-white);
  font-size: clamp(3.8rem, 5.4vw, 6.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.listing-hero__text {
  margin-top: 1.6rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.08vw, 1.16rem);
  line-height: 1.42;
}

.listing-hero__subtext {
  margin-top: 0.65rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.9rem, 0.98vw, 1.05rem);
  line-height: 1.42;
}

.listing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ------------------------------------------------------------------ featured-properties */

.featured-properties {
  padding-top: clamp(4.5rem, 7vw, 7rem);
}

.featured-properties__header {
  display: grid;
  gap: 1.8rem;
  max-width: 70rem;
}

.featured-properties__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  border: 1px solid #d5d5d5;
  border-radius: var(--radius-pill);
  background: #f0f0f0;
  color: #4c4c4c;
  font-size: 0.96rem;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.featured-properties__title {
  max-width: none;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  line-height: 0.97;
  text-transform: uppercase;
}

.featured-properties__intro {
  max-width: 44ch;
  color: #444444;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
}

.featured-properties__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2.15rem;
  margin-top: 4.2rem;
}

.property-card {
  margin-top: 0;
}

.property-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2.1rem;
}

.property-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 2.1rem;
  transition: transform 240ms ease;
}

.property-card__badges {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

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

.property-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.1rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  color: #373737;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.property-card__location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  color: #000000;
  font-size: 1.12rem;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.property-card__location-icon,
.property-card__spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.property-card__location-icon svg,
.property-card__spec-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.property-card__location-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.property-card__title {
  margin-top: 0.45rem;
  max-width: 100%;
  font-size: clamp(1.38rem, 1.7vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.property-card__title a:hover {
  opacity: 0.75;
}

.property-card__reference {
  margin-top: 0.18rem;
  color: #7a7a7a;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.property-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 0.55rem;
  padding: 0;
  list-style: none;
}

.property-card__specs li,
.property-card__specs > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #666666;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.property-card__price {
  margin-top: 0.65rem;
  color: var(--color-orange);
  font-size: clamp(1.35rem, 1.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section--catalogue .container {
  display: grid;
  gap: 1.75rem;
}

.catalogue-toolbar {
  display: grid;
  gap: 1rem;
}

.catalogue-filters {
  display: grid;
  gap: 0.75rem;
}

/* ── Search bar ── */
.catalogue-search {
  position: relative;
  display: flex;
  align-items: center;
}

.catalogue-search__icon {
  position: absolute;
  left: 1.15rem;
  color: var(--color-text-soft);
  pointer-events: none;
  flex-shrink: 0;
}

.catalogue-search__input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.catalogue-search__input::placeholder {
  color: var(--color-text-soft);
}

.catalogue-search__input:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.catalogue-filter-toggle {
  display: none;
}

/* ── Filter row ── */
.catalogue-filter-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}

.catalogue-filter-group {
  display: grid;
  gap: 0.3rem;
}

.catalogue-filter-group span {
  padding-left: 0.7rem;
  color: var(--color-text-secondary);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.catalogue-filter-group select,
.catalogue-filter-group input[type="number"] {
  width: 100%;
  min-height: 2.65rem;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: border-color 150ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.catalogue-filter-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4L6 7.5L9.5 4' stroke='%23686868' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.catalogue-filter-group select:focus,
.catalogue-filter-group input[type="number"]:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.catalogue-filter-group input[type="number"]::placeholder {
  color: var(--color-text-soft);
}

/* ── Meta bar ── */
.catalogue-toolbar__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.catalogue-toolbar__count {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.catalogue-reset {
  min-height: 2.4rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

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

.catalogue-feedback:empty {
  display: none;
}

.catalogue-page-summary {
  color: #4c4c4c;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1rem;
}

.catalogue-page-summary:empty {
  display: none;
}

.catalogue-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

.catalogue-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.catalogue-pagination__button {
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.catalogue-pagination__button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #bfbfbf;
}

.catalogue-pagination__button.is-active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.catalogue-pagination__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.featured-properties__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.featured-properties__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0 1.7rem;
  border-radius: var(--radius-pill);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  transition: transform 180ms ease, opacity 180ms ease;
}

.featured-properties__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: stretch;
  padding-top: clamp(4.75rem, 7vw, 7rem);
}

.home-about__content {
  display: grid;
  gap: 1.8rem;
  padding-right: 1rem;
  align-content: start;
}

.home-about__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  border: 1px solid #d5d5d5;
  border-radius: var(--radius-pill);
  background: #f0f0f0;
  color: #4c4c4c;
  font-size: 0.96rem;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.home-about__title {
  max-width: none;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  line-height: 0.97;
  text-transform: uppercase;
}

.home-about__text {
  max-width: 44ch;
  color: #444444;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
}

.home-about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  margin: 2rem 0 0;
}

.home-about__stat {
  display: grid;
  gap: 0.2rem;
}

.home-about__stat dt {
  order: 2;
  color: #4c4c4c;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.home-about__stat dd {
  order: 1;
  margin: 0;
  color: var(--color-orange);
  font-size: clamp(3rem, 4vw, 4.65rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.home-about__visual {
  overflow: hidden;
  border-radius: 2.6rem;
  height: 100%;
}

.home-about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── home-faq ─────────────────────────────────── */
.home-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 2.5fr);
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
  padding-top: clamp(4.75rem, 7vw, 7rem);
}

.home-faq__header {
  display: grid;
  gap: 1.8rem;
  position: sticky;
  top: 5.5rem;
}

.home-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  border: 1px solid #d5d5d5;
  border-radius: var(--radius-pill);
  background: #f0f0f0;
  color: #4c4c4c;
  font-size: 0.96rem;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.home-faq__title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.home-faq__accordion {
  border-top: 1px solid var(--color-border);
}

.home-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.home-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.home-faq__question-text {
  flex: 1;
}

.home-faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  color: #4c4c4c;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s ease;
}

.home-faq__item.is-open .home-faq__icon {
  transform: rotate(45deg);
  border-color: #a0a0a0;
}

.home-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-faq__item.is-open .home-faq__body {
  grid-template-rows: 1fr;
}

.home-faq__answer {
  overflow: hidden;
  min-height: 0;
}

.home-faq__answer p {
  padding-bottom: 1.5rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.65;
  max-width: 65ch;
}

/* ─── home-cta-contact ─────────────────────────── */
.home-cta-contact {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  padding: clamp(5rem, 9vw, 9rem) var(--page-gutter);
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.home-cta-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.38);
}

.home-cta-contact__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.home-cta-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  font-size: 0.96rem;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.home-cta-contact__title {
  max-width: none;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
}

.home-cta-contact__text {
  max-width: 50ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.58;
}

.home-cta-contact__card {
  margin-top: 0.8rem;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  text-align: left;
}

.home-cta-contact__form {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.home-cta-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.home-cta-contact__form input,
.home-cta-contact__form textarea {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 1.2rem 1.4rem;
  background: transparent;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 300;
  color: var(--color-text);
}

.home-cta-contact__row input:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.home-cta-contact__form input::placeholder,
.home-cta-contact__form textarea::placeholder {
  color: #b0b0b0;
}

.home-cta-contact__form input:focus,
.home-cta-contact__form textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.25);
}

.home-cta-contact__field--textarea {
  min-height: 8rem;
  resize: vertical;
  width: 100%;
}

.home-cta-contact__form-error {
  padding: 0.5rem 1.4rem;
  color: #c0392b;
  font-size: 0.88rem;
}

.home-cta-contact__submit {
  display: block;
  width: calc(100% - 2.8rem);
  margin: 1.5rem 1.4rem 1.5rem;
  padding: 1.1rem;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.home-cta-contact__submit:hover {
  opacity: 0.82;
}

article {
  margin-top: var(--space-8);
}

article > p:first-of-type:not(.property-card__location) {
  margin-top: var(--space-4);
  color: var(--color-text-soft);
  font-size: 0.78rem;
}

article h3 {
  margin-top: var(--space-3);
}

article ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-3);
  padding-left: 0;
  list-style: none;
}

article ul li {
  color: var(--color-text-soft);
  font-size: 0.78rem;
}

article > p strong {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
}

/* ─── site-footer ───────────────────────────────── */
.site-footer {
  width: 100%;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.55);
  padding: clamp(3rem, 5vw, 5rem) var(--page-gutter) 0;
  font-size: 0.9rem;
  margin-top: 0;
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.site-footer__brand {
  display: grid;
  gap: 0.55rem;
}

.site-footer__name {
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

.site-footer__contact-link {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__contact-link:hover {
  color: #fff;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__nav-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s ease;
}

.site-footer__nav-link:hover {
  color: #fff;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}

.site-footer__apial {
  max-width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.site-footer__social:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  gap: 1rem;
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.38);
}

.site-footer__kompose {
  display: inline-flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 180ms ease;
}

.site-footer__kompose:hover {
  opacity: 1;
}

.site-footer__kompose img {
  display: block;
}

.site-footer__credit strong {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: -0.02em;
}

form {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-white);
  color: var(--color-text);
  font-weight: 300;
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-border-strong);
}

@media (min-width: 810px) and (max-width: 1279px) {
  .home-hero__title {
    max-width: 10.4ch;
    font-size: clamp(2.9rem, 5vw, 4.7rem);
    line-height: 1.08;
  }

  .home-hero__text {
    max-width: 39ch;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .home-hero__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-hero__title {
    max-width: 14ch;
    font-size: clamp(2.9rem, 5vw, 4.7rem);
    line-height: 1.08;
  }

  .listing-hero__text {
    max-width: 42ch;
    font-size: 0.98rem;
  }

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

  .home-about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-about__content {
    padding-right: 0;
  }

  .home-about__text {
    max-width: 32ch;
  }

  .home-about__visual {
    max-width: 55rem;
  }

  .home-faq {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-faq__header {
    position: static;
  }

  .home-cta-contact {
    padding: clamp(4rem, 7vw, 7rem) var(--page-gutter);
  }

  .home-cta-contact__title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 809px) {
  body {
    font-size: 0.95rem;
  }

  main {
    width: min(var(--container), calc(100% - 2 * clamp(1.2rem, 4vw, 2rem)));
  }

  .site-footer {
    padding-left: clamp(1.2rem, 4vw, 2rem);
    padding-right: clamp(1.2rem, 4vw, 2rem);
  }

  .site-footer__main {
    flex-direction: column;
    gap: 2rem;
  }

  .site-footer__right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .site-header {
    padding-left: clamp(1.2rem, 4vw, 2rem);
    padding-right: clamp(1.2rem, 4vw, 2rem);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding-top: 0.8rem;
    padding-bottom: 0.7rem;
  }

  .site-header__brand {
    font-size: clamp(0.92rem, 4.4vw, 1.16rem);
  }

  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    position: relative;
    display: inline-flex;
  }

  .site-mobile-menu__panel {
    min-height: min(72vh, 50rem);
    padding-top: 3.5rem;
  }

  .site-mobile-menu__link {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  section {
    padding: 3.75rem 0;
  }

  .home-hero {
    padding-top: 0.4rem;
  }

  .home-hero__card {
    min-height: auto;
    border-radius: 2.8rem;
  }

  .home-hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.1) 22%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.02) 100%);
  }

  .home-hero__content {
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 1.65rem 1.35rem 1.1rem;
  }

  .home-hero__title {
    max-width: 8.8ch;
    font-size: clamp(2.95rem, 11.2vw, 4.2rem);
    line-height: 0.98;
  }

  .home-hero__text {
    margin-top: 0.8rem;
    max-width: 24ch;
    font-size: clamp(0.98rem, 4vw, 1.16rem);
    line-height: 1.4;
  }

  .home-hero__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .hero-pill {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
    min-height: 3.55rem;
    padding-right: 0.24rem;
    padding-left: 1.1rem;
    font-size: 0.92rem;
  }

  .hero-pill__arrow {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.1rem;
  }

  .home-hero__stats {
    justify-content: space-between;
    gap: 0.7rem;
  }

  .home-hero__stat {
    flex: 1 1 0;
  }

  .home-hero__stat dd {
    font-size: clamp(2.55rem, 10vw, 3.8rem);
  }

  .home-hero__stat dt {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .home-hero__social-proof {
    display: none;
  }

  .listing-hero {
    padding-top: 0.4rem;
  }

  .listing-hero__card {
    min-height: auto;
    border-radius: 2.8rem;
  }

  .listing-hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.1) 22%, rgba(0, 0, 0, 0.35) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 100%);
  }

  .listing-hero__content {
    gap: 1.2rem;
    padding: 1.65rem 1.35rem 1.1rem;
  }

  .listing-hero__title {
    max-width: 12ch;
    font-size: clamp(2.95rem, 11.2vw, 4.2rem);
    line-height: 0.98;
  }

  .listing-hero__text {
    margin-top: 0.8rem;
    max-width: 28ch;
    font-size: clamp(0.98rem, 4vw, 1.16rem);
    line-height: 1.4;
  }

  .listing-hero__subtext {
    max-width: 28ch;
    font-size: 0.9rem;
  }

  .listing-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .featured-properties {
    padding-top: 4rem;
  }

  .featured-properties__header {
    gap: 1.2rem;
  }

  .featured-properties__eyebrow {
    min-height: 1.6rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.88rem;
  }

  .featured-properties__title {
    max-width: none;
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
  }

  .featured-properties__intro {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .featured-properties__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .property-card__media,
  .property-card__media img {
    border-radius: 1.9rem;
  }

  .property-card__badges {
    top: 1rem;
    right: 1rem;
  }

  .property-card__badge {
    min-height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.86rem;
  }

  .property-card__location {
    margin-top: 0.75rem;
    font-size: 0.85rem;
  }

  .property-card__title {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .property-card__specs {
    gap: 0.5rem 0.8rem;
    margin-top: 0.6rem;
  }

  .property-card__specs li {
    font-size: 0.82rem;
  }

  .property-card__price {
    font-size: 1.05rem;
    margin-top: 0.6rem;
  }

  .featured-properties__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 2.25rem;
  }

  .featured-properties__cta {
    width: 100%;
    min-height: 3.7rem;
  }

  .home-about {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-top: 4rem;
  }

  .home-about__content {
    gap: 1.1rem;
    padding-right: 0;
  }

  .home-about__eyebrow {
    min-height: 1.6rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.88rem;
  }

  .home-about__title {
    max-width: none;
    font-size: clamp(1.9rem, 7vw, 2.45rem);
  }

  .home-about__text {
    max-width: 38ch;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .home-about__stats {
    gap: 1.3rem 1.4rem;
    margin-top: 1rem;
  }

  .home-about__stat dd {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .home-about__stat dt {
    font-size: 0.92rem;
  }

  .home-about__visual,
  .home-about__visual img {
    border-radius: 2rem;
  }

  .home-faq {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-top: 4rem;
  }

  .home-faq__header {
    gap: 1.1rem;
    position: static;
  }

  .home-faq__eyebrow {
    min-height: 1.6rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.88rem;
  }

  .home-faq__title {
    font-size: clamp(1.9rem, 7vw, 2.45rem);
  }

  .home-faq__question {
    padding: 1.4rem 0;
    font-size: 1.05rem;
  }

  .home-cta-contact {
    padding: 4rem clamp(1.2rem, 4vw, 2rem);
  }

  .home-cta-contact__title {
    font-size: clamp(1.75rem, 7vw, 2.6rem);
  }

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

  .home-cta-contact__row input:first-child {
    border-right: none;
  }

  .home-cta-contact__submit {
    width: calc(100% - 2rem);
    margin: 1.2rem 1rem;
  }

  .home-cta-contact__form input,
  .home-cta-contact__form textarea {
    padding: 1rem 1rem;
  }

  section > ul {
    grid-template-columns: 1fr;
  }

  article ul {
    flex-direction: column;
    gap: 0.35rem;
  }

  .property-card__specs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .catalogue-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
  }

  .catalogue-filter-toggle__label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text-secondary);
  }

  .catalogue-filter-toggle__chevron {
    flex-shrink: 0;
    color: var(--color-text-soft);
    transition: transform 200ms ease;
  }

  .catalogue-filter-toggle[aria-expanded="true"] .catalogue-filter-toggle__chevron {
    transform: rotate(180deg);
  }

  .catalogue-filter-row {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogue-filter-row.is-open {
    display: grid;
  }

  .catalogue-toolbar__meta,
  .catalogue-pagination {
    align-items: stretch;
    flex-direction: column;
  }

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

  section > p:last-of-type a,
  section > p:last-of-type a:last-child {
    margin: 0.35rem 0.35rem 0 0;
  }
}

/* ═══════════════════════════════════════════════
   PROPERTY DETAIL PAGE  (bien.php)
═══════════════════════════════════════════════ */

/* ─── Carousel ─────────────────────────────────── */
.prop-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-hero);
  margin-top: 1rem;
  background: #1a1a1a;
  user-select: none;
}

.prop-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.prop-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
}

.prop-carousel__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.prop-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.prop-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(4px);
}

.prop-carousel__btn:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.06);
}

.prop-carousel__btn--prev { left: 1.4rem; }
.prop-carousel__btn--next { right: 1.4rem; }

.prop-carousel__counter {
  position: absolute;
  bottom: 1.3rem;
  right: 1.6rem;
  z-index: 2;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ─── Two-column layout ─────────────────────────── */
.prop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-top: clamp(2rem, 3.5vw, 3rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

/* ─── Left column ───────────────────────────────── */
.prop-title {
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-transform: uppercase;
  max-width: none;
}

.prop-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  color: var(--color-text-secondary);
  font-size: 0.97rem;
  font-weight: 300;
}

.prop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--color-border);
}

.prop-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.97rem;
  font-weight: 300;
}

.prop-spec svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.prop-section {
  margin-top: clamp(1.8rem, 3vw, 2.8rem);
  padding-top: clamp(1.8rem, 3vw, 2.8rem);
  border-top: 1px solid var(--color-border);
}

.prop-section h2 {
  max-width: none;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-left: 0.9rem;
  border-left: 2.5px solid var(--color-orange);
}

.prop-desc {
  position: relative;
  max-height: 9rem;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.prop-desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.prop-desc.is-expanded {
  max-height: 200rem;
}

.prop-desc.is-expanded::after {
  opacity: 0;
}

.prop-desc p {
  max-width: none;
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.prop-desc p:last-child {
  margin-bottom: 0;
}

.prop-desc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-orange);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.prop-desc-toggle:hover {
  opacity: 0.75;
}

.prop-desc-toggle svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.prop-desc-toggle.is-expanded svg {
  transform: rotate(180deg);
}

/* ─── Feature pills ─────────────────────────────── */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

.feature-pill svg {
  flex-shrink: 0;
  opacity: 0.65;
}

/* ─── Map ────────────────────────────────────────── */
.prop-map-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  max-width: none;
}

.prop-map {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--color-surface);
}

.prop-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.prop-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.prop-map-link:hover {
  color: var(--color-text);
}

/* ─── Right sticky sidebar ──────────────────────── */
.prop-sidebar {
  position: sticky;
  top: 5.5rem;
}

.prop-cta-card {
  display: grid;
  gap: 0.15rem;
  padding: 1.8rem 1.65rem 1.65rem;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  background: var(--color-white);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.prop-cta-card__status {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: none;
  text-align: center;
}

.prop-cta-card__price {
  margin: 0.15rem 0 0.8rem;
  color: var(--color-orange);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  max-width: none;
  text-align: center;
}

.prop-cta-card__text {
  margin: 0 auto 1rem;
  color: var(--color-text-secondary);
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: center;
  max-width: 24ch;
}

.prop-cta-card__avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.prop-cta-card__avatar {
  width: 3rem;
  height: 3rem;
  margin-left: -0.7rem;
  border: 2.5px solid var(--color-white);
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-surface);
  flex-shrink: 0;
}

.prop-cta-card__avatar:first-child {
  margin-left: 0;
}

.prop-cta-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prop-cta-card__badge {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  max-width: none;
}

.prop-cta-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  font-weight: 300;
  max-width: none;
}

.prop-cta-card__stars span:first-child {
  color: #f4b941;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.prop-cta-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  border-radius: var(--radius-pill);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  transition: opacity 180ms ease, transform 180ms ease;
  text-decoration: none;
  border: none;
}

.prop-cta-card__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.prop-cta-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  margin-top: 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  font-weight: 300;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.prop-cta-card__wa:hover {
  border-color: #25d366;
  color: #19a34a;
}

/* ─── Similar properties (full width) ──────────── */
.prop-similar {
  padding-top: 0;
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.prop-similar__header {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.2rem);
}

.prop-similar__title {
  max-width: none;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  letter-spacing: -0.05em;
  line-height: 0.97;
  text-transform: uppercase;
}

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

.prop-similar__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.prop-similar__more .prop-cta-card__btn {
  padding-inline: 2.5rem;
  width: auto;
}

/* ─── Lightbox (kept from original) ────────────── */
.property-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-lightbox[hidden] {
  display: none;
}

.property-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  border: none;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.property-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92vw, 1200px);
  max-height: 92vh;
}

.property-lightbox__figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 90vh;
}

.property-lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 1rem;
}

.property-lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 180ms ease;
}

.property-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.property-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 180ms ease;
}

.property-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.26);
}

.property-lightbox__nav--prev { left: -4rem; }
.property-lightbox__nav--next { right: -4rem; }

body.is-lightbox-open {
  overflow: hidden;
}

/* ─── Responsive ─────────────────────────────────── */
@media (min-width: 810px) and (max-width: 1279px) {
  .prop-carousel {
    aspect-ratio: 16 / 8;
  }

  .prop-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
    gap: 2.5rem;
  }

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

@media (max-width: 809px) {
  .prop-carousel {
    aspect-ratio: 4 / 3;
    border-radius: 2rem;
    margin-top: 0.75rem;
  }

  .prop-carousel__btn {
    width: 2.6rem;
    height: 2.6rem;
  }

  .prop-carousel__btn--prev { left: 0.8rem; }
  .prop-carousel__btn--next { right: 0.8rem; }

  .prop-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 1.75rem;
    padding-bottom: 2.5rem;
  }

  .prop-sidebar {
    position: static;
    margin-top: 2rem;
  }

  .prop-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .prop-similar__grid {
    grid-template-columns: 1fr;
  }

  .prop-similar {
    padding-bottom: 2.5rem;
  }

  .property-lightbox__nav--prev { left: -0.5rem; }
  .property-lightbox__nav--next { right: -0.5rem; }

  .property-lightbox__nav {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1rem;
  }
}

/* ─── Share button (in CTA card) ────────────────── */
.prop-cta-card__share {
  border: none;
  background: transparent;
  cursor: pointer;
}

/* ─── Share modal ────────────────────────────────── */
.prop-share-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-share-modal[hidden] {
  display: none;
}

.prop-share-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.prop-share-dialog {
  position: relative;
  z-index: 1;
  width: min(90vw, 480px);
  padding: 1.75rem 1.75rem 2rem;
  background: var(--color-white);
  border-radius: 2rem;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.18);
}

.prop-share-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.prop-share-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--color-text);
}

.prop-share-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.prop-share-close:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.prop-share-url-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface, #f7f7f7);
}

.prop-share-url-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 0.86rem;
  font-weight: 300;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prop-share-copy-btn {
  flex-shrink: 0;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.prop-share-copy-btn:hover {
  opacity: 0.8;
}

.prop-share-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.prop-share-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  background: transparent;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.prop-share-platform:hover {
  border-color: transparent;
  background: var(--color-surface, #f7f7f7);
}

.prop-share-platform__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.prop-share-platform__icon--wa    { background: #e9fbed; color: #25d366; }
.prop-share-platform__icon--fb    { background: #e8f0fd; color: #1877f2; }
.prop-share-platform__icon--x     { background: #f0f0f0; color: #000; }
.prop-share-platform__icon--tg    { background: #e4f3fd; color: #0088cc; }
.prop-share-platform__icon--ig    { background: #fdeaf0; color: #e1306c; }
.prop-share-platform__icon--email { background: #f2f2f2; color: var(--color-text); }

.prop-share-platform:hover .prop-share-platform__icon--wa    { background: #25d366;  color: #fff; }
.prop-share-platform:hover .prop-share-platform__icon--fb    { background: #1877f2;  color: #fff; }
.prop-share-platform:hover .prop-share-platform__icon--x     { background: #000;     color: #fff; }
.prop-share-platform:hover .prop-share-platform__icon--tg    { background: #0088cc;  color: #fff; }
.prop-share-platform:hover .prop-share-platform__icon--ig    { background: linear-gradient(135deg, #fcb045, #fd1d1d, #833ab4); color: #fff; }
.prop-share-platform:hover .prop-share-platform__icon--email { background: var(--color-text); color: #fff; }

body.is-share-open {
  overflow: hidden;
}

/* ================================================================ ANIMATIONS */

/* ── Hero entrance (above-the-fold, runs on page load) ────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes karo-fade-up {
    from { opacity: 0; transform: translateY(2.2rem); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes karo-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .home-hero__title,
  .listing-hero__title {
    animation: karo-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .home-hero__text,
  .listing-hero__text {
    animation: karo-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }

  .listing-hero__subtext {
    animation: karo-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
  }

  .home-hero__actions,
  .listing-hero__actions {
    animation: karo-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
  }

  .home-hero__stats {
    animation: karo-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
  }

  .home-hero__social-proof {
    animation: karo-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
  }

  /* ── Scroll reveal base (only when JS has loaded) ───────────────────────── */
  .js-anim [data-reveal] {
    opacity: 0;
    transform: translateY(2.2rem);
    transition:
      opacity  0.78s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-delay, 0) * 1ms);
  }

  .js-anim [data-reveal="left"]  { transform: translateX(-2.4rem); }
  .js-anim [data-reveal="right"] { transform: translateX(2.4rem); }
  .js-anim [data-reveal="scale"] { transform: scale(0.93) translateY(1rem); }
  .js-anim [data-reveal="fade"]  { transform: none; }

  .js-anim [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }


  /* ── Hero pill hover ────────────────────────────────────────────────────── */
  .hero-pill {
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  }

  /* ── FAQ item entrance ──────────────────────────────────────────────────── */
  .home-faq__item {
    transition: background 180ms ease;
  }

  /* ── Featured CTA buttons ───────────────────────────────────────────────── */
  .featured-properties__cta {
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  }

  .featured-properties__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  /* ── Stat number pulse on appear ────────────────────────────────────────── */
  @keyframes karo-stat-pop {
    0%   { transform: scale(0.82); opacity: 0; }
    60%  { transform: scale(1.07); }
    100% { transform: scale(1);    opacity: 1; }
  }

  .js-anim .home-about__content.is-visible .home-about__stat dd {
    animation: karo-stat-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s both;
  }

  .js-anim .home-about__content.is-visible .home-about__stat:nth-child(2) dd { animation-delay: 0.43s; }
  .js-anim .home-about__content.is-visible .home-about__stat:nth-child(3) dd { animation-delay: 0.51s; }
  .js-anim .home-about__content.is-visible .home-about__stat:nth-child(4) dd { animation-delay: 0.59s; }
}

/* ================================================================ BIEN (property detail) */

/* ── Orange accent bar under title ──────────────────────────────────────── */
.prop-title-accent {
  width: 3.2rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-orange);
  margin-top: 1.1rem;
  transform-origin: left center;
}

/* ── Status dot pulse ────────────────────────────────────────────────────── */
.prop-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-orange);
  margin-right: 0.45rem;
  vertical-align: middle;
  flex-shrink: 0;
  animation: prop-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes prop-dot-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.78); }
}

/* ── Location icon tint ──────────────────────────────────────────────────── */
.prop-location svg {
  color: var(--color-orange);
  flex-shrink: 0;
}

/* ── Similar section title accent ────────────────────────────────────────── */
.prop-similar__title {
  padding-left: 0.9rem;
  border-left: 2.5px solid var(--color-orange);
}

@media (prefers-reduced-motion: no-preference) {
  /* ── Page load: carousel + header block ────────────────────────────────── */
  @keyframes karo-grow-x {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  .prop-carousel {
    animation: karo-fade-in 0.6s ease both;
  }

  .prop-title {
    animation: karo-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
  }

  .prop-title-accent {
    animation: karo-grow-x 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
  }

  .prop-location {
    animation: karo-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
  }

  .prop-specs {
    animation: karo-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
  }

  /* ── CTA card entrance ──────────────────────────────────────────────────── */
  .js-anim .prop-cta-card[data-reveal="right"] {
    transition-duration: 0.85s;
  }
}
