:root {
  --gold: #b8955a;
  --gold-light: #d4b483;
  --gold-pale: #f0e6d3;
  --cream: #faf7f2;
  --warm: #f4eee4;
  --warm2: #ede5d8;
  --sand: #e0d5c5;
  --bark: #8a7560;
  --text: #2a2218;
  --text-mid: #5a4e3c;
  --text-muted: #9a8e7e;
  --white: #ffffff;
  --nav-bg: rgba(250, 247, 242, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--text);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--warm);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 68px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 149, 90, 0.18);
  transition: box-shadow 0.3s;
}
.top-bar.scrolled {
  box-shadow: 0 2px 24px rgba(42, 34, 24, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.logo-main {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.logo-sub {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-left: 10px;
  align-self: center;
  padding-bottom: 1px;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
nav a:hover {
  color: var(--gold);
}
nav a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  letter-spacing: 0.18em;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--bark) !important;
}

#property-management {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1.1s ease,
    transform 8s ease;
}
.carousel-slide.out {
  opacity: 0;
  transition: opacity 1.1s ease;
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 247, 242, 0.04) 0%,
    rgba(42, 34, 24, 0.2) 40%,
    rgba(42, 34, 24, 0.7) 100%
  );
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 149, 90, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.carousel-arrow:hover {
  background: var(--white);
  border-color: var(--gold);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  stroke-width: 1.5;
  fill: none;
}
.carousel-arrow:hover svg {
  stroke: var(--gold);
}
.carousel-prev {
  left: 28px;
}
.carousel-next {
  right: 28px;
}
.carousel-dots {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.carousel-counter {
  position: absolute;
  bottom: 192px;
  right: 52px;
  z-index: 10;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  margin-top: -56px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 400;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(42, 34, 24, 0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
}
.hero-sub {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  max-width: 400px;
  margin: 0 auto 46px;
  line-height: 1.9;
}

.search-bar {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 149, 90, 0.22);
  box-shadow: 0 8px 48px rgba(42, 34, 24, 0.18);
  display: flex;
  align-items: stretch;
  animation: fadeUp 1.4s 0.15s ease both;
}
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 22px;
  min-width: 165px;
  border-right: 1px solid rgba(184, 149, 90, 0.14);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.search-field:hover {
  background: rgba(184, 149, 90, 0.04);
}
.search-field label {
  font-size: 8.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: 400;
}
.search-field input,
.search-field select {
  background: transparent;
  border: none;
  outline: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  width: 100%;
}
.search-field select option {
  background: var(--white);
  color: var(--text);
}
.search-field input::placeholder {
  color: var(--text-muted);
}

.ep-cta-strip {
  padding: 56px 0 56px;
  background: #1a1612;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.ep-cta-btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--white);
  background: transparent;
  padding: 18px 56px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  position: relative;
  overflow: hidden;
}
.ep-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.ep-cta-btn:hover {
  color: var(--text);
}
.ep-cta-btn:hover::before {
  transform: scaleX(1);
}
.ep-cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
  letter-spacing: 0.12em;
}

#why-us {
  background: var(--cream);
  padding: 56px 0 48px;
}
.why-header {
  text-align: center;
  margin-bottom: 44px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.why-card {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}
.why-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.why-card:hover .why-card-img img {
  transform: scale(1.05);
}
.why-card-body {
  padding: 32px 28px 36px;
}
.why-card-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 149, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.why-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.why-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.why-card-title em {
  font-style: italic;
  color: var(--gold);
}
.why-card-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
}
.why-card.featured {
  background: var(--text);
}
.why-card.featured .why-card-body {
  background: var(--text);
}
.why-card.featured .why-card-title {
  color: var(--gold-pale);
}
.why-card.featured .why-card-title em {
  color: var(--gold-light);
}
.why-card.featured .why-card-text {
  color: rgba(240, 230, 211, 0.6);
}
.why-card.featured .why-card-icon {
  border-color: rgba(184, 149, 90, 0.4);
  color: var(--gold-light);
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.why-tag {
  padding: 4px 12px;
  border: 1px solid rgba(184, 149, 90, 0.35);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.why-tag-light {
  border-color: rgba(184, 149, 90, 0.4);
  color: var(--gold-light);
}

.dates-display {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
}
.dates-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -60px;
  width: 680px;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.2);
  box-shadow: 0 16px 56px rgba(42, 34, 24, 0.18);
  display: none;
  z-index: 500;
  border-radius: 2px;
}
.dates-dropdown.open {
  display: block;
}

.cal-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 18px 0 0;
  margin-bottom: 0;
}
.cal-tab {
  padding: 9px 28px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  background: none;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 20px;
  margin: 0 4px;
}
.cal-tab.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.cal-panel {
  padding: 20px 28px 10px;
}
.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cal-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-month-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
}
.cal-nav-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 50%;
  transition: background 0.2s;
}
.cal-nav-btn:hover {
  background: var(--warm);
  color: var(--text);
}
.cal-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.cal-wd {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 4px 0;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
  border-radius: 50%;
  transition:
    background 0.15s,
    color 0.15s;
  position: relative;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}
.cal-day:hover:not(.cal-empty):not(.cal-past) {
  background: var(--gold-pale);
  color: var(--text);
}
.cal-day.cal-empty {
  cursor: default;
}
.cal-day.cal-past {
  color: var(--sand);
  cursor: default;
}
.cal-day.cal-start,
.cal-day.cal-end {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50%;
}
.cal-day.cal-inrange {
  background: var(--gold-pale);
  border-radius: 0;
  color: var(--text);
}
.cal-day.cal-start.cal-inrange-start {
  border-radius: 50% 0 0 50%;
}
.cal-day.cal-end.cal-inrange-end {
  border-radius: 0 50% 50% 0;
}
.cal-day.cal-today {
  font-weight: 500;
}
.cal-day.cal-today::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day.cal-start.cal-today::after,
.cal-day.cal-end.cal-today::after {
  display: none;
}

.cal-flex-row {
  display: flex;
  gap: 8px;
  padding: 14px 28px 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(184, 149, 90, 0.1);
  margin-top: 8px;
}
.cal-flex-pill {
  padding: 6px 16px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  border-radius: 20px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  color: var(--text-mid);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.cal-flex-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cal-flex-pill.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.flex-panel {
  padding: 24px 28px 24px;
}
.flex-section-title {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 16px;
  text-align: center;
}
.flex-dur-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.flex-dur-pill {
  padding: 9px 22px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  border-radius: 24px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: var(--text-mid);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.flex-dur-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.flex-dur-pill.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}
.flex-month-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-month-card {
  min-width: 88px;
  padding: 12px 10px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Jost", sans-serif;
}
.flex-month-card:hover {
  border-color: var(--gold);
}
.flex-month-card.active {
  border-color: var(--text);
  background: var(--warm);
}
.flex-month-card .fmc-month {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}
.flex-month-card .fmc-year {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}

.ep-stats {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.ep-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}
.ep-stat svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold-light);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.guests-display {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
}
.guests-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 296px;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.25);
  box-shadow: 0 12px 48px rgba(42, 34, 24, 0.14);
  display: none;
  z-index: 100;
}
.guests-dropdown.open {
  display: block;
}
.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.1);
}
.guest-row:last-child {
  border-bottom: none;
}
.guest-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}
.guest-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.guest-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}
.guest-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(184, 149, 90, 0.4);
  background: none;
  cursor: pointer;
  font-size: 17px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  line-height: 1;
}
.guest-btn:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.guest-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.guest-count {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  min-width: 18px;
  text-align: center;
}
.search-btn {
  background: var(--gold);
  border: none;
  padding: 0 38px;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.25s;
  white-space: nowrap;
}
.search-btn:hover {
  background: var(--bark);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  animation: fadeUp 1.8s 0.4s both;
  cursor: pointer;
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: sp 2.2s ease-in-out infinite;
}
@keyframes sp {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

section {
  padding: 110px 0;
}
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 52px;
}
.section-label {
  font-size: 9px;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 400;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-body {
  font-size: 14px;
  line-height: 2;
  color: var(--text-muted);
  max-width: 500px;
}
.gold-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
  opacity: 0.6;
}
.gold-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.18;
}

#exclusive-properties {
  background: #1a1612;
  padding: 100px 0;
}
.ep-header {
  text-align: center;
  margin-bottom: 64px;
}
.ep-label {
  font-size: 9px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 14px;
}
.ep-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1;
}
.ep-title em {
  font-style: italic;
  color: var(--gold-light);
}
.ep-subtitle {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 14px;
}

