:root {
  --bg-dark: #0e0e0e;
  --gold: #c9a24d;
  --text-light: #eaeaea;
  --text-muted: #b5b5b5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}

/* COMMON */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgba(14,14,14,0.9);
  border-bottom: 1px solid #222;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}

.nav a {
  margin: 0 14px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
}

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 12px 26px;
  text-decoration: none;
  font-weight: 500;
}

.btn-outline {
  border: 1px solid var(--gold);
  padding: 12px 26px;
  text-decoration: none;
  color: var(--gold);
}

.btn-primary.small {
  padding: 10px 22px;
}

/* HERO */
.hero {
  height: 90vh;
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons a {
  margin-right: 15px;
}

/* ABOUT */
.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about img {
  width: 100%;
}

/* SERVICES */
.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-card h3 {
  margin: 15px 0 6px;
}

.service-card span {
  color: var(--gold);
  font-size: 14px;
}

/* PROCESS */
.process {
  padding: 120px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step span {
  color: var(--gold);
  font-size: 22px;
}

.process-step h4 {
  margin: 12px 0;
}

/* WHY */
.why-us {
  padding: 120px 0;
}

.why-list {
  list-style: none;
  max-width: 600px;
  margin: auto;
}

.why-list li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}

.why-list li::before {
  content: "✔";
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* CTA */
.cta {
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  position: relative;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.cta-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.cta h2 {
  margin-bottom: 30px;
}

/* FOOTER */
.footer {
  border-top: 1px solid #222;
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
}
