:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-soft: #f1efe9;
  --text: #121212;
  --muted: #66645f;
  --muted-soft: #a4a29d;
  --line: rgba(18, 18, 18, 0.1);
  --shadow: 0 24px 70px rgba(30, 35, 40, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(175, 198, 232, 0.35), transparent 22%),
    linear-gradient(180deg, #f8f7f3 0%, #f5f3ed 100%);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11, 14, 18, 0.38);
  backdrop-filter: blur(4px);
}

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

button {
  font: inherit;
  cursor: pointer;
}

.page-shell {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 12px;
}

.hero,
.statement-section,
.properties-section,
.projects-section,
.cta-banner,
.site-footer {
  border-radius: var(--radius-xl);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  padding: 24px 28px 30px;
  background:
    linear-gradient(180deg, rgba(10, 15, 18, 0.12), rgba(10, 15, 18, 0.22)),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.5), transparent 24%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(111, 150, 195, 0.42) 0%, rgba(255, 255, 255, 0.04) 56%);
}

.topbar,
.hero-grid {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  z-index: 1002;
}

.brand-mark {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 0.96rem;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.menu-toggle span {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 18px;
}

.menu-toggle span:nth-child(2) {
  top: 25px;
}

.menu-toggle span:nth-child(3) {
  top: 32px;
}

body.nav-open .menu-toggle span:nth-child(1) {
  top: 25px;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  top: 25px;
  transform: rotate(-45deg);
}

.nav-links a,
.contact-pill {
  color: rgba(255, 255, 255, 0.92);
}

.nav-panel-contact {
  display: none;
}

.contact-pill {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  min-height: 760px;
  gap: 24px;
}

.hero-copy {
  align-self: start;
  padding-top: 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(4.8rem, 12vw, 10.5rem);
  line-height: 0.84;
  font-weight: 700;
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.95);
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.hero-text {
  width: min(580px, 100%);
  margin: 26px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

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

.primary-btn,
.ghost-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
}

.primary-btn {
  background: #fff;
  color: #111;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100%;
}

.hero-note,
.hero-stat {
  margin-left: auto;
  width: 100%;
  border-radius: 26px;
}

.hero-note {
  margin-top: 86px;
  padding: 20px 22px;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-note p,
.hero-note strong {
  display: block;
}

.hero-note p {
  margin: 0 0 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-note strong {
  line-height: 1.5;
}

.hero-stat {
  align-self: end;
  max-width: 260px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(17, 19, 22, 0.16);
}

.hero-stat strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stat span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.statement-section,
.properties-section,
.projects-section {
  background: transparent;
  padding: 42px 18px 8px;
}

.statement-section {
  padding-top: 62px;
  text-align: center;
}

.statement-line {
  max-width: 1260px;
  margin: 0 auto 6px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 2vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #353535;
}

.statement-line.strong {
  color: #353535;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--text);
}

.section-head h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-kicker-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.section-text,
.project-body p,
.cta-overlay p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-link {
  justify-self: end;
  align-self: center;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.category-chip {
  padding: 13px 20px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #2d2d2d;
}

.category-chip.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

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

.rental-section {
  padding-top: 14px;
}

.property-card,
.project-card {
  overflow: hidden;
  background: var(--surface);
}

.property-card {
  border-radius: 28px;
}

.project-card {
  border-radius: 28px;
}

.property-card.is-hidden {
  display: none;
}

.property-media {
  min-height: 326px;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
}

.card-body {
  padding: 22px 18px 14px;
}

.property-cta-card {
  display: flex;
  min-height: 100%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(210, 219, 234, 0.45), transparent 32%),
    #f8f6f1;
}

.property-cta-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 326px;
  padding: 30px 26px;
}

.card-body h3,
.project-body h3 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
}

.listing-meta span {
  position: relative;
  padding-left: 22px;
}

.listing-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.price {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.fees-note {
  margin: 0;
  color: #3f3d39;
}

.dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
}

.projects-head {
  margin-top: 56px;
}

.project-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(380px, 1fr));
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.project-track::-webkit-scrollbar {
  height: 10px;
}

