:root {
  --bg: #0a0f0a;
  --bg-alt: #111a11;
  --bg-card: #151f15;
  --bg-card-accent: #1a2a18;
  --fg: #e8e4dc;
  --fg-muted: #9a9688;
  --gold: #c8a44e;
  --gold-light: #dfc376;
  --green: #3d6b3d;
  --green-light: #4a8a4a;
  --border: #2a3a28;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61,107,61,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,164,78,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid rgba(200,164,78,0.25);
  display: inline-block;
  border-radius: 4px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero h1 .gold {
  color: var(--gold);
  display: inline;
}

.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === SECTIONS SHARED === */
.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

/* === SERVICES === */
.services {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.service-card.large {
  grid-column: span 2;
  background: var(--bg-alt);
  border-color: var(--green);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.service-card.large .service-icon {
  font-size: 40px;
}

.service-card.accent {
  background: var(--bg-card-accent);
  border-color: rgba(200,164,78,0.3);
}

.service-card.accent:hover {
  border-color: var(--gold);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* === WHY === */
.why {
  padding: 120px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-content {
  max-width: 1100px;
  margin: 0 auto;
}

.why h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 64px;
}

.why-blocks {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}

.why-number {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(200,164,78,0.15);
  line-height: 1;
}

.why-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-text p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* === AREA === */
.area {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.area h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.area-locations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.location {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.location-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-note {
  font-size: 15px;
  color: var(--fg-muted);
}

/* === CLOSING === */
.closing {
  padding: 160px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(61,107,61,0.1) 0%, transparent 70%);
}

.closing-content {
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 20px;
  color: var(--gold);
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}

.footer-details {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-dot {
  width: 4px;
  height: 4px;
  background: var(--fg-muted);
  border-radius: 50%;
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--green);
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

/* === CTA BUTTON === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--green);
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 48px;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.hero-actions {
  margin-bottom: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
    min-height: 80vh;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-num {
    font-size: 36px;
  }

  .services {
    padding: 80px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card.large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px;
  }

  .why {
    padding: 80px 24px;
  }

  .why-block {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .why-number {
    font-size: 36px;
  }

  .area {
    padding: 80px 24px;
  }

  .area-locations {
    gap: 10px;
  }

  .location {
    font-size: 16px;
    padding: 8px 14px;
  }

  .closing {
    padding: 100px 24px;
  }

  .site-footer {
    padding: 40px 24px;
  }

  .footer-details {
    flex-direction: column;
    gap: 4px;
  }

  .footer-dot {
    display: none;
  }

  .site-nav-inner {
    padding: 14px 24px;
  }

  .nav-cta {
    padding: 9px 16px;
    font-size: 13px;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 16px;
  }
}