/* Hero — content-led, no reliance on a busy background image.
   The live site's hero image failed to load in our audit; this hero
   works fully with or without imagery. */
.hero {
  background: linear-gradient(160deg, var(--color-navy-900) 0%, var(--color-navy-800) 55%, var(--color-navy-700) 100%);
  color: var(--color-text-on-dark);
  padding: var(--space-10) 0 var(--space-12);
}
@media (min-width: 1024px) {
  .hero { padding: var(--space-16) 0 calc(var(--space-16) + var(--space-4)); }
}

.hero__grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 0.92fr 1.08fr; gap: var(--space-10); }
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.hero__lede {
  font-size: 1.125rem;
  color: var(--color-text-on-dark-muted);
  max-width: 42ch;
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

/* Stat row — replaces the old broken avatar image with a clean fact strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  border-top: var(--border-width) solid rgba(255,255,255,0.15);
  padding-top: var(--space-6);
}
.hero__stat-number {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  display: block;
}
.hero__stat-label {
  font-size: var(--text-caption);
  color: var(--color-text-on-dark-muted);
}

.hero__panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.hero__panel-card {
  background: rgba(255,255,255,0.07);
  border: var(--border-width) solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.hero__panel-card h3 {
  color: var(--color-white);
  font-size: var(--text-body);
  margin-bottom: var(--space-2);
}
.hero__panel-card p {
  color: var(--color-text-on-dark-muted);
  font-size: var(--text-support);
  margin: 0;
}
/* Heading-order fix: hero panel cards sit directly under the page H1 with
   no H2 between them. Visually styled as h3 (card title weight/size) but
   rendered as a non-heading element with role="heading" is unnecessary
   complexity here — instead the markup below uses a <p class="hero__panel-title">
   to avoid a heading-level skip while keeping the same visual treatment. */
.hero__panel-title {
  color: var(--color-white);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
}

@media (max-width: 1023px) {
  .hero__stats { grid-template-columns: 1fr; gap: var(--space-3); text-align: left; }
}

/* Hero diagram — signature Operating Model, right column, visible light-on-navy */
.hero__diagram {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.hero__diagram-svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1023px) {
  .hero__diagram { max-width: 420px; margin-top: var(--space-6); }
}

/* Process layers — stacked consulting framework (white section) */
.process-layers {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.process-layers__svg {
  width: 100%;
  height: auto;
  display: block;
}
