* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 14px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 20px;
}

.logo-wrap {
  width: 82px;
  height: 82px;
  background: #fff;
  border: 3px solid #d4af37;
  border-radius: 50%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(184, 134, 11, 0.25);
  overflow: hidden;
}

.site-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav a:hover {
  color: #b8860b;
}

.menu-btn {
  display: none;
  background: #b8860b;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 80px 8%;
  background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
}

.hero-content {
  max-width: 700px;
}

.tagline,
.section-label {
  color: #b8860b;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn.gold {
  background: #b8860b;
  color: #fff;
}

.btn.gold:hover {
  background: #9c7208;
}

.btn.white {
  border: 2px solid #b8860b;
  color: #b8860b;
  background: #fff;
}

.btn.white:hover {
  background: #fff7df;
}

/* Hero Image - full image visible */
.hero-image {
  width: 100%;
  background: #fffaf0;
  border: 3px solid #d4af37;
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  background: #b8860b;
  color: #fff;
  padding: 20px;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 80px 8%;
}

.section h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
}

.about-card {
  background: #fffaf0;
  border: 1px solid #e6c46a;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.profile-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  margin-bottom: 20px;
  border: 2px solid #d4af37;
  background: #fff;
}

.about-card h3 {
  color: #b8860b;
  margin-bottom: 10px;
}

/* Cards */
.cards,
.listing-grid,
.why-grid {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

.cards {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.listing-card,
.why-grid div {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card h3,
.listing-card h3,
.why-grid h3 {
  color: #b8860b;
  margin-bottom: 10px;
}

/* Listings */
.listings {
  background: #fffaf0;
}

.listing-intro {
  max-width: 700px;
  margin-bottom: 25px;
}

.listing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.listing-img {
  height: 200px;
  background: #fff;
  border: 2px dashed #d4af37;
  border-radius: 15px;
  margin-bottom: 20px;
  color: #b8860b;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-btn {
  margin-top: 30px;
}

/* Why Section */
.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Contact */
.contact {
  background: #fff;
  text-align: center;
}

.contact p {
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 30px;
  color: #555;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 40px 8%;
}

.footer h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

/* Tablet and Mobile */
@media (max-width: 900px) {
  .header {
    padding: 12px 6%;
  }

  .menu-btn {
    display: block;
  }

  .menu-btn.open {
    background: #111;
    color: #d4af37;
  }

  .nav {
    position: absolute;
    top: 92px;
    right: 6%;
    background: #fff;
    flex-direction: column;
    width: 240px;
    padding: 22px;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    display: none;
  }

  .nav.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .nav a {
    padding: 10px 0;
  }

  .logo-wrap {
    width: 62px;
    height: 62px;
  }

  .logo-area span {
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 6%;
    text-align: center;
    gap: 35px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .trust-bar,
  .about,
  .cards,
  .listing-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 6%;
  }
}

/* Small Mobile */
@media (max-width: 500px) {
  .logo-area span {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    padding: 8px;
    border-radius: 22px;
  }

  .hero-image img {
    border-radius: 16px;
  }

  .about-card {
    padding: 22px;
  }
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}