/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f6f6;
  color: #111;
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

.logo span {
  color: #d4af37; /* gold accent */
}

.main-nav a {
  margin-left: 1.25rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

/* Hero */

.hero {
  background: #ffffff;
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid #eee;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.hero p {
  max-width: 36rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-panel {
  background: #111;
  color: #fff;
  padding: 1.75rem;
  border-radius: 0.75rem;
}

.hero-stats-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4af37;
  margin: 0 0 0.75rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.hero-stats span {
  font-weight: 600;
}

/* Sections */

.section {
  padding: 3.5rem 0;
  background: #ffffff;
}

.section-alt {
  background: #f1f1f1;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: #555;
}

/* Layout helpers */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Cards */

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

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e5e5;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.card-location {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #777;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.card-list li {
  margin-bottom: 0.15rem;
}

/* About & Invest */

.about-highlights ul,
.invest-points ul {
  padding-left: 1.1rem;
}

.about-highlights li,
.invest-points li {
  margin-bottom: 0.4rem;
}

/* Availability */

.availability {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #111;
  color: #ffffff;
}

.availability-status {
  margin-top: 0;
  font-weight: 600;
}

/* Contact */

.contact-wrap {
  align-items: flex-start;
}

.contact-detail a {
  color: #d4af37;
}

.contact-form {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e2e2;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #ccc;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.1s;
}

.btn.primary {
  background: #111;
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

.btn.outline {
  border-color: #111;
  background: transparent;
}

.btn.outline:hover {
  background: #111;
  color: #fff;
}

.btn.full-width {
  width: 100%;
}

/* Footer */

.site-footer {
  padding: 1.5rem 0;
  background: #111;
  color: #aaa;
  font-size: 0.85rem;
}

.footer-inner {
  text-align: center;
}

/* Responsive */

@media (max-width: 800px) {
  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    height: auto;
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .main-nav a {
    margin-left: 0;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 3.25rem;
  }
}