.ep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 52px;
}

.ep-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #111;
}

.ep-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition:
    opacity 1s ease,
    transform 7s ease;
  transform: scale(1.05);
}
.ep-slide.active {
  opacity: 1;
  transform: scale(1);
}

.ep-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(20, 15, 10, 0.82) 100%
  );
  transition: background 0.4s;
}
.ep-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(20, 15, 10, 0.2) 0%,
    rgba(20, 15, 10, 0.75) 100%
  );
}

.ep-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 28px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ep-cat {
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 7px;
}
.ep-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  transition: letter-spacing 0.3s;
}
.ep-card:hover .ep-name {
  letter-spacing: 0.04em;
}

.ep-card-arrows {
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.ep-card:hover .ep-card-arrows {
  opacity: 1;
}
.ep-card-btn {
  width: 38px;
  height: 38px;
  background: rgba(250, 247, 242, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(184, 149, 90, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.ep-card-btn:hover {
  background: rgba(184, 149, 90, 0.3);
  border-color: var(--gold);
}
.ep-card-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

.ep-card-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 7px;
}
.ep-card-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.ep-card-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.ep-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  z-index: 4;
  border: 1px solid rgba(184, 149, 90, 0.6);
  color: var(--gold-pale);
  padding: 11px 28px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: rgba(20, 15, 10, 0.45);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.35s,
    transform 0.35s;
  white-space: nowrap;
}
.ep-card:hover .ep-view-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#landlords {
  background: var(--warm);
}
.landlords-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.landlords-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.landlords-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.landlords-img:hover img {
  transform: scale(1.04);
}
.landlords-img::before {
  content: "";
  position: absolute;
  inset: 14px 14px -14px -14px;
  border: 1px solid rgba(184, 149, 90, 0.28);
  z-index: -1;
}
.feature-list {
  list-style: none;
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
}
.feature-list li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.btn-outline {
  display: inline-block;
  margin-top: 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 32px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

#tenants {
  background: var(--cream);
}
.tenants-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.tenant-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(42, 34, 24, 0.1);
}
.tenant-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.72);
  transition:
    transform 0.7s,
    filter 0.4s;
}
.tenant-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.55);
}
.tenant-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(
    to top,
    rgba(42, 34, 24, 0.88) 0%,
    transparent 100%
  );
}
.tenant-card-tag {
  font-size: 8.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.tenant-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.tenant-card-price {
  font-size: 12px;
  color: var(--gold-pale);
  margin-top: 7px;
  letter-spacing: 0.05em;
}

#investors {
  background: var(--warm2);
}
.investors-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(184, 149, 90, 0.18);
  margin-top: 42px;
}
.stat-item {
  padding: 26px 22px;
  background: var(--warm2);
  transition: background 0.25s;
}
.stat-item:hover {
  background: var(--warm);
}
.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
}
.stat-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.investors-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.investors-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#our-team {
  background: var(--cream);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 58px;
}
.team-card {
  overflow: hidden;
}
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition:
    transform 0.6s,
    filter 0.4s;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
  filter: saturate(1);
}
.team-info {
  padding: 16px 0 0;
}
.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

#blog {
  background: var(--warm);
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}
.blog-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand);
}
.blog-card:first-child {
  aspect-ratio: 5/4;
}
.blog-card:not(:first-child) {
  aspect-ratio: 3/4;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
  transition:
    transform 0.7s,
    filter 0.4s;
}
.blog-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.48);
}
.blog-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(
    to top,
    rgba(42, 34, 24, 0.88) 0%,
    transparent 100%
  );
}
.blog-date {
  font-size: 8.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.blog-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
}
.blog-card:first-child .blog-title {
  font-size: 24px;
}
.blog-card:not(:first-child) .blog-title {
  font-size: 17px;
}

#contact {
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: flex-start;
}
.contact-info-items {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 149, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 13px;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.contact-icon svg:not(.icon-fill) {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.contact-icon svg.icon-fill {
  fill: currentColor;
  stroke: none;
  width: 16px;
  height: 16px;
}
.contact-item-label {
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-item-value {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-item-value a {
  color: inherit;
  text-decoration: none;
}
.contact-item-value a:hover {
  color: var(--gold);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.24);
  padding: 13px 15px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group select option {
  background: var(--white);
}
.form-group textarea {
  height: 110px;
}
.form-submit {
  background: var(--gold);
  border: none;
  padding: 14px 44px;
  font-family: "Jost", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--bark);
}

footer {
  background: var(--text);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 46px;
}
.footer-about {
  font-size: 13px;
  line-height: 2;
  color: rgba(240, 230, 211, 0.55);
  margin-top: 18px;
}
.footer-col-title {
  font-size: 8.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(240, 230, 211, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  color: rgba(240, 230, 211, 0.3);
  letter-spacing: 0.08em;
}

.floating-btns {
  position: fixed;
  right: 22px;
  bottom: 36px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(42, 34, 24, 0.22);
  text-decoration: none;
  font-size: 19px;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(42, 34, 24, 0.3);
}
.float-btn.whatsapp {
  background: #25d366;
}
.float-btn.telegram {
  background: #229ed9;
}
.float-btn.chatbot {
  background: var(--gold);
  color: var(--white);
}
.chatbot-popup {
  position: fixed;
  right: 78px;
  bottom: 36px;
  z-index: 299;
  width: 286px;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.25);
  box-shadow: 0 14px 44px rgba(42, 34, 24, 0.14);
  padding: 22px;
  display: none;
  animation: slideIn 0.3s ease;
}
.chatbot-popup.open {
  display: block;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.chatbot-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 5px;
}
.chatbot-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}
.chatbot-input-row {
  display: flex;
  gap: 8px;
}
.chatbot-input-row input {
  flex: 1;
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.25);
  padding: 9px 12px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: var(--text);
  outline: none;
}
.chatbot-send {
  background: var(--gold);
  border: none;
  padding: 9px 13px;
  cursor: pointer;
  font-size: 14px;
  color: var(--white);
  transition: background 0.25s;
}
.chatbot-send:hover {
  background: var(--bark);
}

@media (max-width: 900px) {
  .top-bar {
    padding: 0 20px;
  }
  nav {
    display: none;
  }
  .ep-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .landlords-grid,
  .investors-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .tenants-cards,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card:first-child,
  .blog-card:not(:first-child) {
    aspect-ratio: 3/2;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .search-bar {
    flex-direction: column;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(184, 149, 90, 0.14);
  }
  .container {
    padding: 0 20px;
  }
  .carousel-arrow {
    display: none;
  }
}

#details-strip {
  background: var(--cream);
  padding: 0 0 56px;
}
.details-subhead {
  text-align: center;
  margin: 36px 0 0;
}
.details-subhead .section-title {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 10px;
}
.details-subhead .section-body {
  font-size: 13px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px !important;
  border: 1px solid rgba(184, 149, 90, 0.12);
}
.detail-item {
  padding: 28px 24px 24px;
  border-right: 1px solid rgba(184, 149, 90, 0.12);
  transition: background 0.25s;
  position: relative;
}
.detail-item:last-child {
  border-right: none;
}
.detail-item:hover {
  background: var(--warm);
}
.detail-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--gold);
}
.detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.detail-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.detail-text {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-muted);
}
.detail-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: rgba(184, 149, 90, 0.08);
  line-height: 1;
  pointer-events: none;
}

#reviews {
  background: #16120e;
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
#reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(184, 149, 90, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.reviews-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.reviews-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 58px);
  color: #faf7f2;
  line-height: 1.05;
}
.reviews-title em {
  font-style: italic;
  color: var(--gold-light);
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 22px 0 60px;
  position: relative;
  z-index: 2;
}
.reviews-agg-stars {
  display: flex;
  gap: 4px;
}
.reviews-agg-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  stroke: none;
}
.reviews-agg-score {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-light);
}
.reviews-agg-sep {
  width: 1px;
  height: 18px;
  background: rgba(184, 149, 90, 0.3);
}
.reviews-agg-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.4);
}