.project-track::-webkit-scrollbar-thumb {
  background: rgba(18, 18, 18, 0.12);
  border-radius: 999px;
}

.project-card {
  min-width: 0;
}

.project-media {
  min-height: 340px;
  border-radius: 0;
  background-position: center;
  background-size: cover;
}

.project-body {
  padding: 22px 18px 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.tag-row span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #44413d;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 20px;
  margin-bottom: 6px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #111;
  font-weight: 700;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  margin-top: 72px;
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.5), rgba(12, 14, 18, 0.52)),
    url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.cta-overlay {
  display: grid;
  place-content: center;
  justify-items: center;
  min-height: 620px;
  padding: 32px;
  text-align: center;
}

.light {
  color: rgba(255, 255, 255, 0.78);
}

.cta-banner h2,
.cta-overlay p {
  color: #fff;
}

.cta-overlay p {
  max-width: 760px;
  margin-top: 18px;
}

.light-btn {
  margin-top: 28px;
  background: #fff;
  color: #111;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin: 0;
  padding: 36px 22px 48px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand span {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 28px;
}

.footer-columns h4 {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
}

.footer-columns a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-note {
  color: var(--muted);
}

.inner-page {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 12px;
}

.site-nav {
  position: relative;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.site-nav .nav-links a,
.site-nav .brand-mark {
  color: var(--text);
}

.site-nav .contact-pill {
  border: 1px solid var(--line);
  background: #fff;
}

.site-nav .menu-toggle {
  border-color: rgba(18, 18, 18, 0.1);
  background: #fff;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin-bottom: 18px;
  padding: 40px 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(132, 162, 205, 0.88), rgba(247, 244, 238, 0.82)),
    linear-gradient(180deg, rgba(18, 18, 18, 0.14), rgba(18, 18, 18, 0.04));
  box-shadow: var(--shadow);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%);
}

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

.inner-hero h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.inner-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(18, 18, 18, 0.72);
  line-height: 1.75;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 18, 18, 0.08);
}

.content-section {
  margin-bottom: 18px;
  padding: 30px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
}

.content-surface {
  display: grid;
  gap: 0;
  padding: 12px 24px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(25, 28, 32, 0.06);
}

.content-surface .content-section {
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-surface .content-section + .content-section {
  border-top: 1px solid var(--line);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.content-block h2,
.content-block h3,
.faq-card summary,
.info-card h3,
.filter-panel h3,
.list-card h3 {
  font-family: "Outfit", sans-serif;
}

.content-block h2,
.listing-main h2,
.section-stack h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.content-block p,
.content-block li,
.list-card p,
.info-card p,
.empty-form-shell p,
.faq-card p {
  color: var(--muted);
  line-height: 1.8;
}

.info-stack,
.faq-stack,
.list-stack,
.section-stack {
  display: grid;
  gap: 18px;
}

.info-card,
.list-card,
.faq-card,
.filter-panel,
.empty-form-shell,
.stat-card {
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(25, 28, 32, 0.06);
}

.info-card h3,
.list-card h3,
.filter-panel h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.mini-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
}

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

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}

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

.listing-main {
  display: grid;
  gap: 22px;
}

.listing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.listing-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}

.listing-card .property-media {
  min-height: 280px;
  border-radius: 0;
}

.listing-card .card-body {
  padding: 20px 20px 22px;
}

.price-line {
  margin: 10px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
}

.filter-sidebar {
  position: sticky;
  top: 18px;
}

.filter-panel {
  display: grid;
  gap: 18px;
}

.filter-group {
  display: grid;
  gap: 10px;
}

.filter-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #353535;
  cursor: pointer;
  user-select: none;
}

