
:root {
  --gold: #c6a76d;
  --gold-soft: #e2cf9f;
  --charcoal: #1c1e26;
  --bg: #f5f5f5;
  --white: #ffffff;
  --muted: #777777;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
}

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

header {
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand img {
  height: 52px;
  width: auto;
}

.brand-text h1 {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.brand-text p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  font-size: 0.9rem;
}

nav li a {
  position: relative;
  padding-bottom: 0.2rem;
}

nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

nav li a:hover::after {
  width: 100%;
}

.btn {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
}

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

.hero {
  max-width: 1100px;
  margin: 2.5rem auto 2rem;
  padding: 1rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
}

.hero-text h2 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.hero-text h2 span {
  color: var(--gold);
}

.hero-text p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1.8rem;
}

.badge {
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  border: 1px solid #e5e5e5;
}

.hero-cards {
  background: linear-gradient(135deg, #fdfaf4, #f7f0de);
  border-radius: 1.2rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 16px 35px rgba(0,0,0,0.07);
}

.hero-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid #f0e4c7;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card-body {
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem 2rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h3 {
  font-size: 1.4rem;
}

.section-header p {
  color: var(--muted);
  font-size: 0.9rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.3rem;
  border: 1px solid #ececec;
}

.feature h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--muted);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.property-card {
  background: var(--white);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.property-body {
  padding: 1rem 1.2rem 1.2rem;
}

.property-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.property-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.tag {
  background: #f3f0e8;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.testimonial {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 1.3rem;
  padding: 1.8rem 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.5rem;
}

.testimonial-quote {
  font-style: italic;
  font-size: 0.95rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: #d6d6d6;
}

.cta {
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 1.2rem;
  padding: 1.5rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.cta-text p {
  font-size: 0.9rem;
}

footer {
  border-top: 1px solid #e1e1e1;
  background: #fdfdfd;
  padding: 1.5rem 1.5rem 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 2rem;
  justify-content: space-between;
}

.footer-contact span {
  margin-right: 0.9rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-cards {
    order: -1;
  }
  nav ul {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-text h2 {
    font-size: 1.7rem;
  }
}
.brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand img {
    width: 120px; /* adjust size here */
    height: auto;
}

.brand-text h1 {
    margin: 0;
    font-size: 2rem;
    color: #b5963c; /* gold tone */
}

.brand-text p {
    margin: 0;
    font-size: 1rem;
    color: #444;
}
