:root {
  --ink: #09132b;
  --muted: #65708a;
  --line: #dfe4ef;
  --surface: #fff;
  --canvas: #f3f5fb;
  --primary: #5357ff;
  --accent: #b8ff4a;
  --shadow: 0 28px 70px rgba(15, 25, 55, 0.14);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ui-icon svg {
  width: 1.15em;
  height: 1.15em;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 32px));
  height: 76px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(20, 30, 60, 0.12);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--primary);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 38%, transparent);
}
.brand-mark img {
  width: 25px;
  height: 25px;
  filter: invert(1);
  object-fit: contain;
}
.brand b,
.brand small {
  display: block;
}
.brand b {
  font-size: 1rem;
}
.brand small {
  font-size: 0.72rem;
  color: var(--muted);
}
.site-header nav {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
}
.site-header nav a {
  position: relative;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 0;
  height: 3px;
  border-radius: 4px;
  background: var(--primary);
  transition: 0.25s;
}
.site-header nav a:hover:after {
  width: 100%;
}
.header-actions,
.hero-actions,
.contact-ribbon > div:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-button,
.save-property {
  border: 0;
  background: #eef0f8;
  color: var(--ink);
  border-radius: 15px;
  display: grid;
  place-items: center;
  position: relative;
}
.icon-button {
  width: 44px;
  height: 44px;
}
.favorite-count {
  position: absolute;
  top: -4px;
  left: -4px;
  min-width: 19px;
  height: 19px;
  border-radius: 20px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 900;
}
.outline-button,
.primary-button {
  min-height: 45px;
  padding: 0 20px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.outline-button {
  background: white;
}
.primary-button {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 28%, transparent);
}
main {
  overflow: hidden;
}
.hero {
  min-height: 990px;
  padding: 140px max(5vw, 24px) 80px;
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(560px, 1.2fr);
  grid-template-rows: 1fr auto;
  gap: 42px;
  align-items: center;
  position: relative;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(83, 87, 255, 0.12),
      transparent 27%
    ),
    radial-gradient(
      circle at 89% 45%,
      rgba(184, 255, 74, 0.16),
      transparent 26%
    );
}
.hero:before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(83, 87, 255, 0.16);
  border-radius: 50%;
  right: -270px;
  top: 120px;
  box-shadow:
    0 0 0 70px rgba(83, 87, 255, 0.025),
    0 0 0 140px rgba(83, 87, 255, 0.018);
}
.hero-copy {
  max-width: 590px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
}
.hero-copy > p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 550px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  padding: 12px;
}
.hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 42px;
}
.hero-proof div {
  position: relative;
  padding-right: 18px;
  border-right: 2px solid var(--line);
}
.hero-proof b,
.hero-proof span {
  display: block;
}
.hero-proof b {
  font-size: 1.7rem;
  line-height: 1;
}
.hero-proof span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
}
.hero-stage {
  height: 650px;
  position: relative;
  perspective: 1200px;
  isolation: isolate;
}
.stage-depth {
  position: absolute;
  inset: 9% 2% 4% 9%;
  border-radius: 55px;
  background: var(--primary);
  transform: rotate(-4deg) translateZ(-50px);
  opacity: 0.13;
}
.hero-photo {
  position: absolute;
  inset: 4% 4% 8% 5%;
  margin: 0;
  border-radius: 52px;
  overflow: hidden;
  box-shadow: 0 45px 90px rgba(16, 25, 60, 0.3);
  transform: rotate(2deg);
  border: 8px solid rgba(255, 255, 255, 0.9);
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 47%, rgba(8, 15, 35, 0.82));
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  right: 38px;
  color: white;
}
.hero-photo figcaption span,
.hero-photo figcaption b,
.hero-photo figcaption small {
  display: block;
}
.hero-photo figcaption span {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 900;
}
.hero-photo figcaption b {
  font-size: 1.6rem;
}
.hero-photo figcaption small {
  opacity: 0.8;
}
.floating-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid white;
  box-shadow: var(--shadow);
  border-radius: 23px;
}
.price-card {
  left: -18px;
  top: 11%;
  padding: 20px 24px;
  transform: rotate(-3deg);
}
.price-card span,
.price-card b,
.price-card small {
  display: block;
}
.price-card span {
  font-size: 0.72rem;
  color: var(--muted);
}
.price-card b {
  font-size: 1.4rem;
}
.price-card small {
  font-size: 0.68rem;
  color: #18957f;
}
.tour-card {
  right: -6px;
  bottom: 8%;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(3deg);
}
.tour-card b,
.tour-card small {
  display: block;
}
.tour-card small {
  font-size: 0.68rem;
  color: var(--muted);
}
.tour-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.orbit-chip {
  position: absolute;
  z-index: 3;
  background: #0a142d;
  color: #fff;
  border-radius: 99px;
  padding: 10px 15px;
  font-size: 0.74rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 14px 30px rgba(7, 15, 35, 0.24);
}
.chip-one {
  top: 7%;
  right: 11%;
  transform: rotate(4deg);
}
.chip-two {
  left: 5%;
  bottom: 3%;
  transform: rotate(-4deg);
}
.search-deck {
  grid-column: 1/-1;
  width: min(1180px, 100%);
  justify-self: center;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 27px;
  padding: 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 8px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 6;
}
.search-deck label {
  padding: 10px 17px;
  border-left: 1px solid var(--line);
}
.search-deck label span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 800;
}
.search-deck select,
.search-deck input {
  border: 0;
  background: transparent;
  width: 100%;
  outline: 0;
  font-weight: 800;
  color: var(--ink);
  min-height: 32px;
}
.search-deck button {
  border: 0;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
}
.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.signal-strip span {
  background: white;
  padding: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}
