:root {
  --bg: #080808;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --glass: rgba(10, 10, 10, 0.7);
  --gold: #D4AF37;
  --gold-soft: #C5A028;
  --gold-deep: #9A7B1A;
  --text: #f1f5f9;
  --text-muted: #a09080;
  --text-quiet: #847868;
  --border: rgba(212, 175, 55, 0.15);
  --border-bright: rgba(212, 175, 55, 0.3);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}
.wordmark:hover { color: var(--gold); }

.site-nav { display: flex; gap: 24px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.site-nav a:hover { color: var(--gold); }

/* ---------- layout ---------- */

main {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero { padding: 96px 0 48px; }

h1 {
  margin: 0 0 24px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0;
  max-width: 620px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
}

.section { padding: 48px 0; border-top: 1px solid var(--border); }

h2 {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- service cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: background-color .2s, border-color .2s;
}
.card:hover {
  background: var(--surface-hover);
  border-color: var(--border-bright);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}

.card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- company details ---------- */

.details { margin: 0; }

.details > div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.details > div:last-child { border-bottom: none; }

.details dt {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.details dd {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/* ---------- contact ---------- */

.contact-line { margin: 0 0 12px; font-size: 20px; font-weight: 600; }
.contact-line:last-child { margin-bottom: 0; }

/* ---------- footer ---------- */

.site-footer {
  max-width: 880px;
  margin: 48px auto 0;
  padding: 24px 32px 48px;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- narrow screens ---------- */

@media (max-width: 720px) {
  .site-header { padding: 12px 16px; }
  .site-nav { gap: 16px; }
  main, .site-footer { padding-left: 16px; padding-right: 16px; }
  .hero { padding: 48px 0 32px; }
  h1 { font-size: 28px; }
  .lede { font-size: 16px; }
  h2 { font-size: 20px; margin-bottom: 24px; }
  .cards { grid-template-columns: 1fr; }
  .details > div { grid-template-columns: 1fr; gap: 4px; }
  .contact-line { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