.reviews-track-outer {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 52px;
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 149, 90, 0.15);
  padding: 40px 36px 36px;
  position: relative;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.review-card:hover {
  border-color: rgba(184, 149, 90, 0.35);
  background: rgba(255, 255, 255, 0.07);
}
.review-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 18px;
  display: block;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  stroke: none;
}
.review-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(240, 230, 211, 0.88);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}
.review-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.7);
}
.review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.review-property {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.review-platform {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(240, 230, 211, 0.3);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.reviews-nav-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.reviews-nav-btn:hover {
  background: rgba(184, 149, 90, 0.15);
  border-color: var(--gold);
}
.reviews-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: rgba(240, 230, 211, 0.7);
  stroke-width: 1.5;
  fill: none;
}
.reviews-nav-btn:hover svg {
  stroke: var(--gold);
}
.reviews-nav-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(184, 149, 90, 0.3);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.reviews-nav-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  font-family: "Jost", sans-serif;
}
.platform-badge.airbnb {
  background: #ff5a5f;
  color: #fff;
}
.platform-badge.airbnb svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}
.platform-badge.booking {
  background: #003580;
  color: #fff;
}
.platform-badge.booking svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.platform-badge.direct {
  background: var(--gold);
  color: var(--text);
}
.platform-badge.direct svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  fill: none;
  flex-shrink: 0;
  stroke-width: 2;
}
.review-date {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(240, 230, 211, 0.3);
  margin-top: 3px;
  text-align: right;
}

.review-footer {
  border-top: 1px solid rgba(184, 149, 90, 0.15);
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(184, 149, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--gold-light);
  text-transform: uppercase;
}
.review-footer-info {
  flex: 1;
}
.review-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.85);
  display: block;
  margin-bottom: 3px;
}
.review-property {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  display: block;
}

#landlords {
  background: var(--warm);
  padding: 110px 0;
}

.landlords-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.income-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 72px;
}
.income-card {
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.income-card.guaranteed {
  background: var(--text);
}
.income-card.percentage {
  background: var(--warm2);
  border: 1px solid rgba(184, 149, 90, 0.2);
}
.income-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  margin-bottom: 28px;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
}
.income-badge.badge-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.income-badge.badge-dark {
  border: 1px solid rgba(184, 149, 90, 0.35);
  color: var(--gold);
}
.income-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 6px;
}
.income-card.guaranteed .income-card-title {
  color: var(--white);
}
.income-card.percentage .income-card-title {
  color: var(--text);
}
.income-card-sub {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.income-card.guaranteed .income-card-sub {
  color: var(--gold-light);
}
.income-card.percentage .income-card-sub {
  color: var(--gold);
}
.income-divider {
  width: 40px;
  height: 1px;
  margin-bottom: 24px;
}
.income-card.guaranteed .income-divider {
  background: rgba(184, 149, 90, 0.5);
}
.income-card.percentage .income-divider {
  background: rgba(184, 149, 90, 0.4);
}
.income-card-desc {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 28px;
}
.income-card.guaranteed .income-card-desc {
  color: rgba(240, 230, 211, 0.7);
}
.income-card.percentage .income-card-desc {
  color: var(--text-muted);
}
.income-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.income-perks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
}
.income-perks li::before {
  content: "✓";
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 600;
}
.income-card.guaranteed .income-perks li {
  color: rgba(240, 230, 211, 0.75);
}
.income-card.guaranteed .income-perks li::before {
  color: var(--gold);
}
.income-card.percentage .income-perks li {
  color: var(--text-mid);
}
.income-card.percentage .income-perks li::before {
  color: var(--gold);
}
.income-card-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.peace-header {
  text-align: center;
  margin-bottom: 52px;
}
.peace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.peace-item {
  background: var(--cream);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.25s;
}
.peace-item:hover {
  background: var(--white);
}
.peace-item-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  color: var(--gold);
}
.peace-item-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
}
.peace-item-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.peace-item-text {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--text-muted);
}
.landlords-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landlords-cta-note {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 14px;
}

.collaborate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.collab-card {
  background: var(--warm);
  padding: 44px 40px;
  transition: background 0.25s;
}
.collab-card:hover {
  background: var(--warm2);
}
.collab-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--gold);
}
.collab-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
}
.collab-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.collab-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
}

.section-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 40px auto 0;
  width: fit-content;
  align-self: center;
  color: var(--text-muted);
  font-size: 8.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.section-scroll:hover {
  color: var(--gold);
}
.section-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: sp 2.2s ease-in-out infinite;
}
.section-scroll:hover .section-scroll-line {
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.section-scroll.light {
  color: rgba(240, 230, 211, 0.4);
}
.section-scroll.light:hover {
  color: var(--gold-light);
}
.section-scroll.light .section-scroll-line {
  background: linear-gradient(to bottom, rgba(184, 149, 90, 0.7), transparent);
}

.phone-field {
  display: flex;
  gap: 0;
}
.phone-code {
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.24);
  border-right: none;
  padding: 13px 12px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  width: 160px;
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239A8E7E' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.phone-code:focus {
  border-color: var(--gold);
  outline: none;
}
.phone-number {
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.24);
  padding: 13px 15px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  flex: 1;
  transition: border-color 0.25s;
}
.phone-number:focus {
  border-color: var(--gold);
}
.phone-number::placeholder {
  color: var(--text-muted);
}

.contact-social {
  margin-top: 32px;
}
.contact-social-label {
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.contact-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.contact-social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 149, 90, 0.06);
}
.contact-social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.lang-switcher {
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(184, 149, 90, 0.2);
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  padding: 4px 6px;
  border: none;
  background: none;
  font-family: "Jost", sans-serif;
  transition: color 0.2s;
}
.lang-trigger svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.25s;
}
.lang-trigger.open svg {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.2);
  box-shadow: 0 8px 32px rgba(42, 34, 24, 0.12);
  min-width: 80px;
  display: none;
  z-index: 300;
}
.lang-dropdown.open {
  display: block;
}
.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Jost", sans-serif;
  text-align: left;
  transition:
    background 0.2s,
    color 0.2s;
  border-bottom: 1px solid rgba(184, 149, 90, 0.08);
}
.lang-option:last-child {
  border-bottom: none;
}
.lang-option:hover {
  background: var(--warm);
  color: var(--gold);
}
.lang-option.active {
  color: var(--gold);
}