.properties-section {
  padding: 120px max(5vw, 24px);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 44px;
}
.section-heading h2,
.experience h2,
.calculator-section h2,
.contact-ribbon h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}
.section-heading > p {
  max-width: 430px;
  color: var(--muted);
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.property-card {
  background: white;
  border-radius: 30px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 45px rgba(18, 28, 58, 0.08);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  transform-style: preserve-3d;
}
.property-card:hover {
  transform: translateY(-10px) rotateX(1.2deg);
  box-shadow: 0 30px 70px rgba(18, 28, 58, 0.15);
}
.property-media {
  height: 290px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: block;
}
.property-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 15, 35, 0.05),
    transparent 55%,
    rgba(7, 15, 35, 0.3)
  );
}
.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.property-card:hover .property-media img {
  transform: scale(1.055);
}
.purpose-badge,
.status-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  padding: 7px 12px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 900;
}
.purpose-badge {
  right: 15px;
  background: var(--accent);
  color: var(--ink);
}
.status-badge {
  right: 76px;
  background: #fff;
  color: var(--ink);
}
.save-property {
  z-index: 3;
  position: absolute;
  left: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
}
.is-saved .save-property {
  background: var(--primary);
  color: #fff;
}
.property-body {
  padding: 20px 15px 16px;
}
.property-ref {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.69rem;
}
.property-ref span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.property-body h3 {
  font-size: 1.35rem;
  margin: 8px 0 14px;
  line-height: 1.3;
}
.property-specs {
  display: flex;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.property-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
.property-footer strong {
  font-size: 1.18rem;
}
.property-footer small {
  font-size: 0.65rem;
  color: var(--muted);
}
.compare-check {
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.compare-check input {
  accent-color: var(--primary);
}
.empty-state {
  text-align: center;
  background: white;
  border-radius: 30px;
  padding: 60px;
}
.empty-state > .ui-icon {
  font-size: 3rem;
}
.experience {
  padding: 110px max(5vw, 24px);
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.experience-visual {
  height: 660px;
  position: relative;
}
.experience-visual:before {
  content: "";
  position: absolute;
  inset: 5% 7% -3% -4%;
  border: 1px solid rgba(184, 255, 74, 0.35);
  border-radius: 45px;
  transform: rotate(-5deg);
}
.experience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 45px;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32);
}
.visual-note {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 35px;
  width: 290px;
  padding: 22px;
  border-radius: 22px;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.visual-note b,
.visual-note span {
  display: block;
}
.visual-note span {
  font-size: 0.78rem;
  margin-top: 4px;
}
.experience-copy > p {
  color: #aeb7ca;
  font-size: 1.05rem;
}
.feature-stack {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.feature-stack article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
}
.feature-stack i {
  font-style: normal;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(184, 255, 74, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.feature-stack b,
.feature-stack span {
  display: block;
}
.feature-stack span {
  font-size: 0.78rem;
  color: #aeb7ca;
}
.calculator-section {
  padding: 120px max(5vw, 24px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: center;
  background: linear-gradient(130deg, #eef0ff, #f8f9fc 65%);
}
.calculator-copy > p {
  color: var(--muted);
}
.calculator-result {
  margin-top: 34px;
  background: var(--ink);
  color: white;
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.calculator-result span,
.calculator-result strong,
.calculator-result small {
  display: block;
}
.calculator-result strong {
  font-size: 2.2rem;
  color: var(--accent);
}
.calculator-result small {
  color: #aeb7ca;
}
.calculator-card {
  background: white;
  border-radius: 35px;
  padding: 36px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}
.calculator-card label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 28px;
}
.calculator-card label span {
  font-weight: 800;
}
.calculator-card output {
  color: var(--primary);
  font-weight: 900;
}
.calculator-card input {
  grid-column: 1/-1;
  width: 100%;
  accent-color: var(--primary);
}
.contact-ribbon {
  margin: 90px max(5vw, 24px);
  padding: 50px;
  border-radius: 35px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 30px 70px rgba(122, 174, 36, 0.18);
}
.contact-ribbon .eyebrow {
  color: #315f00;
}
.contact-ribbon h2 {
  max-width: 700px;
}
.contact-ribbon .primary-button {
  background: var(--ink);
  border-color: var(--ink);
}
footer {
  padding: 40px max(5vw, 24px);
  background: white;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
footer p {
  color: var(--muted);
  font-size: 0.8rem;
}
footer > div {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 800;
}
.compare-dock {
  position: fixed;
  z-index: 70;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: white;
  border-radius: 20px;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 22px 50px rgba(6, 14, 32, 0.35);
  transition: 0.35s;
}
.compare-dock.is-visible {
  transform: translate(-50%, 0);
}
.compare-dock button {
  border: 0;
}
.compare-open {
  background: var(--accent);
  border-radius: 13px;
  padding: 10px 16px;
  font-weight: 900;
  display: flex;
  gap: 7px;
  align-items: center;
}
.compare-clear {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.compare-dialog {
  width: min(750px, calc(100% - 30px));
  border: 0;
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}
.compare-dialog::backdrop {
  background: rgba(7, 14, 30, 0.64);
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: absolute;
  top: 18px;
  left: 18px;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.compare-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 25px;
}
.compare-table article {
  padding: 20px;
  border-radius: 18px;
  background: var(--canvas);
}
.compare-table b,
.compare-table span,
.compare-table small {
  display: block;
}
.compare-table span {
  font-weight: 900;
  color: var(--primary);
  margin: 8px 0;
}
.compare-table small {
  color: var(--muted);
}
@media (max-width: 1050px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 130px;
  }
  .hero-copy {
    max-width: 720px;
  }
  .hero-stage {
    height: 620px;
  }
  .search-deck {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-deck button {
    min-height: 58px;
  }
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience,
  .calculator-section {
    grid-template-columns: 1fr;
  }
  .experience-visual {
    max-width: 740px;
  }
  .contact-ribbon {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .site-header {
    top: 8px;
    height: 66px;
    width: calc(100% - 16px);
  }
  .site-header .outline-button,
  .brand small {
    display: none;
  }
  .brand-mark {
    width: 43px;
    height: 43px;
  }
  .hero {
    padding: 110px 16px 55px;
    gap: 20px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero-stage {
    height: 460px;
  }
  .hero-photo {
    inset: 6% 0 8%;
    border-radius: 32px;
  }
  .price-card {
    left: 0;
    top: 4%;
    padding: 14px;
  }
  .tour-card {
    right: 0;
    bottom: 2%;
  }
  .orbit-chip {
    display: none;
  }
  .hero-proof {
    gap: 14px;
  }
  .hero-proof div {
    padding-right: 10px;
  }
  .search-deck {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .search-deck label {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .signal-strip span {
    font-size: 0.72rem;
    padding: 16px 8px;
  }
  .properties-section {
    padding: 75px 16px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .property-grid {
    grid-template-columns: 1fr;
  }
  .property-media {
    height: 270px;
  }
  .experience {
    padding: 75px 16px;
  }
  .experience-visual {
    height: 480px;
  }
  .visual-note {
    right: 10px;
    width: calc(100% - 20px);
  }
  .calculator-section {
    padding: 75px 16px;
  }
  .calculator-card {
    padding: 24px;
    transform: none;
  }
  .contact-ribbon {
    margin: 60px 16px;
    padding: 30px 22px;
  }
  .contact-ribbon > div:last-child {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .compare-table {
    grid-template-columns: 1fr;
  }
  .compare-dock {
    width: calc(100% - 24px);
    justify-content: space-between;
    gap: 8px;
  }
  .compare-dock span {
    font-size: 0.72rem;
  }
}

.property-main {
  padding: 125px max(4vw, 20px) 80px;
  overflow: visible;
}
.property-showcase {
  height: 620px;
  display: grid;
  grid-template-columns: 2fr 0.72fr;
  gap: 14px;
  position: relative;
}
.showcase-photo,
.showcase-side img {
  overflow: hidden;
  border-radius: 32px;
}
.showcase-photo {
  position: relative;
}
.showcase-photo img,
.showcase-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(7, 14, 30, 0.25));
}
.showcase-count {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 13px;
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  gap: 7px;
  align-items: center;
}
.showcase-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.showcase-floating {
  position: absolute;
  z-index: 3;
  right: 25px;
  top: 25px;
  background: var(--accent);
  padding: 13px 17px;
  border-radius: 17px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.14);
  transform: rotate(2deg);
}
.showcase-floating span,
.showcase-floating b {
  display: block;
}
.showcase-floating span {
  font-size: 0.65rem;
}
.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 60px;
  align-items: start;
  max-width: 1240px;
  margin: 65px auto;
}
.property-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.property-title-row h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0 0 12px;
}
.property-title-row p {
  color: var(--muted);
}
.detail-specs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 35px 0;
  padding: 14px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 40px rgba(20, 30, 60, 0.07);
}
.detail-specs > span {
  padding: 15px 12px;
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px;
}
.detail-specs > span:last-child {
  border: 0;
}
.detail-specs small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.65rem;
}
.description-block,
.amenities-block {
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
}
.description-block h2,
.amenities-block h2,
.location-card h2,
.related-section h2 {
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  margin: 0 0 15px;
}
.description-block p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 2;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 25px;
}
.amenities-grid span {
  background: white;
  border-radius: 15px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}
.amenities-grid .ui-icon {
  color: var(--primary);
}
.location-card {
  margin-top: 55px;
  border-radius: 32px;
  background: white;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: center;
}
.location-card p {
  color: var(--muted);
}
.map-visual {
  height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, #e4e8f6, #f8f9fc);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.map-visual:before,
.map-visual:after {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  background: white;
  transform: rotate(28deg);
}
.map-visual:after {
  transform: rotate(-38deg);
}
.map-visual > span {
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 15px 30px rgba(83, 87, 255, 0.35);
}
.inquiry-card {
  position: sticky;
  top: 112px;
  background: white;
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid white;
}
.inquiry-label {
  color: var(--muted);
  font-size: 0.72rem;
}
.inquiry-card > strong {
  display: block;
  font-size: 2.1rem;
  color: var(--primary);
  line-height: 1.2;
}
.inquiry-card > small {
  color: var(--muted);
}
.agent-mini {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 22px 0;
  padding: 15px 0;
  border-block: 1px solid var(--line);
  position: relative;
}
.agent-avatar {
  width: 45px;
  height: 45px;
  border-radius: 15px;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.agent-mini b,
.agent-mini small {
  display: block;
}
.agent-mini small {
  font-size: 0.68rem;
  color: var(--muted);
}
.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25c990;
  margin-right: auto;
  box-shadow: 0 0 0 5px rgba(37, 201, 144, 0.12);
}
.inquiry-form {
  display: grid;
  gap: 12px;
}
.inquiry-form label span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8f9fc;
  padding: 11px 13px;
  outline: 0;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(83, 87, 255, 0.1);
}
.inquiry-form .primary-button {
  width: 100%;
  border: 0;
}
.inquiry-trust {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.6rem;
  color: var(--muted);
}
.inquiry-trust span {
  display: flex;
  align-items: center;
  gap: 3px;
}
.form-success {
  text-align: center;
  padding: 35px 10px;
}
.form-success > .ui-icon {
  font-size: 3rem;
  color: #1ca97f;
}
.form-success h3 {
  margin: 10px 0;
}
.form-success p {
  color: var(--muted);
}
.form-error {
  padding: 10px;
  border-radius: 12px;
  background: #fff0f0;
  color: #a82424;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.related-section {
  padding: 50px max(4vw, 20px) 110px;
}
.copied {
  background: var(--accent) !important;
}
.property-page footer {
  padding-inline: max(4vw, 20px);
}
@media (max-width: 1000px) {
  .property-showcase {
    height: 520px;
  }
  .property-layout {
    grid-template-columns: 1fr;
  }
  .inquiry-card {
    position: relative;
    top: 0;
    max-width: 640px;
  }
  .detail-specs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 650px) {
  .property-main {
    padding: 90px 12px 50px;
  }
  .property-showcase {
    height: 480px;
    grid-template-columns: 1fr;
  }
  .showcase-side {
    display: none;
  }
  .property-layout {
    margin: 40px 4px;
    gap: 35px;
  }
  .property-title-row h1 {
    font-size: 2.8rem;
  }
  .detail-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-specs > span {
    border: 0;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .location-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .related-section {
    padding-inline: 16px;
  }
}
