:root {
  --bg: #070b14;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.55);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-2: rgba(255, 255, 255, 0.16);
  --accent: #7c3aed;
  --accent-2: #22c55e;
  --warn: #fbbf24;

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.35);

  --radius: 18px;
  --radius-sm: 14px;
  --container: 1140px;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 900px at 10% -10%, rgba(124, 58, 237, 0.25), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(34, 197, 94, 0.18), transparent 52%),
    radial-gradient(900px 800px at 50% 110%, rgba(251, 191, 36, 0.12), transparent 55%),
    linear-gradient(180deg, #070b14 0%, #060914 50%, #050814 100%);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(124, 58, 237, 0.38);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--stroke-2);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 11, 20, 0.58);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__stack {
  display: grid;
  line-height: 1.05;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: conic-gradient(from 220deg, var(--accent), #60a5fa, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}

.brand__text {
  font-size: 16px;
}

.brand__sub {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-2);
}

.nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 8px;
  border-radius: 10px;
  transition: background 140ms ease, color 140ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(124, 58, 237, 1), rgba(34, 197, 94, 0.88));
  color: white;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.26);
}

.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.32);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--soft {
  background: rgba(124, 58, 237, 0.16);
  border-color: rgba(124, 58, 237, 0.22);
}

.btn--soft:hover {
  background: rgba(124, 58, 237, 0.22);
}

.btn:focus-visible,
.nav__link:focus-visible,
.chip:focus-visible,
.field__input:focus-visible,
.faq__q:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.42);
  outline-offset: 2px;
}

