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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #071733;
  color: #ffffff;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(199,157,84,0.18) 0%, rgba(7,23,51,0) 70%);
  top: -150px;
  right: -200px;
  z-index: -1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 23, 51, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo-small {
  width: 80px;
}

.cta-top,
.btn-primary,
.btn-secondary {
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-top {
  color: #071733;
  background: #c79d54;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.cta-top:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.hero-content {
  max-width: 860px;
}

.hero-logo {
  width: 220px;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.25));
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #d6dce6;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c79d54;
  color: #071733;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

.section-title {
  margin-bottom: 50px;
}

.section-title span {
  color: #c79d54;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

.services {
  padding: 100px 0;
}

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

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 22px;
  transition: 0.35s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(199,157,84,0.5);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.card h3 {
  margin-bottom: 14px;
  color: #c79d54;
}

.card p {
  color: #d8dce5;
  line-height: 1.7;
}

.about {
  padding: 100px 0;
}

.about-content {
  max-width: 820px;
  line-height: 2;
  color: #e5e8ef;
  font-size: 1.05rem;
}

.about-content p {
  margin-bottom: 24px;
}

.about-content ul {
  margin: 30px 0;
  padding-left: 22px;
}

.about-content li {
  margin-bottom: 12px;
}

.cta-section {
  padding: 120px 0;
}

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 70px 30px;
  border-radius: 30px;
}

.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.cta-box p {
  color: #d6dce6;
  margin-bottom: 28px;
}

.footer {
  padding: 35px 20px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fade-up,
.hidden-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-logo {
    width: 170px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