.check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-dot {
  width: 16px;
  height: 16px;
  border: 1.5px solid #353535;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: background 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}

.check-item input[type="checkbox"]:checked + .check-dot {
  background: #111;
  border-color: #111;
}

.check-item input[type="checkbox"]:checked + .check-dot::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.check-item input[type="checkbox"]:focus-visible + .check-dot {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.range-shell {
  padding: 16px;
  border-radius: 20px;
  background: var(--surface-soft);
}

.range-slider {
  position: relative;
  height: 24px;
  margin: 14px 0 12px;
}

.range-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.12);
}

.range-fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;
  background: #111;
  left: 0;
  right: 0;
  pointer-events: none;
}

.range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}

.range-input::-webkit-slider-runnable-track {
  background: transparent;
  height: 24px;
  border: none;
}

.range-input::-moz-range-track {
  background: transparent;
  height: 24px;
  border: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #111;
  cursor: pointer;
  pointer-events: auto;
  margin-top: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #111;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.range-input:focus-visible::-webkit-slider-thumb {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.range-values {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.filter-reset {
  appearance: none;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  padding: 12px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.filter-reset:hover {
  background: #111;
  color: #fff;
}

.listing-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 20px;
  border-radius: 20px;
  background: var(--surface-soft);
  color: var(--muted);
  text-align: center;
}

.filter-note {
  padding: 16px;
  border-radius: 20px;
  background: #111;
  color: #fff;
  line-height: 1.7;
}

.filter-note p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.76);
}

.filter-note .dark-btn {
  margin-top: 0;
  background: #fff;
  color: #111;
}

.inline-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.faq-page {
  display: grid;
  gap: 18px;
}

.faq-card summary {
  cursor: pointer;
  font-size: 1.15rem;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin: 14px 0 0;
}

.basic-list {
  display: grid;
  gap: 14px;
}

.basic-list div {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--surface-soft);
}

.empty-form-shell h2 {
  margin: 0 0 12px;
}

.empty-form-box {
  margin-top: 18px;
  padding: 24px;
  border: 1px dashed rgba(18, 18, 18, 0.2);
  border-radius: 22px;
  background: #faf9f6;
}

.property-detail-page {
  display: grid;
  gap: 22px;
}

.property-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.property-gallery-main,
.property-summary-card,
.detail-card,
.contact-banner-card {
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(25, 28, 32, 0.06);
}

.property-detail-stack {
  display: grid;
  gap: 0;
  padding: 12px 24px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(25, 28, 32, 0.06);
}

.property-gallery-main {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.property-gallery-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 18, 0.08), rgba(10, 14, 18, 0.36)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.price-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(111, 176, 232, 0.92);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.gallery-strip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-thumb {
  min-height: 118px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background-position: center;
  background-size: cover;
}

.property-summary-card {
  display: grid;
  gap: 22px;
  padding: 26px;
}

.property-summary-card h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.property-subline {
  color: var(--muted);
  line-height: 1.75;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-fact {
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--surface-soft);
}

.quick-fact strong,
.detail-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.quick-fact span,
.detail-grid span {
  color: #353535;
}

.property-summary-card .dark-btn {
  width: 100%;
  min-height: 56px;
}

.detail-card {
  padding: 28px 24px;
}

.property-detail-stack .detail-card,
.property-detail-stack .contact-banner-card {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.property-detail-stack .detail-card + .detail-card,
.property-detail-stack .detail-card + .contact-banner-card,
.property-detail-stack .contact-banner-card {
  border-top: 1px solid var(--line);
}

.detail-card h2 {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.detail-card p + p {
  margin-top: 14px;
}

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

.detail-grid > div {
  padding: 18px 16px;
  border-radius: 20px;
  background: var(--surface-soft);
}

.detail-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-pill-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: #353535;
}

.location-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
}

.map-embed-shell {
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  background: var(--surface-soft);
}

.map-embed {
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
}

