:root {
  --bg-deep: #1a1510;
  --bg-warm: #231e17;
  --bg-card: #2c2419;
  --fg-primary: #f5ece0;
  --fg-secondary: #c4b49a;
  --fg-muted: #8a7d6b;
  --accent-copper: #c87941;
  --accent-amber: #d4a04a;
  --accent-sage: #7a8c6e;
  --accent-rust: #a85a3a;
  --border-subtle: rgba(200, 121, 65, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg-deep);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 121, 65, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 160, 74, 0.06) 0%, transparent 50%),
    var(--bg-deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 100px,
      rgba(200, 121, 65, 0.03) 100px,
      rgba(200, 121, 65, 0.03) 101px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(200, 121, 65, 0.03) 100px,
      rgba(200, 121, 65, 0.03) 101px
    );
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-copper);
  border: 1px solid var(--accent-copper);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-amber);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  border-left: 2px solid var(--accent-copper);
  padding-left: 1rem;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ===== WHAT WE DO ===== */
.what-we-do {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.service-card {
  background: var(--bg-warm);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg-primary);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  counter-increment: step;
  align-items: start;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-copper);
  opacity: 0.3;
  line-height: 1;
}

.step-number::before {
  content: counter(step, decimal-leading-zero);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--fg-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.why-item {
  padding: 2rem 0;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent-amber);
}

.why-item p {
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing-section {
  text-align: center;
  padding: 8rem 2rem;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200, 121, 65, 0.06) 0%, transparent 70%),
    var(--bg-deep);
}

.closing-section .section-title {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.closing-section .section-desc {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== SITE NAV (landing) ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(26, 21, 16, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg-primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--fg-primary);
}

.nav-cta {
  background: var(--accent-copper);
  color: var(--bg-deep) !important;
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--accent-amber) !important;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-block;
  background: var(--accent-copper);
  color: var(--bg-deep);
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.hero-btn-primary:hover {
  background: var(--accent-amber);
  transform: translateY(-1px);
}

.hero-btn-secondary {
  display: inline-block;
  border: 1px solid rgba(200, 121, 65, 0.4);
  color: var(--fg-secondary);
  padding: 1rem 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.hero-btn-secondary:hover {
  border-color: var(--accent-copper);
  color: var(--fg-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 2rem;
  }

  .step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .closing-section {
    padding: 5rem 1.5rem;
  }
}