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

:root {
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --card: #171717;
  --gold: #c9a66b;
  --gold-light: #e4c58d;
  --text: #f5f0e7;
  --muted: #b9b2a6;
  --border: rgba(201, 166, 107, 0.16);
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.dark-section {
  background: var(--bg-soft);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1, h2, h3, h4, .brand-text {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.03;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 28px;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 700;
  background: rgba(201, 166, 107, 0.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.brand-top {
  font-size: 22px;
  color: var(--white);
}

.brand-bottom {
  font-size: 24px;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  gap: 26px;
}

.nav-menu a {
  color: #ded8cf;
  font-size: 15px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s ease;
}

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 166, 107, 0.12), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(201, 166, 107, 0.08), transparent 28%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

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

.hero-text {
  max-width: 620px;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats h3 {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 2px;
}

.hero-stats p {
  font-size: 14px;
}

.hero-card {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-card-location {
  margin-top: 4px;
  margin-bottom: 18px;
}

.hero-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-card-meta span,
.property-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 13px;
  color: #ddd;
  background: rgba(255,255,255,0.03);
}

.hero-card-desc {
  margin-bottom: 20px;
}

.trust-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #101010;
}

.trust-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.trust-wrap span {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 1px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.point-card,
.about-panel,
.service-card,
.contact-box,
.contact-form,
.property-card,
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.point-card,
.service-card,
.contact-box {
  padding: 22px;
}

.point-card h4,
.contact-box h4 {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 22px;
}

.about-panel {
  padding: 28px;
}

.about-panel ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #ddd;
}

.about-panel ul li:last-child {
  border-bottom: none;
}

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

.property-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card {
  overflow: hidden;
  transition: 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.property-image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.property-image-1 {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=80");
}

.property-image-2 {
  background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80");
}

.property-image-3 {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80");
}

.property-content {
  padding: 22px;
}

.property-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-light);
  border: 1px solid rgba(201,166,107,0.25);
  background: rgba(201,166,107,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.property-location {
  margin: 8px 0 16px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.property-link {
  color: var(--gold);
  font-weight: 600;
}

.service-card h3 {
  margin-bottom: 10px;
}

.cta-box {
  padding: 40px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(201,166,107,0.08), rgba(255,255,255,0.02));
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-boxes {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-form {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #101010;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201,166,107,0.45);
}

.footer {
  background: #080808;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.footer-text {
  margin-top: 14px;
  max-width: 320px;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 24px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
}

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

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #888;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .property-grid,
  .services-grid,
  .footer-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hide-mobile {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .trust-wrap {
    justify-content: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}.site-logo {
  height: 60px;
  width: auto;
  display: block;
}