:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --gold: #d4af37;
  --gold-bright: #f0c75e;
  --text: #f0f0f0;
  --text-muted: #b8b8b8;
  --border: #2a2a2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.navbar .brand {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-size: 1.1rem;
}

.navbar nav {
  display: flex;
  gap: 1.5rem;
}

.navbar nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.navbar nav a:hover {
  color: var(--gold-bright);
}

.hero {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(1.1);
}

main {
  flex: 1;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

main h1 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

main p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.tagline {
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 0 0 2.5rem;
  text-align: left;
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.service-card h3 {
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--gold);
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid var(--gold);
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

footer {
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  background: var(--bg-elevated);
}

footer .gold {
  color: var(--gold);
}