.inl-index-1 {
  display: flex;
  align-items: center;
  color: var(--text);
}
.inl-index-2 {
  height: 44px;
  width: auto;
}
.inl-index-3 {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.inl-index-4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.inl-index-5 {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.inl-index-6 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=85");
}
.inl-index-7 {
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1800&q=85");
}
.inl-index-8 {
  background-image: url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800&q=85");
}
.inl-index-9 {
  background-image: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1800&q=85");
}
.inl-index-10 {
  background-image: url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1800&q=85");
}
.inl-index-11 {
  min-width: 220px;
  position: relative;
  user-select: none;
}
.inl-index-12 {
  display: none;
}
.inl-index-13 {
  min-width: 210px;
  position: relative;
  user-select: none;
}
.inl-index-14 {
  cursor: pointer;
}
.inl-index-15 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1200&q=85");
}
.inl-index-16 {
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1200&q=85");
}
.inl-index-17 {
  background-image: url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1200&q=85");
}
.inl-index-18 {
  background-image: url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1200&q=85");
}
.inl-index-19 {
  background-image: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1200&q=85");
}
.inl-index-20 {
  background-image: url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1200&q=85");
}
.inl-index-21 {
  background-image: url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1200&q=85");
}
.inl-index-22 {
  background-image: url("https://images.unsplash.com/photo-1564078516393-cf04bd966897?w=1200&q=85");
}
.inl-index-23 {
  background-image: url("https://images.unsplash.com/photo-1560185127-6a209f7b1cba?w=1200&q=85");
}
.inl-index-24 {
  background-image: url("https://images.unsplash.com/photo-1519974719765-e6559eac2575?w=1200&q=85");
}
.inl-index-25 {
  background-image: url("https://images.unsplash.com/photo-1534430480872-3498386e7856?w=1200&q=85");
}
.inl-index-26 {
  background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=85");
}
.inl-index-27 {
  width: 100%;
  background: #1a1612;
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-column: 1/-1;
}
.inl-index-28 {
  margin-top: 16px;
}
.inl-index-29 {
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inl-index-30 {
  text-align: center;
}
.inl-index-31 {
  margin: 20px auto;
}
.inl-index-32 {
  margin: 0 auto;
  text-align: center;
}
.inl-index-33 {
  text-align: center;
}
.inl-index-34 {
  text-align: center;
  margin-top: 8px;
}
.inl-index-35 {
  margin: 20px auto;
}
.inl-index-36 {
  margin: 0 auto;
  text-align: center;
}
.inl-index-37 {
  text-align: center;
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inl-index-38 {
  margin-top: 0;
}
.inl-index-39 {
  color: var(--gold);
}
.inl-index-40 {
  line-height: 0.5;
  margin-bottom: 0;
}
.inl-index-41 {
  text-align: right;
}
.inl-index-42 {
  margin-bottom: 18px;
}
.inl-index-43 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-44 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-45 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-46 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-47 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-48 {
  line-height: 0.5;
  margin-bottom: 0;
}
.inl-index-49 {
  text-align: right;
}
.inl-index-50 {
  margin-bottom: 18px;
}
.inl-index-51 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-52 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-53 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-54 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-55 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-56 {
  line-height: 0.5;
  margin-bottom: 0;
}
.inl-index-57 {
  text-align: right;
}
.inl-index-58 {
  margin-bottom: 18px;
}
.inl-index-59 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-60 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-61 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-62 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-63 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-64 {
  line-height: 0.5;
  margin-bottom: 0;
}
.inl-index-65 {
  text-align: right;
}
.inl-index-66 {
  margin-bottom: 18px;
}
.inl-index-67 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-68 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-69 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-70 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-71 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-72 {
  line-height: 0.5;
  margin-bottom: 0;
}
.inl-index-73 {
  text-align: right;
}
.inl-index-74 {
  margin-bottom: 18px;
}
.inl-index-75 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-76 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-77 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-78 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-79 {
  width: 12px;
  height: 12px;
  fill: #003580;
  stroke: none;
}
.inl-index-80 {
  line-height: 0.5;
  margin-bottom: 0;
}
.inl-index-81 {
  text-align: right;
}
.inl-index-82 {
  margin-bottom: 18px;
}
.inl-index-83 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-84 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-85 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-86 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-87 {
  width: 12px;
  height: 12px;
  fill: #c9a96e;
  stroke: none;
}
.inl-index-88 {
  text-align: center;
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inl-index-89 {
  margin-top: 0;
  border-color: rgba(184, 149, 90, 0.5);
  color: var(--gold-light);
}
.inl-index-90 {
  margin-top: 28px;
}
.inl-index-91 {
  text-align: center;
}
.inl-index-92 {
  margin: 22px auto;
}
.inl-index-93 {
  text-align: center;
  margin: 0 auto;
}
.inl-index-94 {
  width: 11px;
  height: 11px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}
.inl-index-95 {
  width: 11px;
  height: 11px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}
.inl-index-96 {
  text-align: center;
}
.inl-index-97 {
  text-align: center;
}
.inl-index-98 {
  margin: 20px auto;
}
.inl-index-99 {
  text-align: center;
  margin: 0 auto;
}
.inl-index-100 {
  margin-top: 0;
}
.inl-index-101 {
  background: #1a1612;
  padding: 100px 0;
}
.inl-index-102 {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1200&q=85");
}
.inl-index-103 {
  background-image: url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1200&q=85");
}
.inl-index-104 {
  background-image: url("https://images.unsplash.com/photo-1560185007-cde436f6a4d0?w=1200&q=85");
}
.inl-index-105 {
  background-image: url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1200&q=85");
}
.inl-index-106 {
  background-image: url("https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1200&q=85");
}
.inl-index-107 {
  background-image: url("https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?w=1200&q=85");
}
.inl-index-108 {
  background-image: url("https://images.unsplash.com/photo-1554995207-c18c203602cb?w=1200&q=85");
}
.inl-index-109 {
  background-image: url("https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1200&q=85");
}
.inl-index-110 {
  background-image: url("https://images.unsplash.com/photo-1560185127-6a209f7b1cba?w=1200&q=85");
}
.inl-index-111 {
  background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=85");
}
.inl-index-112 {
  background-image: url("https://images.unsplash.com/photo-1564078516393-cf04bd966897?w=1200&q=85");
}
.inl-index-113 {
  background-image: url("https://images.unsplash.com/photo-1600121848594-d8644e57abab?w=1200&q=85");
}
.inl-index-114 {
  width: 100%;
  background: #1a1612;
  padding: 48px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-column: 1/-1;
}
.inl-index-115 {
  margin-top: 16px;
}
.inl-index-116 {
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inl-index-117 {
  width: 14px;
  height: 14px;
  fill: #b8955a;
}
.inl-index-118 {
  color: inherit;
  text-decoration: none;
}
.inl-index-119 {
  margin-top: 28px;
  align-self: stretch;
}
.inl-index-120 {
  display: inline-flex;
  align-items: center;
  color: var(--gold-pale);
}
.inl-index-121 {
  height: 44px;
  width: auto;
}
.inl-index-122 {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.inl-contact-1 {
  display: flex;
  align-items: center;
  color: var(--text);
}
.inl-contact-2 {
  height: 44px;
  width: auto;
}
.inl-contact-3 {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.inl-contact-4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.inl-contact-5 {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.inl-contact-6 {
  padding-top: 68px;
}
.inl-contact-7 {
  width: 14px;
  height: 14px;
  fill: #b8955a;
}
.inl-contact-8 {
  color: inherit;
  text-decoration: none;
}
.inl-contact-9 {
  margin-top: 28px;
  align-self: stretch;
}
.inl-contact-10 {
  display: inline-flex;
  align-items: center;
  color: var(--gold-pale);
}
.inl-contact-11 {
  height: 44px;
  width: auto;
}
.inl-contact-12 {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.inl-landlors-1 {
  display: flex;
  align-items: center;
  color: var(--text);
}
.inl-landlors-2 {
  height: 44px;
  width: auto;
}
.inl-landlors-3 {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.inl-landlors-4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.inl-landlors-5 {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.inl-landlors-6 {
  padding-top: 68px;
}
.inl-landlors-7 {
  text-align: center;
}
.inl-landlors-8 {
  margin: 22px auto;
}
.inl-landlors-9 {
  text-align: center;
  margin: 0 auto;
}
.inl-landlors-10 {
  width: 11px;
  height: 11px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}
.inl-landlors-11 {
  width: 11px;
  height: 11px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}
.inl-landlors-12 {
  text-align: center;
}
.inl-landlors-13 {
  text-align: center;
}
.inl-landlors-14 {
  margin: 20px auto;
}
.inl-landlors-15 {
  text-align: center;
  margin: 0 auto;
}
.inl-landlors-16 {
  margin-top: 0;
}
.inl-landlors-17 {
  display: inline-flex;
  align-items: center;
  color: var(--gold-pale);
}
.inl-landlors-18 {
  height: 44px;
  width: auto;
}
.inl-landlors-19 {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 26px;
  min-width: 165px;
  border-right: 1px solid rgba(184, 149, 90, 0.14);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.ep-cta-strip {
  text-align: center;
  padding: 56px 0 72px;
  background: #1a1612;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  animation: fadeUp 1.8s 0.4s both;
}
#details-strip {
  background: var(--cream);
  padding: 0 0 96px;
}
.details-subhead {
  text-align: center;
  margin: 48px 0 0;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.detail-item {
  padding: 44px 40px;
  border-right: 1px solid rgba(184, 149, 90, 0.15);
  border-bottom: 1px solid rgba(184, 149, 90, 0.15);
  transition: background 0.3s;
  position: relative;
}
.detail-item:nth-child(2n) {
  border-right: none;
}
.detail-item:nth-child(3),
.detail-item:nth-child(4) {
  border-bottom: none;
}
.detail-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--gold);
}
.detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}
.detail-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.detail-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
}
.detail-num {
  position: absolute;
  top: 40px;
  right: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: rgba(184, 149, 90, 0.1);
  line-height: 1;
  pointer-events: none;
}
.landlords-cta {
  text-align: center;
  margin-top: 60px;
}
.inl-blogs-1 {
  height: 40px;
}
.inl-blogs-2 {
  padding-top: 140px;
}
.inl-blogs-3 {
  margin-top: 0;
}
.inl-blogs-4 {
  background: var(--text);
  padding: 32px 0;
}
.inl-blogs-5 {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(240, 230, 211, 0.3);
  letter-spacing: 0.08em;
}
.inl-blogs-6 {
  color: var(--gold);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 26px;
  min-width: 165px;
  border-right: 1px solid rgba(184, 149, 90, 0.14);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.ep-cta-strip {
  text-align: center;
  padding: 56px 0 72px;
  background: #1a1612;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  animation: fadeUp 1.8s 0.4s both;
}
#details-strip {
  background: var(--cream);
  padding: 0 0 96px;
}
.details-subhead {
  text-align: center;
  margin: 48px 0 0;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.detail-item {
  padding: 44px 40px;
  border-right: 1px solid rgba(184, 149, 90, 0.15);
  border-bottom: 1px solid rgba(184, 149, 90, 0.15);
  transition: background 0.3s;
  position: relative;
}
.detail-item:nth-child(2n) {
  border-right: none;
}
.detail-item:nth-child(3),
.detail-item:nth-child(4) {
  border-bottom: none;
}
.detail-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--gold);
}
.detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}
.detail-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.detail-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
}
.detail-num {
  position: absolute;
  top: 40px;
  right: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: rgba(184, 149, 90, 0.1);
  line-height: 1;
  pointer-events: none;
}
.landlords-cta {
  text-align: center;
  margin-top: 60px;
}
.inl-team-1 {
  height: 40px;
}
.inl-team-2 {
  padding-top: 140px;
}
.inl-team-3 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.inl-team-4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 52px;
  color: var(--text);
  line-height: 1;
}
.inl-team-5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 52px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.inl-team-6 {
  text-align: center;
  margin-top: 52px;
}
.inl-team-7 {
  margin-top: 0;
}
.inl-team-8 {
  background: var(--text);
  padding: 32px 0;
}
.inl-team-9 {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(240, 230, 211, 0.3);
  letter-spacing: 0.08em;
}
.inl-team-10 {
  color: var(--gold);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 26px;
  min-width: 165px;
  border-right: 1px solid rgba(184, 149, 90, 0.14);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.ep-cta-strip {
  text-align: center;
  padding: 56px 0 72px;
  background: #1a1612;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  animation: fadeUp 1.8s 0.4s both;
}
#details-strip {
  background: var(--cream);
  padding: 0 0 96px;
}
.details-subhead {
  text-align: center;
  margin: 48px 0 0;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.detail-item {
  padding: 44px 40px;
  border-right: 1px solid rgba(184, 149, 90, 0.15);
  border-bottom: 1px solid rgba(184, 149, 90, 0.15);
  transition: background 0.3s;
  position: relative;
}
.detail-item:nth-child(2n) {
  border-right: none;
}
.detail-item:nth-child(3),
.detail-item:nth-child(4) {
  border-bottom: none;
}
.detail-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--gold);
}
.detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}
.detail-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.detail-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
}
.detail-num {
  position: absolute;
  top: 40px;
  right: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: rgba(184, 149, 90, 0.1);
  line-height: 1;
  pointer-events: none;
}
.landlords-cta {
  text-align: center;
  margin-top: 60px;
}
.inl-investors-1 {
  height: 40px;
}
.inl-investors-2 {
  background: var(--text);
  padding: 32px 0;
}
.inl-investors-3 {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(240, 230, 211, 0.3);
  letter-spacing: 0.08em;
}
.inl-investors-4 {
  color: var(--gold);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 26px;
  min-width: 165px;
  border-right: 1px solid rgba(184, 149, 90, 0.14);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.ep-cta-strip {
  text-align: center;
  padding: 56px 0 72px;
  background: #1a1612;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  animation: fadeUp 1.8s 0.4s both;
}
#details-strip {
  background: var(--cream);
  padding: 0 0 96px;
}
.details-subhead {
  text-align: center;
  margin: 48px 0 0;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.detail-item {
  padding: 44px 40px;
  border-right: 1px solid rgba(184, 149, 90, 0.15);
  border-bottom: 1px solid rgba(184, 149, 90, 0.15);
  transition: background 0.3s;
  position: relative;
}
.detail-item:nth-child(2n) {
  border-right: none;
}
.detail-item:nth-child(3),
.detail-item:nth-child(4) {
  border-bottom: none;
}
.detail-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--gold);
}
.detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}
.detail-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.detail-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
}
.detail-num {
  position: absolute;
  top: 40px;
  right: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: rgba(184, 149, 90, 0.1);
  line-height: 1;
  pointer-events: none;
}
.landlords-cta {
  text-align: center;
  margin-top: 60px;
}
.inl-collobarete-1 {
  height: 40px;
}
.inl-collobarete-2 {
  background: var(--cream);
  padding: 140px 0 110px;
}
.inl-collobarete-3 {
  text-align: center;
}
.inl-collobarete-4 {
  text-align: center;
}
.inl-collobarete-5 {
  margin: 22px auto;
}
.inl-collobarete-6 {
  text-align: center;
  margin: 0 auto 64px;
}
.inl-collobarete-7 {
  text-align: center;
  margin-top: 56px;
}
.inl-collobarete-8 {
  margin-top: 0;
}
.inl-collobarete-9 {
  background: var(--text);
  padding: 32px 0;
}
.inl-collobarete-10 {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(240, 230, 211, 0.3);
  letter-spacing: 0.08em;
}
.inl-collobarete-11 {
  color: var(--gold);
}

