:root {
  --bg-dark: #05070c;
  --bg-darker: #020307;
  --accent: #f1c658;
  --accent-soft: rgba(241, 198, 88, 0.35);
  --text-primary: #f5f5f5;
  --text-secondary: rgba(245, 245, 245, 0.78);
  --surface: rgba(6, 8, 15, 0.88);
  --surface-alt: rgba(11, 15, 25, 0.92);
  --border: rgba(241, 198, 88, 0.3);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  font-size: 16px;
}

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

body {
  font-family: 'Nunito Sans', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.85), rgba(5, 7, 12, 0.95)),
    url('https://images.unsplash.com/photo-1505765050516-f72dcac9c60e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
  padding: 0 clamp(20px, 8vw, 120px) 80px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 8vw, 120px);
  backdrop-filter: blur(12px);
  background: rgba(5, 7, 12, 0.7);
  z-index: 10;
  border-bottom: 1px solid rgba(241, 198, 88, 0.25);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.5rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.whatsapp-btn {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.whatsapp-btn:hover {
  background: var(--accent);
  color: #05070c;
}

.hero-content {
  padding-top: 160px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 12px 0 16px;
  font-weight: 800;
}

.hero-copy p {
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
}

.hero-search {
  background: rgba(8, 11, 19, 0.9);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.search-header span {
  font-weight: 800;
  letter-spacing: 0.3rem;
  color: var(--accent);
}

.hero-search form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.hero-search input,
.hero-search select {
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 1rem;
}

.hero-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #f7d27b, #dca646);
  color: #0c0f18;
  font-weight: 700;
  cursor: pointer;
}

.hero-search button svg {
  width: 20px;
  height: 20px;
  fill: #0c0f18;
}

.search-links {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.search-links a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 100px clamp(20px, 8vw, 120px);
  position: relative;
}

.section:nth-of-type(even) {
  background: var(--bg-darker);
}

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

.section-tag {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 620px;
}

.ghost-btn,
.section .cta {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

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

.property-card {
  background: var(--surface);
  border: 1px solid rgba(241, 198, 88, 0.18);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.property-card img {
  height: 180px;
  object-fit: cover;
}

.property-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.property-card h3 {
  font-size: 1.15rem;
}

.property-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.property-card button {
  align-self: flex-start;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  background: rgba(241, 198, 88, 0.2);
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.launches {
  background: linear-gradient(180deg, rgba(7, 9, 15, 0.95), rgba(5, 7, 12, 0.98));
}

.method {
  background: #020307;
}

.method-content {
  text-align: center;
}

.method-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.method-grid article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(241, 198, 88, 0.18);
  border-radius: 24px;
  padding: 24px;
}

.method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
}

.team {
  background: radial-gradient(circle at top, rgba(241, 198, 88, 0.08), transparent), var(--bg-darker);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(241, 198, 88, 0.2);
}

.team-card img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.team-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.blog {
  background: var(--bg-darker);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  background: var(--surface-alt);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(241, 198, 88, 0.18);
}

.blog-card img {
  width: 45%;
  object-fit: cover;
}

.blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-body span {
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  color: var(--accent);
}

.blog-body button {
  align-self: flex-start;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(241, 198, 88, 0.25);
  color: var(--accent);
}

.site-footer {
  padding: 60px clamp(20px, 8vw, 120px);
  background: #000;
  border-top: 1px solid rgba(241, 198, 88, 0.18);
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.4rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  color: var(--text-secondary);
}

.footer-grid a {
  color: var(--accent);
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 960px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .hero-search {
    order: -1;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-card img {
    width: 100%;
    height: 180px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 0 20px 60px;
  }

  .site-nav {
    padding: 16px 20px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-top: 180px;
  }

  .search-links {
    flex-direction: column;
    gap: 8px;
  }
}
