* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0d12;
  color: white;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

img {
  display: block;
  max-width: 100%;
}

section {
  scroll-margin-top: 90px;
}

/* BUTTONS */
.btn-gold, .btn-ghost, .btn-outline, .btn-dark {
  font-size: 14px;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.2s ease;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, #e2bd85, #c8a46b);
  border: 1px solid #c8a46b;
  padding: 14px 30px;
  color: #0a0d12;
}

.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 30px;
  color: white;
  backdrop-filter: blur(6px);
}

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

.btn-ghost.light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline {
  border: 1px solid white;
  background: transparent;
  padding: 11px 24px;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #0a0d12;
}

.btn-outline.dark {
  border-color: #0a0d12;
  color: #0a0d12;
}

.btn-outline.dark:hover {
  background: #0a0d12;
  color: white;
}

.btn-dark {
  background: #0a0d12;
  border: 1px solid #0a0d12;
  padding: 14px 32px;
  color: white;
}

.btn-dark:hover {
  background: transparent;
  color: #0a0d12;
}

/* HEADER */
.header {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10,13,18,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 8px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lang-switch {
  display: flex;
  gap: 12px;
}

.lang-switch a {
  color: #7d838c;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-switch a.active,
.lang-switch a:hover {
  color: #e2bd85;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.social-icons a {
  color: #7d838c;
  display: flex;
}

.social-icons a:hover {
  color: #e2bd85;
}

.social-icons svg {
  width: 15px;
  height: 15px;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 60px;
}

.logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.logo-text {
  white-space: nowrap;
}

.logo span {
  color: #c8a46b;
}

.logo-mark {
  width: 38px;
  height: 28px;
}

.nav-toggle {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav a {
  margin: 0 16px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  opacity: 0.85;
}

nav a:hover {
  opacity: 1;
  color: #c8a46b;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 90px;
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,8,11,0.96) 0%, rgba(6,8,11,0.75) 45%, rgba(6,8,11,0.35) 100%),
    linear-gradient(to top, rgba(6,8,11,1) 0%, rgba(6,8,11,0) 35%);
}

.hero-inner {
  position: relative;
  width: 100%;
  padding: 160px 60px 0;
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  color: #c8a46b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero .lede {
  color: #cfd3d8;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-float-card {
  position: relative;
  z-index: 2;
  margin: 60px 60px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px 20px;
}

.hero-float-card .stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-float-card .stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #e2bd85;
}

.stat-label {
  display: block;
  font-size: 12.5px;
  color: #b8bcc2;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* SECTION HEADS */
.section-tag {
  color: #c8a46b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  margin-bottom: 14px;
  font-weight: 700;
}

.section-tag.light { color: #e8c893; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-head h2 { font-size: 32px; }

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-sub {
  color: #9aa0a8;
  margin-top: 12px;
  font-size: 15px;
}

/* BENTO */
.bento {
  padding: 110px 60px;
  background: #0e1218;
}

.bento-head {
  text-align: center;
  margin-bottom: 50px;
}

.bento-head h2 {
  font-size: 34px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.bento-image {
  grid-column: span 2;
}

.bento-image.tall {
  grid-row: span 1;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10,13,18,0.7);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.bento-text {
  grid-column: span 2;
  background: #171c24;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-text.accent {
  background: linear-gradient(135deg, #2a2115, #171c24);
  border-color: rgba(200,164,107,0.35);
}

.feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: invert(76%) sepia(22%) saturate(487%) hue-rotate(358deg) brightness(94%) contrast(89%);
}

.bento-text h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.bento-text p {
  color: #a7acb3;
  font-size: 14px;
  line-height: 1.6;
}

/* LISTINGS */
.listings {
  padding: 110px 60px;
  background: #0a0d12;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1300px;
  margin: 0 auto;
}

.listing-card {
  background: #12161d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.listing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,164,107,0.5);
}

.listing-media {
  position: relative;
  height: 220px;
}

.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #c8a46b;
  color: #0a0d12;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.listing-body {
  padding: 24px;
}

.listing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.listing-top h3 {
  font-size: 17px;
  line-height: 1.3;
}

.price {
  color: #e2bd85;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.listing-specs {
  color: #9aa0a8;
  font-size: 13.5px;
  margin-bottom: 20px;
}

/* APARTMENTS */
.apartments {
  padding: 110px 60px;
  background: #0e1218;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.type-card {
  background: #171c24;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 34px 22px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.type-card:hover {
  transform: translateY(-6px);
  border-color: #c8a46b;
}

.type-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c8a46b;
  border: 1px solid #c8a46b;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.type-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.type-card p {
  color: #9aa0a8;
  font-size: 14px;
}

/* GALLERY */
.gallery {
  padding: 110px 60px;
  background: #0a0d12;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-grid figure.wide {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

/* LOCATION */
.location {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,13,18,0.95) 30%, rgba(10,13,18,0.35) 100%);
}

.location-content {
  position: relative;
  max-width: 540px;
  padding: 0 60px;
}

.location-pin {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  margin-bottom: 20px;
}

