:root {
  --brand-dark: #0b1f2a;
  --brand-gold: #c9a45c;
  --muted: #6b7276;
  --bg: #ffffff;
  --card: #ffffff;
  --radius: 12px;
  --wrap: 1200px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  color: var(--brand-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  border-bottom: 1px solid #edf0f1;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--brand-dark);
}
.logo {
  height: 38px;
  width: auto;
}
.brand-name {
  font-weight: 700;
  font-size: 1rem;
}
.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.site-nav .nav-link {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
}
.site-nav .nav-cta {
  background: var(--brand-gold);
  color: var(--brand-dark);
  padding: 0.5rem 0.9rem;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
}

/* HERO */
.hero {
  padding: 2.25rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(201, 164, 92, 0.06),
    transparent 40%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.1rem;
  line-height: 1.05;
  color: var(--brand-dark);
  margin-bottom: 0.6rem;
}
.lede {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
}
.btn.primary {
  background: var(--brand-gold);
  color: var(--brand-dark);
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
}
.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-image {
  margin-top: 0.5rem;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 220px;
}

/* Sections */
.section {
  padding: 2.25rem 1rem;
}
.section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.section-lead {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Approach grid */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.75rem;
}
.approach-card {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 31, 42, 0.04);
}
.approach-card h3 {
  margin-bottom: 0.5rem;
}

/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.team-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(11, 31, 42, 0.06);
}
.team-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.team-card figcaption {
  padding: 0.85rem;
}
.team-card .role {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.team-card .bio {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Values */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.values-list li {
  background: #fbfbfb;
  padding: 0.9rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
}

/* Trust & CTA */
.trust-cta .trust-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1rem;
  align-items: start;
}
.trust {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(11, 31, 42, 0.04);
}
.trust h3 {
  margin-bottom: 0.5rem;
}
.trust-icons {
  margin-top: 0.75rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}
.cta-card {
  background: linear-gradient(180deg, var(--brand-gold), #d6b46e);
  color: var(--brand-dark);
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 8px 20px rgba(11, 31, 42, 0.08);
}
.cta-card .btn {
  padding: 0.7rem 0.9rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-cta .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .wrap {
    padding: 0;
  }

  .section {
  padding: 2.25rem 1rem;
}

  .approach-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.75rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .hero-image {
    height: 200px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-list {
    grid-template-columns: 1fr;
  }
  .site-nav {
    display: none;
  }
  .site-header .header-inner {
    padding: 0.75rem 1rem;
  }
  .brand-name {
    display: none;
  }
}
