/* /cariere/ — culture page. Structural primitives (.page-hero--compact,
   .subpage-section, .section-head, .cards-3-grid, .cta-row) come from site.css;
   this file carries the section inner wrapper, the green "de ce" band, and the
   honest-culture / domenii cards. Colors/radii via tokens only. */
@layer pages {
  .cariere .page-hero--compact {
    padding-bottom: 56px;
  }

  .cariere .subpage-section__inner {
    max-width: var(--container);
    margin: 0 auto;
  }

  /* Green mission band — --green-deep surface, warm-cream text (display-only) */
  .cariere-why {
    background: var(--green-deep);
    color: var(--warm-cream);
  }

  .cariere-why .section-head {
    margin-bottom: 48px;
  }

  .cariere-why .section-eyebrow {
    color: var(--warm-cream);
    opacity: 0.85;
  }

  .cariere-why .section-head h2 {
    color: var(--warm-cream);
  }

  .cariere-why .section-head h2 em {
    color: #fff;
  }

  .cariere-why .section-head p {
    color: var(--warm-cream);
    opacity: 0.88;
  }

  .cariere-why__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
  }

  .cariere-why__stat {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 4vw + 12px, 56px);
    line-height: 1;
    color: #fff;
  }

  .cariere-why__label {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--warm-cream);
    opacity: 0.9;
  }

  /* Culture + domenii cards */
  .cariere-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 30px 30px;
  }

  .subpage-section--cream .cariere-card {
    background: var(--warm-cream);
    border-color: transparent;
  }

  .cariere-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(var(--green-rgb), 0.1);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--green-deep);
  }

  .cariere-card__title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    color: var(--green-deep);
  }

  .cariere-card__desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
  }

  /* Closing "scrie-ne" block */
  .cariere-write .subpage-section__inner {
    max-width: 720px;
    text-align: center;
  }

  .cariere-write .cta-row {
    justify-content: center;
  }

  /* Filled primary must clear AA — --green-deep, not --green (white-on-green fails) */
  .cariere-write .cta-row .cta--primary {
    background: var(--green-deep);
  }

  .cariere-write .cta-row .cta--primary:hover,
  .cariere-write .cta-row .cta--primary:focus-visible {
    background: var(--green-hover);
  }

  @media (max-width: 768px) {
    .cariere-why__proof {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }
}
