*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: #06120C;
  color: #F0EDE8;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: #E8A838; }
.section-label {
  color: #E8A838;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-sub { color: #A09890; font-size: 1.05rem; max-width: 600px; margin-bottom: 48px; }
.section { padding: 100px 0; }
.section-dark { background: #09160F; }
h1, h2, h3 { font-family: 'Orbitron', sans-serif; line-height: 1.2; letter-spacing: 1px; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #E8A838;
  color: #06120C;
}
.btn-primary:hover { background: #F0B848; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #F0EDE8;
  border: 2px solid rgba(240,237,232,0.3);
}
.btn-outline:hover { border-color: #E8A838; color: #E8A838; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,18,12,0);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 75px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #A09890;
  transition: color 0.2s;
}
.nav-links a:hover { color: #E8A838; }
.nav-phone {
  color: #E8A838;
  font-weight: 700;
  font-size: 0.95rem;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #F0EDE8;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,18,12,0.88) 0%, rgba(6,18,12,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-tag {
  color: #E8A838;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #A09890;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(232,168,56,0.15);
  color: #E8A838;
  border: 1px solid rgba(232,168,56,0.25);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: #A09890; margin-bottom: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; }
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #E8A838;
  font-weight: 700;
}
.stat-label { font-size: 0.8rem; color: #7A7065; }
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: #0F1F15;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,168,56,0.3);
}
.service-icon { margin-bottom: 20px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 16px; color: #F0EDE8; }
.service-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #A09890;
  position: relative;
  padding-left: 20px;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8A838;
  opacity: 0.6;
}

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.project-item:hover img { transform: scale(1.03); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: #0F1F15;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.05);
}
.stars { color: #E8A838; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p {
  color: #A09890;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #F0EDE8; }
.testimonial-author span { font-size: 0.8rem; color: #7A7065; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { color: #A09890; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; gap: 12px; }
.contact-label {
  min-width: 90px;
  font-size: 0.85rem;
  color: #7A7065;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.contact-row a, .contact-row span { color: #F0EDE8; font-size: 0.95rem; }
.contact-row a:hover { color: #E8A838; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0F1F15;
  color: #F0EDE8;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #E8A838;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #5A5045;
}

/* ---------- Footer ---------- */
.footer {
  background: #030A06;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 60px 24px;
}
.footer-brand h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.footer-logo { height: 50px; width: auto; display: block; margin-bottom: 12px; }
.footer-brand p { color: #7A7065; font-size: 0.85rem; }
.footer-small { margin-top: 8px; font-size: 0.75rem; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #E8A838;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links a, .footer-contact a {
  color: #7A7065;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: #E8A838; }
.footer-contact p { color: #7A7065; font-size: 0.85rem; margin-bottom: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px;
  text-align: center;
}
.footer-bottom p { color: #5A5045; font-size: 0.8rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .about-stats { justify-content: center; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6,18,12,0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}
