* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================= */

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #111827;
  background: #ffffff;
}

/* ========================= */

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.narrow {
  max-width: 850px;
}

/* ========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(0,0,0,0.96);

  border-bottom:
    1px solid rgba(201,162,39,0.12);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 0;
}

/* ========================= */

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.logo-text {
  color: white;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand small {
  color: #c9a227;
  font-size: 12px;
}

/* ========================= */

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: white;

  text-decoration: none;

  margin-left: 28px;

  font-size: 15px;
  font-weight: 500;

  transition: 0.3s;
}

nav a:hover {
  color: #c9a227;
}

/* ========================= */

.menu-btn {
  display: none;

  background: none;
  border: none;

  color: white;

  font-size: 30px;

  cursor: pointer;
}

/* ========================= */

.hero {
  position: relative;

  min-height: 92vh;

  display: flex;
  align-items: center;

  background:
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.84),
      rgba(0,0,0,0.52)
    );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 760px;
  color: white;
}

.hero-tag {
  display: inline-block;

  margin-bottom: 24px;

  padding: 10px 18px;

  border-radius: 999px;

  background:
    rgba(201,162,39,0.10);

  border:
    1px solid rgba(201,162,39,0.18);

  color: #c9a227;

  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.08;

  margin-bottom: 24px;
}

.hero p {
  max-width: 700px;

  font-size: 20px;

  color: #e5e7eb;

  margin-bottom: 36px;
}

/* ========================= */

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn {
  background: #c9a227;
  color: #050505;
}

.outline-btn {
  background: transparent;

  border: 1px solid white;

  color: white;
}

/* ========================= */

.section {
  padding: 95px 0;
}

.section h2 {
  font-size: 44px;
  line-height: 1.2;

  margin-bottom: 24px;

  color: #050505;
}

.section p {
  font-size: 17px;
  color: #4b5563;

  margin-bottom: 18px;
}

/* ========================= */

.section-label {
  display: inline-block;

  margin-bottom: 18px;

  color: #c9a227;

  font-size: 14px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.gold {
  color: #c9a227;
}

/* ========================= */

.light {
  background: #f8f7f3;
}

/* ========================= */

.two-column {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;
}

/* ========================= */

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 24px;

  margin-top: 40px;
}

.service-card {
  background: white;

  padding: 30px;

  border-radius: 14px;

  border:
    1px solid rgba(0,0,0,0.05);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.04);

  font-weight: 600;

  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

/* ========================= */

.why-list {
  margin-top: 24px;
  padding-left: 20px;
}

.why-list li {
  margin-bottom: 16px;
  color: #374151;
  font-size: 17px;
}

/* ========================= */

.section-header {
  margin-bottom: 40px;
}

/* ========================= */

#listingsContainer {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(340px, 1fr));

  gap: 30px;
}

/* ========================= */

.listing-card {
  background: white;

  border-radius: 18px;

  overflow: hidden;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.06);

  transition: 0.3s;
}

.listing-card:hover {
  transform: translateY(-5px);
}

.listing-image {
  width: 100%;
  height: 260px;

  object-fit: cover;
}

.listing-content {
  padding: 24px;
}

.listing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;

  margin-bottom: 14px;
}

.listing-top h3 {
  font-size: 24px;
  line-height: 1.3;
}

.listing-price {
  color: #c9a227;

  font-weight: 700;

  font-size: 18px;

  white-space: nowrap;
}

.listing-location {
  color: #6b7280;

  margin-bottom: 16px;

  font-size: 15px;
}

.listing-description {
  color: #4b5563;
  font-size: 15px;
}

/* ========================= */

.empty-message {
  color: #6b7280;
}

/* ========================= */

.contact-section {
  background: #050505;
}

.contact-wrapper {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: start;
}

.contact-left h2 {
  color: white;
}

.contact-left p {
  color: #d1d5db;
}

.contact-box {
  background: white;

  padding: 40px;

  border-radius: 16px;
}

.contact-box p {
  margin-bottom: 20px;
}

.contact-box a {
  color: #050505;
  font-weight: 600;
}

/* ========================= */

.footer {
  background: black;

  color: white;

  text-align: center;

  padding: 26px 20px;

  border-top:
    1px solid rgba(201,162,39,0.12);
}

/* ========================= */

@media (max-width: 900px) {

  .two-column,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
  }

}

/* ========================= */

@media (max-width: 768px) {

  .menu-btn {
    display: block;
  }

  nav {
    display: none;

    flex-direction: column;

    position: absolute;

    top: 88px;
    right: 0;

    width: 100%;

    background: black;

    padding: 24px;
  }

  nav.show {
    display: flex;
  }

  nav a {
    margin: 12px 0;
  }

  .hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .section h2 {
    font-size: 34px;
  }

  #listingsContainer {
    grid-template-columns: 1fr;
  }

}