.inl-search-1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 68px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 149, 90, 0.18);
  transition: box-shadow 0.3s;
}
.inl-search-1.scrolled {
  box-shadow: 0 2px 24px rgba(42, 34, 24, 0.1);
}
.inl-search-2 {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.carousel-slide.inl-search-9 {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1.1s ease,
    transform 8s ease;
}
.carousel-dot.inl-search-9 {
  background: var(--gold);
  transform: scale(1.4);
}
.inl-search-3 {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 149, 90, 0.22);
  box-shadow: 0 8px 48px rgba(42, 34, 24, 0.18);
  display: flex;
  align-items: stretch;
  animation: fadeUp 1.4s 0.15s ease both;
}
.inl-search-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 22px;
  min-width: 165px;
  border-right: 1px solid rgba(184, 149, 90, 0.14);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.inl-search-4:hover {
  background: rgba(184, 149, 90, 0.04);
}
.inl-search-4 label {
  font-size: 8.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: 400;
}
.inl-search-4 input,
.inl-search-4 select {
  background: transparent;
  border: none;
  outline: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  width: 100%;
}
.inl-search-4 select option {
  background: var(--white);
  color: var(--text);
}
.inl-search-4 input::placeholder {
  color: var(--text-muted);
}
.inl-search-5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
}
.inl-search-6 {
  position: absolute;
  top: calc(100% + 6px);
  left: -60px;
  width: 680px;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.2);
  box-shadow: 0 16px 56px rgba(42, 34, 24, 0.18);
  display: none;
  z-index: 500;
  border-radius: 2px;
}
.inl-search-6.inl-search-45 {
  display: block;
}
.inl-search-7 {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 18px 0 0;
  margin-bottom: 0;
}
.inl-search-8 {
  padding: 9px 28px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  background: none;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 20px;
  margin: 0 4px;
}
.inl-search-8.inl-search-9 {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}
.inl-search-10 {
  padding: 20px 28px 10px;
}
.inl-search-11 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cal-month {
}
.inl-search-12 {
  display: flex;
  gap: 8px;
  padding: 14px 28px 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(184, 149, 90, 0.1);
  margin-top: 8px;
}
.inl-search-13 {
  padding: 6px 16px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  border-radius: 20px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  color: var(--text-mid);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.inl-search-13:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.inl-search-13.inl-search-9 {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}
.inl-search-14 {
  padding: 24px 28px 24px;
}
.inl-search-15 {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 16px;
  text-align: center;
}
.inl-search-16 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.inl-search-17 {
  padding: 9px 22px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  border-radius: 24px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: var(--text-mid);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.inl-search-17:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.inl-search-17.inl-search-9 {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}
.inl-search-18 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-month-card.inl-search-9 {
  border-color: var(--text);
  background: var(--warm);
}
.inl-search-19 {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
}
.inl-search-20 {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 296px;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.25);
  box-shadow: 0 12px 48px rgba(42, 34, 24, 0.14);
  display: none;
  z-index: 100;
}
.inl-search-20.inl-search-45 {
  display: block;
}
.inl-search-21 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.1);
}
.inl-search-21:last-child {
  border-bottom: none;
}
.inl-search-22 {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}
.inl-search-23 {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.inl-search-24 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.inl-search-25 {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(184, 149, 90, 0.4);
  background: none;
  cursor: pointer;
  font-size: 17px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  line-height: 1;
}
.inl-search-25:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.inl-search-25:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.inl-search-26 {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  min-width: 18px;
  text-align: center;
}
.inl-search-27 {
  background: var(--gold);
  border: none;
  padding: 0 38px;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.25s;
  white-space: nowrap;
}
.inl-search-27:hover {
  background: var(--bark);
}
.inl-search-92 {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 52px;
}
.ep-slide.inl-search-9 {
  opacity: 1;
  transform: scale(1);
}
.ep-name-area {
}
.ep-card-dot.inl-search-9 {
  background: var(--gold);
  transform: scale(1.35);
}
.inl-search-93 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  color: rgba(240, 230, 211, 0.3);
  letter-spacing: 0.08em;
}
.inl-search-94 {
  position: fixed;
  right: 22px;
  bottom: 36px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.inl-search-100 {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(42, 34, 24, 0.22);
  text-decoration: none;
  font-size: 19px;
}
.inl-search-100:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(42, 34, 24, 0.3);
}
.inl-search-100.inl-search-101 {
  background: #25d366;
}
.inl-search-100.inl-search-102 {
  background: #229ed9;
}
.inl-search-100.inl-search-103 {
  background: var(--gold);
  color: var(--white);
}
.inl-search-95 {
  position: fixed;
  right: 78px;
  bottom: 36px;
  z-index: 299;
  width: 286px;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.25);
  box-shadow: 0 14px 44px rgba(42, 34, 24, 0.14);
  padding: 22px;
  display: none;
  animation: slideIn 0.3s ease;
}
.inl-search-95.inl-search-45 {
  display: block;
}
.inl-search-96 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 5px;
}
.inl-search-97 {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}
.inl-search-98 {
  display: flex;
  gap: 8px;
}
.inl-search-98 input {
  flex: 1;
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.25);
  padding: 9px 12px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: var(--text);
  outline: none;
}
.inl-search-99 {
  background: var(--gold);
  border: none;
  padding: 9px 13px;
  cursor: pointer;
  font-size: 14px;
  color: var(--white);
  transition: background 0.25s;
}
.inl-search-99:hover {
  background: var(--bark);
}
.inl-search-104 {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 440px;
  background: var(--gold);
  color: #111;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 8px 8px 34px;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 400;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  margin-bottom: 14px;
}
.inl-search-105 {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  line-height: 1;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.inl-search-104:hover {
  background: var(--bark);
  color: var(--white);
}
.inl-search-104:hover .inl-search-105 {
  background: var(--white);
  color: var(--text);
}
.inl-search-94 .ring-text,
.inl-search-94 .orbit-text,
.inl-search-94 .circle-text,
.inl-search-94 .social-ring-text,
.inl-search-94 [class*="ring-text"],
.inl-search-94 [class*="orbit-text"],
.inl-search-94 [class*="circle-text"] {
  font-size: 8px !important;
  letter-spacing: 0.06em !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.35) !important;
}
.inl-search-94 .ring-text-wrap,
.inl-search-94 .orbit-text-wrap,
.inl-search-94 .circle-text-wrap,
.inl-search-94 [class*="ring-wrap"],
.inl-search-94 [class*="orbit-wrap"],
.inl-search-94 [class*="circle-wrap"] {
  inset: 9px !important;
}
.inl-search-94 svg text,
.inl-search-94 svg textPath {
  font-size: 8px !important;
  letter-spacing: 0.06em !important;
  font-weight: 600 !important;
  fill: #fff !important;
  stroke: rgba(0, 0, 0, 0.28) !important;
  stroke-width: 0.5px !important;
  paint-order: stroke fill !important;
}
@media (max-width: 900px) {
  .inl-search-1 {
    padding: 0 20px;
  }
  nav {
    display: none;
  }
  .ep-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .landlords-grid,
  .investors-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .tenants-cards,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card:first-child,
  .blog-card:not(:first-child) {
    aspect-ratio: 3/2;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .inl-search-3 {
    flex-direction: column;
  }
  .inl-search-4 {
    border-right: none;
    border-bottom: 1px solid rgba(184, 149, 90, 0.14);
  }
  .inl-search-92 {
    padding: 0 20px;
  }
  .carousel-arrow {
    display: none;
  }
}
.reviews-nav-dot.inl-search-9 {
  background: var(--gold);
  transform: scale(1.4);
}
.inl-search-28 {
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(184, 149, 90, 0.2);
}
.inl-search-29 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  padding: 4px 6px;
  border: none;
  background: none;
  font-family: "Jost", sans-serif;
  transition: color 0.2s;
}
.inl-search-29 svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.25s;
}
.inl-search-29.inl-search-45 svg {
  transform: rotate(180deg);
}
.inl-search-30 {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.2);
  box-shadow: 0 8px 32px rgba(42, 34, 24, 0.12);
  min-width: 80px;
  display: none;
  z-index: 300;
}
.inl-search-30.inl-search-45 {
  display: block;
}
.inl-search-31 {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Jost", sans-serif;
  text-align: left;
  transition:
    background 0.2s,
    color 0.2s;
  border-bottom: 1px solid rgba(184, 149, 90, 0.08);
}
.inl-search-31:last-child {
  border-bottom: none;
}
.inl-search-31:hover {
  background: var(--warm);
  color: var(--gold);
}
.inl-search-31.inl-search-9 {
  color: var(--gold);
}
.inl-search-65 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.inl-search-66 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(184, 149, 90, 0.08);
}
.inl-search-66:last-of-type {
  border-bottom: none;
}
.inl-search-67 {
  font-size: 12.5px;
  color: var(--text-mid);
}
.inl-search-68 {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.inl-search-68.inl-search-45 {
  transform: rotate(90deg);
}
.inl-search-69 {
  padding: 6px 0 8px 8px;
  display: none;
  flex-direction: column;
  gap: 7px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.08);
  margin-bottom: 4px;
}
.inl-search-69.inl-search-45 {
  display: flex;
}
.inl-search-55 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inl-search-56 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}
.inl-search-57 {
  font-size: 12.5px;
  color: var(--text-mid);
}
.inl-search-58 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.inl-search-59 {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(184, 149, 90, 0.4);
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  line-height: 1;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  border-radius: 50%;
}
.inl-search-59:hover:not(:disabled) {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.inl-search-59:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.inl-search-60 {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  min-width: 32px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
}
.inl-search-61 {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.search-topbar {
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 149, 90, 0.18);
  display: none;
}
.search-topbar .inl-search-3 {
  flex: 1;
  max-width: 680px;
  animation: none;
  box-shadow: 0 3px 18px rgba(42, 34, 24, 0.1);
}
.search-topbar .inl-search-27 {
  padding: 0 24px;
  height: 100%;
}
.stb-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.stb-link {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.stb-link:hover {
  color: var(--gold);
}
.stb-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.inl-search-32 {
  background: var(--white);
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
  padding: 10px 40px 10px 308px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 68px;
  z-index: 98;
}
.inl-search-33 {
  padding: 6px 18px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  background: none;
  font-family: "Jost", sans-serif;
  transition: all 0.2s;
}
.inl-search-33:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.inl-search-33.inl-search-9 {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}
.inl-search-34 {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inl-search-35 {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  background: none;
  font-family: "Jost", sans-serif;
  transition: all 0.2s;
}
.inl-search-35:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.inl-search-35 svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.inl-search-36 {
  display: grid;
  grid-template-columns: 268px 1fr;
}
.inl-search-37 {
  background: var(--white);
  border-right: 1px solid rgba(184, 149, 90, 0.12);
  padding: 20px 0;
  position: sticky;
  top: 118px;
  height: calc(100vh - 118px);
  overflow-y: auto;
}
.inl-search-37::-webkit-scrollbar {
  width: 3px;
}
.inl-search-37::-webkit-scrollbar-thumb {
  background: var(--sand);
}
.inl-search-38 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 14px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.1);
  margin-bottom: 2px;
}
.inl-search-39 {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  transition: color 0.2s;
}
.inl-search-39:hover {
  color: var(--gold);
}
.inl-search-40 {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inl-search-41 {
  border-bottom: 1px solid rgba(184, 149, 90, 0.1);
}
.inl-search-42 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
}
.inl-search-43 {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}
.inl-search-44 {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s;
  font-weight: 300;
}
.inl-search-44.inl-search-45 {
  transform: rotate(45deg);
}
.inl-search-46 {
  padding: 2px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inl-search-46.hidden {
  display: none;
}
.inl-search-47 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
}
.coll-cb {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 149, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.2s;
  cursor: pointer;
}
.inl-search-47:hover .coll-cb {
  border-color: var(--gold);
}
.inl-search-47 input:checked ~ .coll-cb,
.coll-cb.checked {
  background: var(--gold);
  border-color: var(--gold);
}
.inl-search-47 input:checked ~ .coll-cb::after,
.coll-cb.checked::after {
  content: "✓";
  font-size: 9px;
  color: var(--white);
  line-height: 1;
}
.inl-search-47 input {
  display: none;
}
.inl-search-49 {
}
.inl-search-50 {
  font-size: 12.5px;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.inl-search-51 {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 1px;
}
.inl-search-52 {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}
.inl-search-53 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  cursor: pointer;
}
.inl-search-53 input {
  display: none;
}
.inl-search-48 {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 149, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.inl-search-53:hover .inl-search-48 {
  border-color: var(--gold);
}
.inl-search-53 input:checked ~ .inl-search-48 {
  background: var(--gold);
  border-color: var(--gold);
}
.inl-search-53 input:checked ~ .inl-search-48::after {
  content: "✓";
  font-size: 9px;
  color: var(--white);
  line-height: 1;
}
.inl-search-54 {
  font-size: 12.5px;
  color: var(--text-mid);
}
.inl-search-63 {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.inl-search-64 {
  flex: 1;
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.22);
  padding: 8px 10px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.inl-search-64:focus {
  border-color: var(--gold);
}
.inl-search-62 {
  font-size: 8.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.inl-search-70 {
  background: var(--cream);
  padding: 20px 36px 48px;
}
.inl-search-71 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
}
.inl-search-72 {
  font-size: 13px;
  color: var(--text-muted);
}
.inl-search-72 strong {
  color: var(--text);
  font-weight: 400;
}
.sort-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.sort-lbl {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.inl-search-73 {
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.22);
  padding: 6px 12px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  color: var(--text);
  outline: none;
  cursor: pointer;
}
.inl-search-74 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  row-gap: 36px;
}
.inl-search-75 {
  cursor: pointer;
  background: none;
}
.inl-search-75:hover .inl-search-76 img {
  transform: scale(1.04);
}
.inl-search-76 {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 14px;
  background: var(--sand);
}
.inl-search-76 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.inl-search-77 {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.88);
  border: 1px solid rgba(184, 149, 90, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.inl-search-77:hover {
  background: var(--white);
  border-color: var(--gold);
}
.inl-search-77 svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-mid);
  fill: none;
  stroke-width: 1.5;
}
.inl-search-77:hover svg {
  stroke: var(--gold);
}
.inl-search-78 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(42, 34, 24, 0.55);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  padding: 3px 8px;
}
.inl-search-79 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inl-search-80 {
  line-height: 1.1;
}
.inl-search-82 {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.inl-search-83 {
  display: flex;
  gap: 0;
  font-size: 11.5px;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.inl-search-84 {
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid rgba(184, 149, 90, 0.2);
}
.inl-search-84:last-child {
  border-right: none;
}
.inl-search-85 {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.inl-search-86 {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border: 1px solid rgba(184, 149, 90, 0.2);
  padding: 3px 9px;
  background: var(--warm);
  white-space: nowrap;
}
.inl-search-87 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 149, 90, 0.1);
}
.inl-search-88 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
}
.inl-search-89 {
  font-size: 10px;
  color: var(--text-muted);
}
.inl-search-90 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.inl-search-91 {
  color: var(--gold);
  font-size: 9px;
}
.inl-search-76-link {
  display: block;
  width: 100%;
  height: 100%;
}
.inl-search-81 {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 9px 18px;
  font-family: "Jost", sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s;
}
.inl-search-81:hover {
  background: var(--bark);
  color: var(--white);
}
a.ep-view-btn {
  text-decoration: none;
  color: var(--gold-pale);
}
.ep-card[data-href] {
  cursor: pointer;
}
@media (max-width: 900px) {
  .inl-search-36 {
    grid-template-columns: 1fr;
  }
  .inl-search-37 {
    position: static;
    height: auto;
  }
  .inl-search-74 {
    grid-template-columns: 1fr;
  }
  .search-topbar,
  .inl-search-32 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .inl-search-32 {
    padding-left: 16px;
  }
  .inl-search-70 {
    padding: 16px;
  }
}
/* ── INNER PAGE (property detail) ── */

