@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0d0f12;
  --panel: #15181d;
  --panel-2: #1c2026;
  --text: #f4f0df;
  --muted: #a8abb1;
  --gold: #d8b45b;
  --gold-light: #f0d890;
  --line: rgba(255,255,255,.10);
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(92%, var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,15,18,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .04em; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand small { display: block; color: var(--gold); font-size: .65rem; letter-spacing: .18em; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 600; }
.nav a { color: #ddd; }
.nav a:hover { color: var(--gold-light); }
.nav-cta { padding: 11px 18px; border: 1px solid var(--gold); border-radius: 999px; color: var(--gold) !important; }
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 1.6rem; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 30%, rgba(216,180,91,.13), transparent 30%),
    linear-gradient(135deg, #0c0e11, #171a20);
}
.hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  right: -160px; top: 100px;
  border: 1px solid rgba(216,180,91,.14);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.eyebrow { color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .2em; margin-bottom: 12px; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.055em; max-width: 760px; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.04em; }
.hero-text { max-width: 680px; color: #c6c8cc; font-size: 1.1rem; margin: 25px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { padding: 14px 22px; border-radius: 9px; font-weight: 800; transition: .2s ease; }
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.btn-secondary:hover { border-color: var(--gold); }
.quick-info { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: var(--muted); font-size: .88rem; }
.hero-logo-card {
  padding: 35px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.hero-logo-card img { width: min(100%, 440px); margin: auto; }

.section { padding: 105px 0; }
.services { background: #111419; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading > p:last-child { margin-top: 18px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card {
  min-height: 205px;
  padding: 25px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(216,180,91,.55); }
.service-card span { color: var(--gold); font-size: .75rem; font-weight: 800; }
.service-card h3 { margin: 30px 0 10px; font-size: 1.05rem; }
.service-card p { color: var(--muted); font-size: .88rem; }

.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.about p:not(.eyebrow) { color: var(--muted); margin-top: 20px; max-width: 700px; }
.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.stat { padding: 32px; background: var(--panel); border: 1px solid var(--line); }
.stat strong { display: block; color: var(--gold-light); font-size: 2rem; }
.stat span { color: var(--muted); font-size: .9rem; }

.contact { background: #111419; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-grid > div:first-child > p:last-child { color: var(--muted); margin-top: 20px; max-width: 600px; }
.contact-card { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.contact-row { display: block; padding: 22px 25px; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row:hover { background: var(--panel-2); }
.contact-label { display: block; color: var(--gold); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.contact-row strong { display: block; margin-top: 4px; font-size: 1.02rem; overflow-wrap: anywhere; }

.footer { border-top: 1px solid var(--line); padding: 30px 0; color: var(--muted); }
.footer-wrap { display: flex; justify-content: space-between; gap: 25px; }
.footer strong { color: var(--text); }
.footer p { font-size: .85rem; }

@media (max-width: 1000px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0; }
  .hero-logo-card { max-width: 520px; }
}

@media (max-width: 700px) {
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 20px 4%; background: #0d0f12; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; padding: 70px 0; }
  .hero-grid { gap: 45px; }
  .hero-logo-card { padding: 20px; }
  .section { padding: 75px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .about-panel { grid-template-columns: 1fr 1fr; }
  .footer-wrap { flex-direction: column; }
}

@media (max-width: 420px) {
  .brand span { font-size: .88rem; }
  .brand img { width: 45px; height: 45px; }
  .about-panel { grid-template-columns: 1fr; }
}
