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

body {
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  line-height: 1.6;
  background: #fafafa;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

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

h1, h2, h3 { font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  background: #0f0f0f;
  color: #fff;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo span { color: #d4af37; }

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: #fff;
  font-size: 15px;
  transition: color .2s;
}

.main-nav a:hover { color: #d4af37; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
}

.hero {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  color: #fff;
  padding: 120px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 32px;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: background .2s, color .2s;
}

.btn-primary {
  background: #d4af37;
  color: #111;
}

.btn-primary:hover { background: #b8952c; }

.section { padding: 90px 0; }

.section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.services { background: #fff; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid #d4af37;
}

.card h3 { margin-bottom: 12px; font-size: 20px; }

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-list { margin-top: 20px; padding-left: 20px; }
.about-list li { margin-bottom: 10px; }

.image-placeholder {
  background: #222;
  color: #d4af37;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 8px;
}

.gallery { background: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  background: #111;
  color: #d4af37;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  padding: 10px;
}

.testimonials { background: #f5f5f5; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: #fff;
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial span {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: #d4af37;
}

.contact { background: #fff; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info p { margin-bottom: 14px; }

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  padding: 8px 16px;
  background: #111;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  transition: background .2s;
}

.social-links a:hover { background: #d4af37; color: #111; }

.contact-form {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}

.contact-form button {
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  color: #2e7d32;
}

.site-footer {
  background: #0f0f0f;
  color: #ccc;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}

.footer-inner p { margin-bottom: 10px; }

.footer-inner a { color: #d4af37; }

.footer-social {
  justify-content: center;
  margin-top: 10px;
}

.policy h1 { margin-bottom: 20px; }
.policy h2 { margin-top: 30px; margin-bottom: 10px; font-size: 22px; }
.policy p { margin-bottom: 10px; }

@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f0f0f;
    flex-direction: column;
    padding: 20px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}