.prop-full {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-block {
  padding: 44px 0;
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
}
.section-block-title {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.section-block-title button {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}
/* Services */
.services-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 14px;
  font-weight: 500;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-mid);
}
.service-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
/* À la carte */
.alacarte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}
.alacarte-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 6px 0;
}
.alacarte-star {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.alacarte-note {
  background: var(--warm);
  border-left: 3px solid rgba(184, 149, 90, 0.3);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.alacarte-note-icon {
  color: var(--gold);
  font-size: 16px;
  margin-right: 8px;
}
/* Good to know */
.good-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Schedule a call */
.schedule-card {
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.15);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}
.schedule-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.schedule-text h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.schedule-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.schedule-btn {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 11px 28px;
  font-family: "Jost", sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s;
  text-decoration: none;
}
.schedule-btn:hover {
  background: var(--gold);
}
/* Additional info */
.addl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.addl-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.addl-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-mid);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}
.addl-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.addl-val {
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  font-weight: 400;
}
.addl-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.addl-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}
.licence {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
}
/* Map */
#prop-map {
  height: 320px;
  border: 1px solid rgba(184, 149, 90, 0.12);
}
.setting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-top: 20px;
}
.setting-item {
  font-size: 13.5px;
  color: var(--text-mid);
}
.setting-lbl {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}
.faq-q svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-q.open svg {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.9;
}
.faq-a.open {
  display: block;
}
.faq-a ul {
  margin: 12px 0 0 16px;
}
.faq-a li {
  margin-bottom: 6px;
}
/* Recommended / Recently viewed */
.rec-section {
  padding: 56px 0;
  border-top: 1px solid rgba(184, 149, 90, 0.1);
}
.rec-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.rec-title {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}
.rec-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(184, 149, 90, 0.25);
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-mid);
}
.rec-tag svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rec-card {
  cursor: pointer;
}
.rec-card:hover .rec-card-img img {
  transform: scale(1.05);
}
.rec-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 12px;
}
.rec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.rec-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rec-card-loc {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.rec-card-specs {
  font-size: 11.5px;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.rec-card-price {
  font-size: 13px;
  color: var(--text);
}
.rec-wish {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.rec-wish svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
}
.rec-wish:hover svg {
  stroke: var(--gold);
}
/* Recently viewed — horizontal */
.rv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rv-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(184, 149, 90, 0.12);
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.2s;
}
.rv-card:hover {
  border-color: rgba(184, 149, 90, 0.3);
}
.rv-card-img {
  width: 130px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
}
.rv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rv-card-info {
  flex: 1;
}
.rv-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.rv-card-loc {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.rv-card-specs {
  font-size: 11px;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.rv-card-price {
  font-size: 12.5px;
  color: var(--text);
}
/* Reviews dark section */
.prop-reviews-section {
  background: #1a1612;
  padding: 64px 0;
  background-image: url("https://images.unsplash.com/photo-1519974719765-e6559eac2575?w=1600&q=40");
  background-size: cover;
  background-position: center;
  position: relative;
}
.prop-reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.88);
}
.prop-reviews-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}
.prop-reviews-title {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.prop-reviews-heading {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
}
.prop-reviews-heading em {
  font-style: italic;
  color: var(--gold-light);
}
.prop-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.prop-review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 28px;
  border: 1px solid rgba(184, 149, 90, 0.12);
}
.prop-review-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(240, 230, 211, 0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.prop-review-meta {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.prop-review-date {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.3);
  margin-top: 4px;
}
.prop-trustpilot {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(240, 230, 211, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.prop-tp-score {
  color: #00b67a;
  font-weight: 500;
}
/* House Rules */
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 149, 90, 0.1);
}
.rule-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}
.rule-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.rule-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}
/* ── PROPERTY DETAIL PAGE ── */

