:root {
  --black-900: #050506;
  --black-850: #0a0a0d;
  --black-800: #121216;
  --black-700: #1b1b21;
  --gold-500: #f4f7ff;
  --gold-400: #d5dceb;
  --gold-300: #aab5c9;
  --text-100: #f4f7ff;
  --text-300: #a8b1c2;
  --border-gold: rgba(232, 238, 252, 0.18);
  --shadow-gold: 0 22px 45px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 238, 252, 0.12);
  --container: min(1140px, 92vw);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-100);
  background:
    radial-gradient(circle at 8% -15%, rgba(241, 247, 255, 0.08), transparent 45%),
    radial-gradient(circle at 96% 8%, rgba(205, 216, 238, 0.06), transparent 40%),
    linear-gradient(160deg, #0b0d12 0%, #141821 34%, #191f2a 72%, #121720 100%);
  line-height: 1.55;
  min-height: 100vh;
}
.imv{
    text-align: center;
}
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.2;
  z-index: -1;
}

h1,
h2,
h3,
.brand strong {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(8, 11, 16, 0.86);
  border-bottom: 1px solid rgba(232, 238, 252, 0.14);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(232, 238, 252, 0.22);
  padding: 4px;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--gold-400);
}

.brand-text small {
  font-size: 0.67rem;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--text-300);
}

.nav-links a {
  transition: color 0.24s ease;
}

