/* =========================================================
   Values — Hero Section
   ========================================================= */
.one-container .site-content {
padding: 0;
}

div#content {
 padding: 0;
}
.val-hero {
  background-color: #ffffff;
  padding: 80px 40px 60px;
}

.val-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Left: text */
.val-hero__content {
  flex: 1 1 55%;
  min-width: 0;
}

.val-hero__eyebrow {
  display: block;
  font-family: var(--font-heading); /* Oxygen */
  font-size: 27px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0px;
  color: #292929;
  margin-bottom: 12px;
}

.val-hero__title {
  font-family: var(--font-heading);
  font-size: 78px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: 28px;
}

.val-hero__desc {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  color: var(--color-text-body);
  max-width: 100%;
}

/* Right: illustration */
.val-hero__illustration {
  flex: 0 0 auto;
  width: clamp(260px, 35%, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.val-hero__illustration img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Tablet ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .val-hero {
    padding: 64px 24px 48px;
  }

  .val-hero__container {
    gap: 32px;
  }

  .val-hero__title {
    font-size: 38px;
  }

  .val-hero__illustration {
    width: clamp(180px, 28%, 300px);
  }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .val-hero {
    padding: 48px 20px 40px;
  }

  .val-hero__container {
    flex-direction: column;
    gap: 32px;
  }

  .val-hero__content {
    flex: none;
    width: 100%;
  }

  .val-hero__eyebrow {
    font-size: 22px;
    line-height: 22px;
  }

  .val-hero__title {
    font-size: 32px;
    line-height: 34px;
  }

  .val-hero__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .val-hero__illustration {
    width: min(280px, 80%);
    margin: 0 auto;
  }
}
              