/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #fff; background: #080808; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --gold:       #c9a84c;
  --gold-light: #e4c97a;
  --gold-dark:  #a8893a;
  --dark:       #080808;
  --dark-2:     #0f0f0f;
  --dark-3:     #161616;
  --dark-4:     #1e1e1e;
  --dark-5:     #252525;
  --border:     rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.3);
  --gray:       #888;
  --radius:     6px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
.accent-text { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-block; padding: 15px 34px; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; border-radius: var(--radius); transition: all 0.2s ease; cursor: pointer; border: 1px solid transparent; }
.btn-gold { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-outline { background: transparent; color: #fff; border-color: var(--border-gold); }
.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; text-align: center; display: block; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s, border-bottom 0.3s; }
.nav.scrolled { background: rgba(8,8,8,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.logo { font-size: 1rem; font-weight: 900; letter-spacing: 0.1em; color: #fff; line-height: 1.2; }
.logo span { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; color: var(--gold); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { font-size: 0.82rem; font-weight: 700; color: #000; background: var(--gold); padding: 10px 24px; border-radius: var(--radius); letter-spacing: 0.04em; transition: all 0.2s; }
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; }
.mobile-menu { display: none; flex-direction: column; background: rgba(8,8,8,0.98); backdrop-filter: blur(16px); border-top: 1px solid var(--border); padding: 8px 0 24px; }
.mobile-menu a { padding: 14px 40px; font-size: 0.95rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid var(--border); }
.mobile-menu .mobile-cta { color: var(--gold); font-weight: 700; border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #080808 0%, #0f0a04 50%, #080808 100%);
}
/* Diagonal stripe texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.015) 40px,
    rgba(201,168,76,0.015) 41px
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.95) 50%, rgba(8,8,8,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 72px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 460px; margin-bottom: 44px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tagline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 40px;
  max-width: 1200px;
  margin: 60px auto 0;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-tagline .dot { color: var(--gold); opacity: 0.5; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--dark-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 0; }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.stat { text-align: center; flex: 1; }
.stat-num { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.stat-num span { font-size: 1.4rem; color: var(--gold); }
.stat-label { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.stat-divider { width: 1px; height: 52px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 110px 0; background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.service-card.featured { border-color: var(--gold); background: linear-gradient(135deg, #161208 0%, var(--dark-3) 100%); }
.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}
.service-tag.gold { color: var(--gold); border-color: var(--border-gold); background: rgba(201,168,76,0.08); }
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-includes { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 28px; flex: 1; }
.service-includes li { font-size: 0.83rem; color: rgba(255,255,255,0.55); padding-left: 16px; position: relative; }
.service-includes li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: 110px 0; background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 24px; }
.step { text-align: center; padding: 40px 24px; }
.step-num { font-size: 3.5rem; font-weight: 900; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 16px; letter-spacing: -0.04em; }
.step h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.step p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }
.step-arrow { font-size: 1.5rem; color: var(--gold); opacity: 0.4; padding-top: 60px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 110px 0; background: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 4px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-ph { width: 100%; height: 100%; background: var(--dark-4); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.gallery-ph:hover { background: var(--dark-5); }
.gallery-ph span { font-size: 0.72rem; color: #333; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 110px 0; background: var(--dark-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: var(--dark-3); border: 1px solid var(--border); border-radius: 12px; padding: 40px 32px; transition: border-color 0.2s; }
.testimonial:hover { border-color: var(--border-gold); }
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial blockquote { font-size: 0.97rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial cite { font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.about-img-block { background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(0,0,0,0) 60%), var(--dark-4); border-right: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.about-text { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; background: var(--dark-3); }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 24px; }
.about-text p { font-size: 0.97rem; color: var(--gray); line-height: 1.8; margin-bottom: 18px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-badges span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--border-gold); border-radius: 999px; color: var(--gold); background: rgba(201,168,76,0.06); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; min-height: 700px; }
.contact-left { background: linear-gradient(135deg, #0c0902 0%, #161208 100%); border-right: 1px solid var(--border-gold); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-left h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px; }
.contact-left p { color: var(--gray); font-size: 0.97rem; line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.detail-icon { font-size: 1.1rem; }
.contact-right { background: var(--dark-2); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-right h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); }
.contact-form select { cursor: pointer; }
.contact-form textarea { resize: vertical; }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.25); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px 56px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-left .logo { margin-bottom: 12px; }
.footer-left p { font-size: 0.85rem; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-right { display: flex; flex-direction: column; gap: 8px; }
.footer-right p { font-size: 0.85rem; color: rgba(255,255,255,0.3); line-height: 1.9; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 40px; max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step-arrow { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-block { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px; padding-top: 72px; }
  .hero-tagline { padding: 20px; flex-wrap: wrap; gap: 10px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .stats-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-left, .contact-right, .about-text { padding: 60px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 3.2rem; }
}