.contact-banner-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: center;
  padding: 28px 24px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-box {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface-soft);
}

.contact-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.placeholder-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.placeholder-card {
  width: min(100%, 760px);
  padding: 44px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
}

.placeholder-card h1 {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  letter-spacing: -0.06em;
}

.placeholder-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.placeholder-home {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 1180px) {
  .hero-grid,
  .section-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-side {
    width: 100%;
    min-height: auto;
    gap: 20px;
  }

  .hero-note,
  .hero-stat {
    margin-left: 0;
  }

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

  .content-grid,
  .listing-layout,
  .property-showcase,
  .location-box,
  .contact-banner-card {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

  .listing-cards,
  .stats-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 8px;
  }

  .hero {
    min-height: auto;
    padding: 18px 16px 22px;
    border-radius: 28px;
  }

  .topbar,
  .site-nav {
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .contact-pill {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1003;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: min(340px, 86vw);
    height: 100vh;
    padding: 88px 24px 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -18px 0 40px rgba(18, 18, 18, 0.14);
    transition: right 0.28s ease;
  }

  body.nav-open .nav-links {
    right: 0;
  }

  .nav-links a {
    color: #111;
    font-family: "Outfit", sans-serif;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
  }

  .nav-panel-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 10px;
    padding: 0 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 1rem;
  }

  .site-nav .nav-panel-contact,
  .topbar .nav-panel-contact {
    color: #fff;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 21vw, 5.8rem);
  }

  .hero-text {
    width: 100%;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn,
  .light-btn {
    width: 100%;
  }

  .hero-note,
  .hero-stat {
    max-width: none;
  }

  .hero-note {
    margin-top: 20px;
  }

  .statement-section,
  .properties-section,
  .projects-section {
    padding-inline: 6px;
  }

  .statement-line {
    font-size: clamp(1rem, 4.8vw, 1.45rem);
    line-height: 1.16;
  }

  .section-head h2,
  .cta-banner h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .section-head {
    gap: 14px;
  }

  .section-link {
    justify-self: start;
  }

  .category-row {
    gap: 10px;
    margin-bottom: 22px;
  }

  .category-chip {
    padding: 11px 16px;
  }

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

  .listing-cards,
  .stats-grid,
  .contact-grid,
  .detail-grid,
  .quick-facts {
    grid-template-columns: 1fr;
  }

  .project-track {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .property-media,
  .project-media {
    min-height: 260px;
  }

  .property-gallery-main {
    min-height: 420px;
  }

  .gallery-strip {
    position: static;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cta-banner,
  .cta-overlay {
    min-height: 460px;
  }

  .site-footer {
    padding: 28px 12px 34px;
  }

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

  .site-nav,
  .inner-hero,
  .content-section {
    padding-inline: 18px;
  }

  .inner-page {
    padding: 8px;
  }

  .inner-hero {
    min-height: 240px;
    padding: 28px 18px;
  }

  .inner-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics span {
    min-height: 42px;
    padding: 0 14px;
  }

  .content-section,
  .detail-card,
  .contact-banner-card,
  .property-summary-card,
  .property-detail-stack,
  .content-surface {
    padding: 22px 18px;
  }

  .listing-card .card-body,
  .card-body,
  .project-body,
  .filter-panel,
  .info-card,
  .faq-card,
  .stat-card,
  .empty-form-shell {
    padding: 20px 18px;
  }

  .listing-main h2,
  .section-stack h2,
  .detail-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .quick-fact,
  .contact-box,
  .basic-list div {
    padding: 16px;
  }

  .property-gallery-main {
    min-height: 340px;
  }

  .price-badge {
    top: 16px;
    left: 16px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.98rem;
  }

  .gallery-strip {
    gap: 10px;
    padding: 14px;
  }

  .gallery-thumb {
    min-height: 90px;
  }

  .map-embed-shell,
  .map-embed {
    min-height: 180px;
  }
}