/* Minimal top bar */
.prop-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 149, 90, 0.18);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prop-topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.prop-topbar-logo svg {
  height: 36px;
  width: auto;
}
.prop-topbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.prop-topbar-logo-text span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}
.prop-topbar-logo-text span:last-child {
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.prop-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.prop-topbar-link {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.prop-topbar-link:hover {
  color: var(--gold);
}
.prop-topbar-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.prop-topbar-btn {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  background: none;
  transition:
    background 0.25s,
    color 0.25s;
  text-decoration: none;
}
.prop-topbar-btn:hover {
  background: var(--gold);
  color: var(--white);
}
/* Breadcrumb */
.breadcrumb {
  padding: 12px 48px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-bottom: 1px solid rgba(184, 149, 90, 0.08);
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: rgba(184, 149, 90, 0.4);
}
/* Photo gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 3px;
  position: relative;
}
.gallery-main {
  grid-row: 1 / 3;
  overflow: hidden;
  cursor: pointer;
}
.gallery-sub {
  overflow: hidden;
  cursor: pointer;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.gallery-main:hover img,
.gallery-sub:hover img {
  transform: scale(1.04);
}
.gallery-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 149, 90, 0.3);
  padding: 10px 20px;
  font-family: "Jost", sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.gallery-btn:hover {
  background: var(--white);
  border-color: var(--gold);
  color: var(--gold);
}
.gallery-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.gallery-wish {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(184, 149, 90, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-wish:hover {
  background: var(--white);
  border-color: var(--gold);
}
.gallery-wish svg {
  width: 17px;
  height: 17px;
  stroke: var(--text-mid);
  fill: none;
  stroke-width: 1.5;
}
/* Main content layout */
.prop-content {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  padding-top: 48px;
}
/* Left col */
.prop-left {
}
/* Property header */
.prop-header {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
}
.prop-collection {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.prop-collection-diamonds {
  letter-spacing: 2px;
}
.prop-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 8px;
}
.prop-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prop-location svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}
.prop-quick-specs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.prop-qs {
  padding: 12px 24px 12px 0;
  margin-right: 24px;
  border-right: 1px solid rgba(184, 149, 90, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}
.prop-qs:last-child {
  border-right: none;
}
.prop-qs svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}
.prop-qs-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.prop-qs-lbl {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
/* Description */
.prop-section {
  margin-bottom: 44px;
}
.prop-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
}
.prop-section-title em {
  font-style: italic;
  color: var(--gold);
}
.prop-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-muted);
}
.prop-desc p {
  margin-bottom: 14px;
}
.read-more {
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
}
.read-more:hover {
  text-decoration: underline;
}
/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.amenity-cat-section {
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid rgba(184, 149, 90, 0.08);
}
.amenity-cat-section:nth-child(3n) {
  padding-right: 0;
}
.amenity-cat-title {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.amenity-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-mid);
}
.amenity-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}
/* Spaces / rooms */
.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.space-card {
  background: var(--warm);
  padding: 24px;
}
.space-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 14px;
}
.space-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.space-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
/* Calendar placeholder */
.calendar-placeholder {
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.15);
  padding: 36px;
  text-align: center;
}
.calendar-placeholder h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 8px;
}
.calendar-placeholder p {
  font-size: 12px;
  color: var(--text-muted);
}
/* Map placeholder */
.map-placeholder {
  height: 320px;
  background: var(--warm2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 149, 90, 0.12);
  position: relative;
  overflow: hidden;
}
.map-placeholder-inner {
  text-align: center;
}
.map-placeholder-inner svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  stroke-width: 1.2;
  fill: none;
  margin-bottom: 12px;
}
.map-placeholder-inner p {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
/* ── RIGHT: Booking widget ── */
.booking-widget {
  position: sticky;
  top: 80px;
  background: var(--white);
  border: 1px solid rgba(184, 149, 90, 0.2);
  box-shadow: 0 8px 48px rgba(42, 34, 24, 0.1);
  padding: 32px;
}
.bw-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.bw-price-note {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.bw-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.bw-field {
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.2);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.bw-field:hover {
  border-color: var(--gold);
}
.bw-field-lbl {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.bw-field-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: var(--text);
}
.bw-guests {
  background: var(--warm);
  border: 1px solid rgba(184, 149, 90, 0.2);
  padding: 12px 14px;
  margin-bottom: 16px;
  cursor: pointer;
}
.bw-book {
  width: 100%;
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  margin-bottom: 12px;
}
.bw-book:hover {
  background: var(--gold);
}
.bw-enquire {
  width: 100%;
  background: none;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 20px;
}
.bw-enquire:hover {
  background: var(--gold);
  color: var(--white);
}
.bw-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}
.bw-note a {
  color: var(--gold);
  text-decoration: none;
}
.bw-divider {
  height: 1px;
  background: rgba(184, 149, 90, 0.15);
  margin: 20px 0;
}
.bw-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bw-include {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-mid);
}
.bw-include svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}
.bw-concierge {
  background: var(--text);
  color: var(--white);
  padding: 20px;
  margin-top: 16px;
  text-align: center;
}
.bw-concierge p:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 6px;
}
.bw-concierge p:last-child {
  font-size: 11px;
  color: rgba(240, 230, 211, 0.6);
  line-height: 1.6;
}
/* Similar properties */
.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sim-card {
  cursor: pointer;
}
.sim-card:hover .sim-img img {
  transform: scale(1.05);
}
.sim-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 12px;
}
.sim-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}
.sim-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 3px;
}
.sim-loc {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.sim-price {
  font-size: 13px;
  color: var(--text);
}
/* Similar section full width */
.prop-similar {
  background: var(--warm);
  padding: 64px 0;
  margin-top: 64px;
}
.prop-similar-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
}
/* Footer minimal */
.prop-footer {
  background: var(--text);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prop-footer p {
  font-size: 11px;
  color: rgba(240, 230, 211, 0.3);
  letter-spacing: 0.08em;
}
.prop-footer span {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
/* Tabs nav */
.prop-tabs {
  background: var(--white);
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
  position: sticky;
  top: 68px;
  z-index: 99;
}
.prop-tabs-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 0;
}
.prop-tab {
  padding: 14px 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.prop-tab:hover {
  color: var(--gold);
}
.prop-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
html:has(#prop-overview) {
  scroll-padding-top: 124px;
}
#prop-overview,
#prop-amenities-sec,
#prop-spaces-sec,
#prop-availability,
#prop-location {
  scroll-margin-top: 120px;
}
@media (max-width: 900px) {
  .prop-content {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 0 0;
  }
  .gallery-sub {
    display: none;
  }
  .similar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prop-topbar {
    padding: 0 16px;
  }
  .breadcrumb {
    padding: 10px 16px;
  }
  .prop-tabs-inner {
    padding: 0 16px;
    overflow-x: auto;
  }
  .prop-similar-inner {
    padding: 0 16px;
  }
  .prop-footer {
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
/* Gallery modal */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 500;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.gallery-modal.open {
  display: flex;
}
.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  cursor: pointer;
  font-weight: 300;
}
.gallery-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}
.gallery-modal-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
}
.gallery-modal-thumb {
  width: 80px;
  height: 54px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.gallery-modal-thumb:hover {
  opacity: 1;
}
.leaflet-map-icon {
  width: 36px;
  height: 36px;
  background: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.prop-topbar.scrolled {
  box-shadow: 0 2px 24px rgba(42, 34, 24, 0.1);
}
/* Inner page inline styles */
.inl-inner-1 {
  color: var(--text);
}
.inl-inner-2 {
  display: none;
}
.inl-inner-2.visible {
  display: block;
}
.inl-inner-3 {
  margin-bottom: 20px;
}
.inl-inner-4 {
  margin-top: 0;
}
.inl-inner-5 {
  margin-bottom: 20px;
}
.inl-inner-6 {
  border: 1px solid rgba(184, 149, 90, 0.2);
  background: var(--warm);
  padding: 12px 14px;
  margin-bottom: 16px;
  cursor: pointer;
}
.inl-inner-7 {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
}
.inl-inner-8 {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.inl-inner-9 {
  border-bottom: none;
}
.inl-inner-10 {
  margin-top: 28px;
}
.inl-inner-11 {
  border-bottom: none;
}
.inl-inner-12 {
  margin-bottom: 12px;
}
.inl-inner-13 {
  margin-bottom: 40px;
}

/* OpenCart integration — minimal */
#alert:empty {
  display: none;
}
