/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #D4AF37; /* Gold */
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover,
a:focus {
  color: #fff;
  outline: none;
}
h1, h2, h3, h4 {
  font-weight: 700;
  margin-top: 0;
  color: #D4AF37;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}
p {
  color: #eee;
  font-weight: 400;
}
main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
  width: 100%;
}
/* Header */
.header {
  background-color: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid #3b3b3b;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(10px);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 1.25px;
  user-select: none;
  white-space: nowrap;
}
nav {
  display: none;
}
.nav-desktop .nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus {
  background-color: rgba(212, 175, 55, 0.25);
  color: #fff;
  outline: none;
}
/* Mobile menu button */
.mobile-toggle {
  background: none;
  border: none;
  color: #D4AF37;
  font-size: 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: color 0.3s ease;
}
.mobile-toggle:hover,
.mobile-toggle:focus {
  color: #fff;
  outline: none;
}
/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #121212;
  display: none;
  flex-direction: column;
  padding-top: 80px;
  gap: 24px;
  z-index: 1500;
  overflow-y: auto;
  scroll-padding-top: 80px;
}
.mobile-menu.show {
  display: flex;
}
.mobile-menu a {
  font-size: 1.5rem;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.mobile-menu a:hover,
.mobile-menu a:focus {
  background-color: rgba(212, 175, 55, 0.25);
  color: #fff;
  outline: none;
}

/* Hero Section */
.hero {
  padding: 80px 16px 64px;
  max-width: 1000px;
  margin: 0 auto 64px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  justify-content: center;
  text-align: left;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.hero-text {
  flex: 1 1 350px;
  min-width: 300px;
}
.hero-text h1 {
  font-size: 3rem;
  color: #D4AF37;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-text p {
  font-size: 1.2rem;
  color: #e5d77a;
  font-weight: 600;
  margin-bottom: 32px;
}
.btn-primary {
  background: linear-gradient(90deg, #D4AF37, #B8860B);
  color: #000;
  border: none;
  padding: 16px 48px;
  font-size: 1.125rem;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.6);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  font-weight: 700;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.9);
  transform: translateY(-4px);
  color: #000;
  outline: none;
}
.hero-image {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(212,175,55,0.8);
  transition: transform 0.3s ease;
}
.hero-image img {
  max-width: 100%;
  display: block;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.hero-image:hover,
.hero-image:focus-within {
  transform: scale(1.05);
}

/* Services */
.services {
  margin-bottom: 80px;
}
.services h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 48px;
  color: #D4AF37;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}
.service-card {
  background: #181818;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  cursor: default;
  outline-offset: 3px;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45);
  transform: translateY(-8px);
  outline: none;
}
.service-icon {
  font-size: 56px;
  margin-bottom: 28px;
  color: #D4AF37;
  transition: color 0.3s ease;
}
.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  color: #fff;
}
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #D4AF37;
}
.service-desc {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.45;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 96px;
  align-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.about-content {
  flex: 1 1 400px;
  min-width: 300px;
}
.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  color: #D4AF37;
}
.about-content p {
  font-size: 1.125rem;
  color: #ddd;
  line-height: 1.6;
}
.about-decor {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(212,175,55,0.75);
  transition: transform 0.3s ease;
}
.about-decor img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  border-radius: 24px;
}
.about-decor:hover,
.about-decor:focus-within {
  transform: scale(1.05);
}

/* Contact Icons Section */
.contact-icons {
  max-width: 700px;
  margin: 0 auto 120px;
  padding: 32px 24px;
  background: #181818;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}
.contact-icons h2 {
  width: 100%;
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 32px;
  color: #D4AF37;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.contact-links {
  display: flex;
  gap: 72px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 520px;
}
.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #D4AF37;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  width: 120px;
  cursor: pointer;
  user-select: none;
}
.contact-link:hover,
.contact-link:focus {
  color: #fff;
  outline: none;
  transform: scale(1.1);
}
.contact-icon {
  font-size: 56px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

/* Footer */
.footer {
  background-color: #121212;
  padding: 36px 16px;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #3b3b3b;
  user-select: none;
}

/* Responsive layout */
@media (min-width: 641px) {
  nav {
    display: block;
  }
  .mobile-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .hero-text,
  .hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about-content,
  .about-decor {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .contact-links {
    gap: 36px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  main {
    padding: 48px 24px;
  }
  .hero {
    padding: 120px 32px 80px;
  }
}

