:root {
  --rh-primary: #2f6f57;
  --rh-primary-dark: #245742;
  --rh-secondary: #f4efe6;
  --rh-accent: #dca94b;
  --rh-text: #21302a;
  --rh-muted: #6b7b73;
  --rh-border: #dfe7e2;
  --rh-surface: #fcfcfa;
  --rh-soft: #f7f5f0;
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(33, 48, 42, 0.08);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rh-primary);
}

.btn-primary {
  background-color: var(--rh-primary);
  border-color: var(--rh-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--rh-primary-dark);
  border-color: var(--rh-primary-dark);
}

.btn-outline-primary {
  color: var(--rh-primary);
  border-color: var(--rh-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--rh-primary);
  border-color: var(--rh-primary);
}

.profile-hero {
  background:
    radial-gradient(circle at top right, rgba(220, 169, 75, 0.16), transparent 22%),
    linear-gradient(180deg, #f9f5ee 0%, #fcfcfa 100%);
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(33, 48, 42, 0.06);
}

.hero-badge,
.profile-tag,
.fact-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-badge,
.status-pill {
  background: rgba(47, 111, 87, 0.08);
  color: var(--rh-primary);
}

.profile-tag,
.fact-pill {
  background: var(--rh-soft);
  color: var(--rh-muted);
}

.profile-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.lead-copy {
  color: var(--rh-muted);
  font-size: 1.08rem;
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.section-eyebrow {
  color: var(--rh-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero-card,
.content-card,
.sidebar-card,
.metric-card,
.cta-card {
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 1.25rem;
  box-shadow: 0 1rem 2rem rgba(33, 48, 42, 0.05);
}

.hero-card,
.sidebar-card,
.metric-card,
.cta-card {
  padding: 1.35rem;
}

.content-card {
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.content-card:last-child {
  margin-bottom: 0;
}

.logo-box {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #e9f1ed 0%, #f6efe3 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rh-primary);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.profile-meta {
  color: var(--rh-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.fact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-copy,
.info-list li,
.sidebar-copy,
.content-card p,
.content-card li {
  color: var(--rh-muted);
}

.metric-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--rh-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.info-list li strong {
  display: block;
  color: var(--rh-text);
  margin-bottom: 0.15rem;
}

.sticky-sidebar {
  position: sticky;
  top: 5.5rem;
}

.soft-section {
  background: #f7f5f0;
  border-top: 1px solid rgba(33, 48, 42, 0.05);
  border-bottom: 1px solid rgba(33, 48, 42, 0.05);
}

.back-link {
  color: var(--rh-primary);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

footer {
  background: #1f2c27;
  color: rgba(255, 255, 255, 0.85);
}

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

footer a:hover {
  color: #fff;
}

@media (max-width: 991.98px) {
  .sticky-sidebar {
    position: static;
  }
}
