:root {
  --lazear-green: #2d6a4f;
  --lazear-green-dark: #1b4332;
  --lazear-green-light: #d8f3dc;
  --lazear-navy: #1a1f2e;
  --lazear-slate: #4a5568;
  --lazear-muted: #718096;
  --lazear-border: #e2e8f0;
  --lazear-bg: #f7fafc;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--lazear-navy);
  background-color: var(--lazear-bg);
}

.navbar-brand {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lazear-navy) !important;
}

.navbar-brand span {
  color: var(--lazear-green);
}

.hero-section {
  background: linear-gradient(135deg, var(--lazear-green-dark) 0%, var(--lazear-green) 100%);
  color: #fff;
  padding: 3.5rem 0 4rem;
}

.hero-photo {
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 7 / 10;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.92;
  font-weight: 400;
}

.hero-location {
  font-size: 0.95rem;
  opacity: 0.8;
}

.badge-expertise {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.45em 0.85em;
}

.sidebar-card {
  border: 1px solid var(--lazear-border);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sidebar-card .card-header {
  background: var(--lazear-green-dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  padding: 0.85rem 1.25rem;
}

.contact-link {
  color: var(--lazear-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  transition: color 0.15s ease;
}

.contact-link:hover {
  color: var(--lazear-green);
}

.contact-link i {
  color: var(--lazear-green);
  font-size: 1.1rem;
  width: 1.25rem;
  text-align: center;
}

.expertise-tag {
  background: var(--lazear-green-light);
  color: var(--lazear-green-dark);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4em 0.75em;
  border-radius: 2rem;
}

.education-item + .education-item {
  border-top: 1px solid var(--lazear-border);
  margin-top: 1rem;
  padding-top: 1rem;
}

.education-degree {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.education-school {
  color: var(--lazear-slate);
  font-size: 0.88rem;
}

.section-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lazear-green-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lazear-green-light);
}

.bio-text {
  color: var(--lazear-slate);
  line-height: 1.75;
  font-size: 1.02rem;
}

.bio-text p + p {
  margin-top: 1.1rem;
}

.timeline {
  position: relative;
  padding-left: 1.75rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--lazear-green-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lazear-green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--lazear-green-light);
}

.timeline-period {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lazear-green);
  margin-bottom: 0.2rem;
}

.timeline-role {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.timeline-org {
  color: var(--lazear-slate);
  font-size: 0.92rem;
}

.service-card {
  border: 1px solid var(--lazear-border);
  border-radius: 0.5rem;
  background: #fff;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.1);
  border-color: var(--lazear-green-light);
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--lazear-green-light);
  color: var(--lazear-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--lazear-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.quote-block {
  border-left: 4px solid var(--lazear-green);
  background: #fff;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.quote-text {
  font-style: italic;
  color: var(--lazear-slate);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.quote-attribution {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lazear-green-dark);
}

.stat-card {
  text-align: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--lazear-border);
  border-radius: 0.5rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lazear-green);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--lazear-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.site-footer {
  background: var(--lazear-navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lazear-green-light);
}

.btn-lazear {
  background: var(--lazear-green);
  border-color: var(--lazear-green);
  color: #fff;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
}

.btn-lazear:hover {
  background: var(--lazear-green-dark);
  border-color: var(--lazear-green-dark);
  color: #fff;
}

.btn-outline-lazear {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 500;
}

.btn-outline-lazear:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-photo {
    max-width: 220px;
    margin-bottom: 1.5rem;
  }
}