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

body {
  background: #0a0d14;
  color: #e7e7e7;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(10,13,20,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  z-index: 1000;
}

.brand {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: #d4af37;
}

.tagline {
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 4px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #d0d0d0;
  text-decoration: none;
}

.button-outline {
  border: 1px solid rgba(212,175,55,0.5);
  color: #e7c766;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 100px 8%;
  align-items: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #d4af37;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero p {
  font-size: 20px;
  color: #c4c4c4;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.button-gold,
.button-dark {
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button-gold {
  background: #d4af37;
  color: black;
}

.button-dark {
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
}

.stats-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 35px;
  display: grid;
  gap: 20px;
}

.stat {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
}

.stat h3 {
  font-size: 34px;
  color: white;
}

.section {
  padding: 100px 8%;
}

.dark-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin-bottom: 50px;
  max-width: 900px;
}

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

.card,
.profile-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 34px;
}

.card h3,
.profile-card h3 {
  margin-bottom: 16px;
  font-size: 26px;
  color: white;
}

.profile-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.contact-form {
  display: grid;
  gap: 20px;
  max-width: 850px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px;
  color: white;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 180px;
}

.contact-form button {
  width: fit-content;
  background: #d4af37;
  border: none;
  border-radius: 999px;
  padding: 16px 30px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 8%;
  color: #9f9f9f;
}

footer p {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  nav {
    display: none;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 20px;
  }
}
