:root {
  --bg: #1a1714;
  --bg-light: #231f1b;
  --bg-card: #2a2520;
  --fg: #f0ebe4;
  --fg-muted: #a89e93;
  --accent: #d4a34a;
  --accent-dim: rgba(212, 163, 74, 0.15);
  --accent-glow: rgba(212, 163, 74, 0.3);
  --border: rgba(240, 235, 228, 0.08);
  --heading: 'Syne', sans-serif;
  --body: 'DM Sans', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,23,20,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

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

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent-glow);
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent-dim);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #1a1714;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.9rem 2rem;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary:hover { opacity: 0.88; }

/* ---- HERO ---- */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

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

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

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

/* ---- SERVICES ---- */
.services {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--fg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s;
}

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

.service-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

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

/* ---- EQUIPMENT ---- */
.equipment {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.equipment-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.equipment-text h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.equipment-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.equip-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.equip-item:first-child {
  border-top: 1px solid var(--border);
}

.equip-name {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
}

.equip-use {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: right;
}

.equip-coming .equip-name {
  color: var(--accent);
}

.equip-coming .equip-use {
  color: var(--accent);
  font-style: italic;
}

/* ---- WHY ---- */
.why {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--fg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  padding: 0;
}

.why-number {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent-dim);
  color: rgba(212, 163, 74, 0.25);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.closing-location {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 3rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .services {
    padding: 4rem 1.5rem;
  }

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

  .equipment {
    padding: 4rem 1.5rem;
  }

  .equipment-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .equip-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .equip-use {
    text-align: left;
  }

  .why {
    padding: 4rem 1.5rem;
  }

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

  .closing {
    padding: 5rem 1.5rem 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