.location-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.location-content p {
  color: #d5d8db;
  line-height: 1.7;
  font-size: 15.5px;
}

/* LOCATIONS MORE */
.locations-more {
  padding: 110px 60px;
  background: #0e1218;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.location-card {
  background: #171c24;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,164,107,0.5);
}

.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-info {
  padding: 22px;
}

.location-info h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.location-info p {
  color: #a7acb3;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.location-chip {
  display: inline-block;
  font-size: 12.5px;
  color: #e2bd85;
  border: 1px solid rgba(200,164,107,0.4);
  padding: 5px 12px;
  border-radius: 100px;
}

/* AGENT */
.agent {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 110px 60px;
  background: #0e1218;
}

.agent-media {
  flex: 1;
  max-width: 380px;
}

.agent-media img {
  border-radius: 18px;
}

.agent-text {
  flex: 1;
  max-width: 520px;
}

.agent-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.agent-text p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 26px;
  font-size: 15px;
}

/* CTA BAND */
.cta-band {
  text-align: center;
  padding: 90px 60px;
  background: linear-gradient(135deg, #e2bd85, #c8a46b);
  color: #0a0d12;
}

.cta-band h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-band p {
  margin-bottom: 28px;
  font-size: 15px;
  opacity: 0.85;
}

/* CONTACT */
.contact {
  display: flex;
  gap: 60px;
  padding: 110px 60px;
  background: #0a0d12;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 260px;
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

.contact-info p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: #171c24;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form button {
  align-self: flex-start;
}

/* FOOTER */
footer {
  background: #000;
  color: #888;
  padding: 60px 60px 30px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-grid p {
  margin-top: 12px;
  font-size: 13px;
  max-width: 260px;
}

.footer-grid h4 {
  color: white;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-grid a {
  display: block;
  color: #888;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: #c8a46b;
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  background: #171c24;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  color: white;
  font-size: 13px;
  border-radius: 100px;
  width: 150px;
}

.newsletter button {
  padding: 10px 18px;
  font-size: 13px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .bento-image, .bento-text { grid-column: span 2; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure.wide { grid-column: span 2; }
  .hero { flex-direction: column; align-items: stretch; }
  .hero-float-card { grid-template-columns: repeat(2, 1fr); }
  .hero-float-card .stat { border-right: none; margin-bottom: 16px; }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .topbar { padding: 8px 24px; }
  .header-main { padding: 14px 24px; position: relative; }
  .hamburger { display: flex; }
  .nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(10,13,18,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-toggle:checked ~ .nav-wrap {
    max-height: 420px;
    padding: 20px 24px 28px;
  }
  nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  nav a {
    margin: 0;
    font-size: 16px;
  }
  .nav-wrap .btn-outline {
    width: 100%;
  }
  .hero-inner { padding: 130px 24px 0; }
  .hero h1 { font-size: 38px; }
  .hero-float-card { margin: 40px 24px 0; }
  .bento, .listings, .apartments, .gallery, .contact, .agent, .cta-band { padding: 60px 24px; }
  .agent { flex-direction: column; }
  .type-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .location-content { padding: 0 24px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .locations-more { padding: 60px 24px; }
  .property-main { flex-direction: column; padding: 40px 24px; }
  .property-sidebar { position: static; width: 100%; }
  .breadcrumb { padding: 100px 24px 0; }
  .property-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* PROPERTY DETAIL PAGE */
.breadcrumb {
  padding: 110px 60px 0;
  font-size: 13px;
  color: #9aa0a8;
  max-width: 1300px;
  margin: 0 auto;
}

.breadcrumb a {
  color: #c8a46b;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.property-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  margin-top: 24px;
}

.property-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero .badge {
  position: absolute;
  top: 24px;
  left: 60px;
  font-size: 13px;
}

.property-main {
  display: flex;
  gap: 50px;
  padding: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start;
}

.property-content {
  flex: 2;
  min-width: 0;
}

.property-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.property-location {
  color: #9aa0a8;
  margin-bottom: 28px;
  font-size: 15px;
}

.property-content h2 {
  font-size: 20px;
  margin: 34px 0 14px;
  color: #e2bd85;
}

.property-content p {
  color: #c7cbd1;
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}

.property-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0 8px;
  list-style: none;
}

.property-features li {
  color: #c7cbd1;
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}

.property-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #c8a46b;
  font-weight: 700;
}

.property-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.property-gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.property-gallery-grid img:hover {
  transform: scale(1.03);
}

.property-sidebar {
  flex: 1;
  position: sticky;
  top: 110px;
  background: #12161d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  min-width: 280px;
}

.property-sidebar .price {
  font-size: 26px;
  color: #e2bd85;
  font-weight: 800;
  margin-bottom: 6px;
  display: block;
}

.property-sidebar .specs {
  color: #9aa0a8;
  font-size: 14px;
  margin-bottom: 22px;
}

.property-sidebar dl {
  margin-bottom: 24px;
}

.property-sidebar dt {
  font-size: 11.5px;
  color: #7d838c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 14px;
}

.property-sidebar dd {
  font-size: 14.5px;
  color: white;
  font-weight: 600;
}

.property-sidebar button {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
