﻿:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f5f1ea;
  --accent: #ff7a00;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(179, 130, 66, 0.12), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 40%, #111111 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.page-shell {
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
}

.page-shell::before {
  top: 4rem;
  left: -5rem;
  background: rgba(255, 122, 0, 0.2);
}

.page-shell::after {
  right: -7rem;
  bottom: 12rem;
  background: rgba(255, 208, 137, 0.14);
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 1.25rem 0;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.brand span {
  color: var(--accent);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.lang-link {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: rgba(245, 241, 234, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lang-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.lang-link.active {
  background: linear-gradient(135deg, #ffd08a 0%, var(--accent) 100%);
  color: #0c0c0c;
}

.mobile-language-select-wrap {
  display: none;
  position: relative;
}

.mobile-language-select {
  min-width: 8.5rem;
  padding: 0.75rem 2.7rem 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #141414;
  color: #f5f1ea;
  font-size: 0.92rem;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.mobile-language-select:focus {
  outline: none;
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.16);
}

.mobile-language-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #f9d9b2;
  pointer-events: none;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f9d9b2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd08a, var(--accent));
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.65);
}

.hero h1 {
  max-width: 14ch;
  margin: 1.25rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.hero-copy {
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 241, 234, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-luxury {
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.btn-primary-luxury {
  color: #0c0c0c;
  background: linear-gradient(135deg, #ffd08a 0%, var(--accent) 100%);
  border: none;
}

.btn-secondary-luxury {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  max-width: 48rem;
}

.stat-card {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  display: block;
  margin-top: 0.3rem;
  color: rgba(245, 241, 234, 0.72);
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.section-title em {
  color: var(--accent);
  font-style: italic;
}

.section-lead {
  max-width: 46rem;
  color: rgba(245, 241, 234, 0.75);
  line-height: 1.8;
  font-size: 1.02rem;
}

.value-grid {
  margin-top: 2.75rem;
  gap: 1.5rem 0;
}

.value-card {
  height: 100%;
  padding: 2rem 1.7rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.96), rgba(15, 15, 15, 0.96));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 1.2rem;
  color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.18), rgba(255, 122, 0, 0.08));
  border: 1px solid rgba(255, 122, 0, 0.24);
  font-size: 1.45rem;
}

.value-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.value-card p {
  margin: 0;
  color: rgba(245, 241, 234, 0.72);
  line-height: 1.8;
}

.catalog-wrap {
  position: relative;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.92), rgba(9, 9, 9, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.listing-card {
  height: 100%;
  overflow: hidden;
  border-radius: 1.65rem;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.listing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.listing-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.2 / 0.9;
}

.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.listing-card:hover .listing-media img {
  transform: scale(1.06);
}

.tag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8e29 0%, #ff5b2a 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(255, 91, 42, 0.28);
}

.listing-body {
  padding: 1.55rem 1.55rem 1.75rem;
}

.listing-location {
  color: #d3a66f;
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.listing-title {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.label {
  color: rgba(245, 241, 234, 0.78);
  font-weight: 600;
}

.main-price {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
}

.discount {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(25, 195, 125, 0.14);
  color: #5af0af;
  font-size: 0.82rem;
  font-weight: 700;
}

.old-price {
  color: rgba(245, 241, 234, 0.46);
  text-decoration: line-through;
  font-size: 1.05rem;
}

.listing-copy {
  margin-top: 1rem;
  color: rgba(245, 241, 234, 0.72);
  line-height: 1.75;
}

.listing-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-weight: 700;
}

.listing-cta span:last-child {
  color: var(--accent);
  transition: transform 0.25s ease;
}

.listing-card:hover .listing-cta span:last-child {
  transform: translateX(3px);
}

.site-footer {
  padding: 0 0 3rem;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-note {
  color: rgba(245, 241, 234, 0.45);
  font-size: 0.92rem;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 46rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .catalog-wrap {
    padding: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    padding: 1rem 0;
  }

  .brand {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .hero h1 {
    max-width: none;
  }

  .section,
  .hero-content {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  .listing-title {
    font-size: 1.75rem;
  }

  .desktop-language-switcher {
    display: none;
  }

  .mobile-language-select-wrap {
    display: block;
    flex-shrink: 0;
  }

  .header-tools {
    width: auto;
    flex-wrap: nowrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: flex-end;
  }

  .mobile-language-select {
    min-width: 6.75rem;
    padding: 0.62rem 2.2rem 0.62rem 0.8rem;
    font-size: 0.82rem;
  }

  .mobile-language-select-wrap::after {
    right: 0.8rem;
  }

  .footer-language-select-wrap {
    width: 100%;
  }

  .footer-language-select-wrap .mobile-language-select {
    width: 100%;
  }
}


