/* ======================================================
   Design Tokens
   ====================================================== */

:root {
  --bg-light: #F9F9F7;
  --brand-gold: #C5A059;
  --brand-blue: #2C3E50;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --border-light: #e6e6e6;
}

/* ======================================================
   Base Reset
   ====================================================== */

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

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

/* ======================================================
   Layout Utilities
   ====================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ======================================================
   Header
   ====================================================== */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-muted);
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--text-dark);
}

.header-cta {
  background-color: var(--brand-gold);
  color: #ffffff;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ======================================================
   Hero Section
   ====================================================== */

.hero {
  background-color: var(--bg-light);
  padding: 4.5rem 0 5.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Content */

.hero-eyebrow {
  display: inline-block;
  background-color: rgba(197, 160, 89, 0.15);
  color: var(--brand-gold);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  font-weight: 700;
}

.hero-description {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Actions */

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #243443;
}

.btn-outline {
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--brand-blue);
  color: #ffffff;
}

/* Trust Icons */

.hero-trust {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust li::before {
  content: "✔";
  color: var(--brand-gold);
  margin-right: 0.4rem;
}

/* ======================================================
   Hero Media (Right Side)
   ====================================================== */

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.media-large {
  grid-row: span 2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.media-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-small {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.media-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stat Card */

.stat-card {
  background-color: #ffffff;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ======================================================
   Responsive
   ====================================================== */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.6rem;
  }
}


/* ======================================================
   Stats Section
   ====================================================== */

.stats {
  background-color: var(--brand-blue);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  text-align: center;
}

/* Individual Stat */

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #e2e2e2;
  font-weight: 500;
}

/* ======================================================
   Responsive
   ====================================================== */

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }
}

@media (max-width: 500px) {
  .stat-number {
    font-size: 2.3rem;
  }
}



/* ======================================================
   Scope of Work Section (Corrected)
   ====================================================== */

.scope {
  background-color: #ffffff;
  padding: 5.5rem 0;
}

/* ===== Header ===== */

.scope-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.scope-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
}

.scope-header h2 {
  font-size: 2.4rem;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.scope-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* ======================================================
   Grid
   ====================================================== */

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

/* ======================================================
   Card
   ====================================================== */

.scope-card {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem;
  background-color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scope-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.scope-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--brand-blue);
}

.scope-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ======================================================
   Responsive
   ====================================================== */

@media (max-width: 1000px) {
  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .scope {
    padding: 4rem 0;
  }

  .scope-header h2 {
    font-size: 2rem;
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }
}