.nav-links a:hover {
  color: var(--gold-400);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-sm {
  padding: 0.6rem 1.05rem;
  font-size: 0.84rem;
}

.btn-gold {
  color: #0b0d12;
  background: linear-gradient(120deg, #f6f9ff, #d8e0ef);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

.btn-outline {
  border-color: rgba(232, 238, 252, 0.42);
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(232, 238, 252, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.topbar .btn-outline:hover {
  background: #ffffff;
  color: #0b0d12;
  border-color: #ffffff;
}

.hero {
  padding: 4.5rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4rem;
  align-items: center;
}

.badge,
.kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-400);
  border: 1px solid rgba(232, 238, 252, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  background: rgba(232, 238, 252, 0.08);
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  max-width: 16ch;
  color: var(--text-100);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.hero-copy h1 span {
  color: #ffffff;
  background: linear-gradient(transparent 62%, rgba(255, 255, 255, 0.16) 62%);
  padding: 0 0.12em;
}

.hero-copy p {
  margin-top: 1rem;
  max-width: 54ch;
  color: var(--text-300);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.metrics {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  list-style: none;
}

.metrics li {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(232, 238, 252, 0.08), rgba(12, 15, 21, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(232, 238, 252, 0.16);
}

.metrics strong {
  display: block;
  font-size: 1.18rem;
  color: var(--gold-400);
}

.metrics span {
  font-size: 0.79rem;
  color: var(--text-300);
}

.hero-feature {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.hero-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.hero-feature img {
  height: 540px;
}

.feature-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  border-radius: 16px;
  padding: 1rem;
  background: rgba(10, 12, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.feature-card p {
  color: #dee6f2;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-top: 0.25rem;
  font-size: 1.26rem;
  color: #f7f9fc;
}

.feature-card span {
  display: block;
  color: rgba(239, 245, 255, 0.78);
  font-size: 0.88rem;
  margin: 0.15rem 0 0.5rem;
}

.feature-card strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.section-head {
  max-width: 75ch;
  margin-bottom: 1.7rem;
}

.section-head h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.2;
  color: var(--text-100);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.section-head p {
  margin-top: 0.8rem;
  color: var(--text-300);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(232, 238, 252, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-300);
  padding: 0.54rem 0.95rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: rgba(232, 238, 252, 0.7);
  color: #0b0d12;
  background: linear-gradient(120deg, #f6f9ff, #d6dfef);
}

.results {
  margin: 1rem 0 1.4rem;
  color: var(--text-300);
}

.catalog-note {
  margin-top: 1rem;
  color: var(--text-300);
  font-size: 0.85rem;
}

.results span {
  color: var(--gold-400);
  font-weight: 800;
}

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

.property-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(232, 238, 252, 0.14);
  background: linear-gradient(180deg, rgba(13, 16, 23, 0.98), rgba(10, 13, 19, 0.97));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.property-media {
  position: relative;
  height: 225px;
  overflow: hidden;
  background: rgba(8, 11, 16, 0.9);
}

.property-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.property-slide.is-active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(232, 238, 252, 0.45);
  background: rgba(8, 11, 16, 0.75);
  color: #f4f7ff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.carousel-btn.prev {
  left: 0.55rem;
}

.carousel-btn.next {
  right: 0.55rem;
}

.carousel-btn:hover {
  background: rgba(232, 238, 252, 0.92);
  color: #0b0d12;
  border-color: rgba(232, 238, 252, 0.95);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 3;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(232, 238, 252, 0.65);
  background: rgba(232, 238, 252, 0.3);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-dot.is-active {
  width: 23px;
  background: rgba(245, 249, 255, 0.95);
  border-color: rgba(245, 249, 255, 0.95);
}

.property-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 238, 252, 0.34);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(232, 238, 252, 0.2);
}

.property-card:hover .property-slide.is-active {
  transform: scale(1.04);
}

.property-content {
  padding: 1rem;
}

.tag {
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(232, 238, 252, 0.14);
  color: #f7f9fc;
  border: 1px solid rgba(232, 238, 252, 0.28);
}

.property-content h3 {
  margin-top: 0.64rem;
  font-size: 1.15rem;
}

.property-content p {
  color: var(--text-300);
  margin-top: 0.2rem;
}

.property-content ul {
  margin: 0.76rem 0 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  list-style: none;
}

.property-content li {
  font-size: 0.78rem;
  border: 1px solid rgba(232, 238, 252, 0.18);
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
  color: var(--text-300);
  background: rgba(255, 255, 255, 0.04);
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.card-bottom strong {
  color: var(--gold-400);
  font-size: 1.02rem;
}

.card-bottom a {
  font-size: 0.82rem;
  border: 1px solid rgba(232, 238, 252, 0.42);
  border-radius: 999px;
  padding: 0.34rem 0.68rem;
  color: var(--text-100);
  white-space: nowrap;
}

.card-bottom a:hover {
  background: rgba(232, 238, 252, 0.9);
  color: #0b0d12;
}

.property-card.filtered-out {
  display: none;
}

.advantages {
  padding-top: 4.3rem;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.3rem;
  align-items: start;
}

.adv-cards {
  display: grid;
  gap: 0.9rem;
}

.adv-card {
  border-radius: 16px;
  padding: 1.05rem 1rem;
  background:
    linear-gradient(150deg, rgba(232, 238, 252, 0.08), rgba(13, 16, 23, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(232, 238, 252, 0.16);
}

.adv-card h3 {
  color: var(--gold-400);
  font-size: 1.02rem;
}

.adv-card p {
  margin-top: 0.42rem;
  color: var(--text-300);
}

.contact {
  padding-top: 4.4rem;
}

.contact-box {
  border-radius: 24px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
  padding: clamp(1.1rem, 3vw, 2rem);
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr 1fr;
  background:
    radial-gradient(circle at top right, rgba(232, 238, 252, 0.08), transparent 48%),
    linear-gradient(160deg, rgba(13, 16, 23, 0.95), rgba(10, 13, 19, 0.94));
}

.contact-list {
  margin-top: 0.9rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--text-300);
}

.contact-form {
  display: grid;
  gap: 0.72rem;
}

.contact-form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.88rem;
  color: var(--text-300);
}

.form-helper {
  color: var(--text-300);
  font-size: 0.79rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(232, 238, 252, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #f4f7ff;
  padding: 0.68rem 0.75rem;
  font-family: inherit;
}

.contact-form select option {
  color: #0b0d12;
  background: #f4f7ff;
}

.contact-form select:required:invalid {
  color: #a8b1c2;
}

.contact-form select option[value=""] {
  color: #6f7888;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(232, 238, 252, 0.74);
  box-shadow: 0 0 0 3px rgba(232, 238, 252, 0.14);
}

.footer {
  border-top: 1px solid rgba(232, 238, 252, 0.14);
  padding: 1.2rem 0 1.6rem;
  text-align: center;
  color: #9fa8ba;
  font-size: 0.86rem;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: #0b0d12;
  background: linear-gradient(120deg, #f6f9ff, #d6dfef);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.floating-cta:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .adv-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-feature img {
    height: 460px;
  }

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

@media (max-width: 780px) {
  .topbar {
    position: relative;
  }

  .nav-wrap {
    min-height: 78px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 3rem;
  }

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

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

  .hero-feature img {
    height: 360px;
  }

  .floating-cta {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}