.hero {
  padding: 62px 0 32px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px -60px auto -60px;
  height: 280px;
  background: radial-gradient(closest-side, rgba(124, 58, 237, 0.32), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.hero__title {
  margin: 14px 0 0;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.accent {
  background: linear-gradient(90deg, rgba(124, 58, 237, 1), rgba(34, 197, 94, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 58ch;
}

.search {
  margin-top: 20px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
}

.search__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

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

.field__label {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 600;
}

.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  padding: 11px 12px;
  font-size: 14px;
}

.field__input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field__input--area {
  resize: vertical;
  min-height: 120px;
}

.search__btn {
  margin-top: 12px;
  width: 100%;
}

.search__hint {
  margin: 10px 2px 0;
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.5;
}

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

.stat {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.stat__value {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 16px;
}

.stat__label {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12.5px;
}

.hero__art {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background-image: url("assets/hero.jpg"),
    radial-gradient(800px 500px at 20% 10%, rgba(124, 58, 237, 0.24), transparent 55%),
    radial-gradient(700px 520px at 70% 20%, rgba(34, 197, 94, 0.22), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 360px;
}

.hero__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.38;
  pointer-events: none;
}

.art-tower {
  position: absolute;
  inset: 64px 58px 48px 58px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
  padding: 18px;
  transform: translateY(8px);
}

.tower__window {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.34), rgba(34, 197, 94, 0.20));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tower__door {
  grid-column: 2 / span 2;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.24), rgba(0, 0, 0, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.art-card {
  position: absolute;
  width: min(240px, 78%);
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.art-card--top {
  top: 18px;
  left: 18px;
}

.art-card--bottom {
  bottom: 18px;
  right: 18px;
}

.art-card__title {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.art-card__price {
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.art-card__price span {
  font-weight: 600;
  font-size: 12px;
  color: var(--muted-2);
}

.art-card__meta {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
}

.section {
  padding: 52px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.section__subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
  font-size: 14.5px;
}

.chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.chip--active {
  background: rgba(124, 58, 237, 0.16);
  border-color: rgba(124, 58, 237, 0.22);
  color: var(--text);
}

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

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

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

.property__media {
  display: block;
  min-height: 180px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
}

.property__titlelink {
  color: inherit;
}

.property__titlelink:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 3px;
}

.property__titlelink:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.42);
  outline-offset: 3px;
  border-radius: 8px;
}

.property__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 240px at 20% 0%, rgba(255, 255, 255, 0.25), transparent 55%),
    radial-gradient(520px 260px at 90% 60%, rgba(0, 0, 0, 0.35), transparent 55%);
  mix-blend-mode: overlay;
  opacity: 0.65;
}

.media {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(34, 197, 94, 0.22));
}

.media--a {
  background-image: url("assets/properties/property-01.jpg"),
    radial-gradient(650px 260px at 10% 20%, rgba(124, 58, 237, 0.55), transparent 55%),
    radial-gradient(520px 240px at 90% 60%, rgba(34, 197, 94, 0.45), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--b {
  background-image: url("assets/properties/property-02.jpg"),
    radial-gradient(650px 280px at 20% 0%, rgba(59, 130, 246, 0.55), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(124, 58, 237, 0.42), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--c {
  background-image: url("assets/properties/property-03.jpg"),
    radial-gradient(650px 260px at 10% 30%, rgba(34, 197, 94, 0.55), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(251, 191, 36, 0.32), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--d {
  background-image: url("assets/properties/property-04.jpg"),
    radial-gradient(650px 260px at 10% 35%, rgba(244, 63, 94, 0.42), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(59, 130, 246, 0.42), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--e {
  background-image: url("assets/properties/property-05.jpg"),
    radial-gradient(650px 280px at 20% 0%, rgba(251, 191, 36, 0.35), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(34, 197, 94, 0.38), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--f {
  background-image: url("assets/properties/property-06.jpg"),
    radial-gradient(650px 280px at 10% 20%, rgba(124, 58, 237, 0.45), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(14, 165, 233, 0.40), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--g {
  background-image: url("assets/properties/property-07.jpg"),
    radial-gradient(650px 280px at 10% 20%, rgba(34, 197, 94, 0.40), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(59, 130, 246, 0.35), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--h {
  background-image: url("assets/properties/property-08.jpg"),
    radial-gradient(650px 280px at 10% 20%, rgba(59, 130, 246, 0.45), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(251, 191, 36, 0.30), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--i {
  background-image: url("assets/properties/property-09.jpg"),
    radial-gradient(650px 260px at 10% 30%, rgba(34, 197, 94, 0.45), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(59, 130, 246, 0.38), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.media--j {
  background-image: url("assets/properties/property-10.jpg"),
    radial-gradient(650px 260px at 10% 30%, rgba(251, 191, 36, 0.35), transparent 55%),
    radial-gradient(520px 240px at 90% 70%, rgba(124, 58, 237, 0.42), transparent 55%),
    linear-gradient(135deg, #0b1220, #090f22);
  background-size: cover, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.property__body {
  padding: 14px 14px 14px;
}

.property__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.property__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.price {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.price__unit {
  font-weight: 600;
  color: var(--muted-2);
  font-size: 12px;
}

.property__meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.maplink {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
  vertical-align: middle;
  white-space: nowrap;
}

.maplink::before {
  content: "📍";
  font-size: 13px;
  line-height: 1;
}

.maplink:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

.property__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.property__actions .btn {
  flex: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.feature {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.feature__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.26), rgba(34, 197, 94, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.feature__title {
  margin: 12px 0 0;
  font-size: 15.5px;
  letter-spacing: -0.02em;
}

.feature__text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13.5px;
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq__item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}

.faq__q {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  float: right;
  color: var(--muted-2);
  font-weight: 900;
  margin-left: 10px;
}

details[open] .faq__q::after {
  content: "—";
}

.faq__a {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.contact__card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.contact__form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.fineprint {
  margin: 0;
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.5;
}

.contact__aside {
  display: grid;
  gap: 12px;
}

.aside-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.aside-card__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.aside-card__text {
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--text);
}

.aside-card__hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 28px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.footer__links a {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.footer__links a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--text);
}

.footer__copy {
  margin: 0;
  color: var(--muted-2);
  font-size: 12.5px;
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .hero {
    padding: 78px 0 36px;
  }

  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
  }

  .search__row {
    grid-template-columns: 1.1fr 0.9fr 1fr;
  }

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

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

  .contact {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .footer__inner {
    grid-template-columns: 1.3fr 1fr auto;
    align-items: start;
  }
}

/* Property detail page */
.detail__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.detail__back {
  padding-inline: 12px;
}

.detail__crumb {
  margin: 0;
  color: var(--muted-2);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.detail__crumb-label {
  color: var(--muted);
}

.detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.detail__main {
  min-width: 0;
}

.detail__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.detail__title {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 34px);
  letter-spacing: -0.03em;
}

.detail__location {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.detail__pricebox {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  min-width: 180px;
  text-align: right;
}

.detail__price {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.detail__unit {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 700;
}

.detail__gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.detail__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.detail__img--main {
  height: 280px;
}

.detail__section {
  margin-top: 18px;
  padding-top: 2px;
}

.detail__h2 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.detail__text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.detail__text--muted {
  color: var(--muted-2);
}

.detail__facts {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fact {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.fact__k {
  color: var(--muted-2);
  font-weight: 700;
  font-size: 12px;
}

.fact__v {
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.detail__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.detail__aside {
  position: relative;
  display: grid;
  gap: 12px;
}

.detail__asideSticky {
  display: grid;
  gap: 12px;
}

.detail__cta {
  padding: 16px;
  background: rgba(7, 11, 20, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
  z-index: 5;
  backdrop-filter: blur(10px);
}

.detail__form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

@media (min-width: 1020px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .property__media {
    min-height: 190px;
  }

  .detail__grid {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 16px;
    align-items: start;
  }

  .detail__gallery {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, 140px);
    gap: 10px;
  }

  .detail__img {
    height: 100%;
  }

  .detail__img--main {
    grid-row: 1 / span 3;
    height: 100%;
  }

  .detail__asideSticky {
    position: sticky;
    top: 86px;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding-right: 2px;
    scrollbar-gutter: stable;
  }

  .detail__cta {
    position: static;
  }
}

.detail__locationlink,
.aside-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.detail__locationlink:hover,
.aside-card__link:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
