.page-header {
  --page-header-offset: 108px;
  position: relative;
  min-height: calc(480px + var(--page-header-offset));
  margin-top: calc(var(--page-header-offset) * -1);
  padding-top: var(--page-header-offset);
  overflow: clip;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 22%),
    linear-gradient(135deg, #2f3e46, #1f1f1f);
}

.page-header__visual {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    var(--page-header-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header__inner {
  position: relative;
  z-index: 1;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page-header__title {
  margin: 0;
  color: #fffaf3;
  font-family: var(--tomato-heading-font);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: clamp(0.12em, 0.6vw, 0.5em);
  text-align: center;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.page-breadcrumb-shell {
  padding: 18px 24px;
  background: #e4e4e4;
}

.page-breadcrumb {
  width: min(1280px, 100%);
  margin: 0 auto;
  color: #1f1f1f;
  font-family: var(--tomato-copy-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.page-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-breadcrumb__item,
.page-breadcrumb__separator {
  display: inline-flex;
  align-items: center;
}

.page-breadcrumb__link {
  color: #1f1f1f;
  text-decoration: none;
}

.page-breadcrumb__link:hover,
.page-breadcrumb__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

 @media (max-width: 767px) {
  .page-header {
    min-height: calc(360px + var(--page-header-offset));
  }

  .page-header__inner {
    min-height: 360px;
  }
}

 @media (max-width: 720px) {
  .page-header {
    min-height: calc(280px + var(--page-header-offset));
  }

  .page-header__inner {
    min-height: 280px;
  }

  .page-header__title {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .page-breadcrumb-shell {
    padding-inline: 12px;
  }

  .page-breadcrumb {
    font-size: 12px;
    letter-spacing: 0.03em;
  }
}
