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

:root {
  --dark:  #0C1118;
  --dark2: #111820;
  --dark3: #1A2330;
  --gold:  #C9960A;
  --gold-light: #E0B84A;
  --white: #FFFFFF;
  --text:  #D0D8E4;
  --muted: #7A8A9A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(12,17,24,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,150,10,0.15);
}
nav img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-phone {
  font-size: 14px; font-weight: 600; color: var(--gold-light);
  text-decoration: none; transition: opacity 0.2s;
}
.nav-phone:hover { opacity: 0.8; }

/* INNER */
.inner { max-width: 1140px; margin: 0 auto; padding: 80px 40px; }

/* SECTION LABELS */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white); letter-spacing: 0.04em;
  line-height: 1; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 560px; font-weight: 300;
}

/* PAGE HERO */
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  background: var(--dark2);
  border-bottom: 1px solid rgba(201,150,10,0.1);
}
.page-hero .section-sub { margin: 0 auto; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0C1118;
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

/* FOOTER */
footer {
  background: #080D13;
  border-top: 1px solid rgba(201,150,10,0.12);
  padding: 60px 40px 0;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a,
.footer-contact a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.footer-copy {
  max-width: 1140px; margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px; color: var(--muted);
}

/* MOBILE NAV */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .inner { padding: 60px 20px; }
  .page-hero { padding: 120px 20px 60px; }
}
