.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  background-color: var(--header-bar-bg);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-header__logo {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px 12px;
  background-color: var(--header-bar-bg);
  border-radius: 0 0 10px 10px;
  transform: translateX(-50%);
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 22px;
  filter: invert(1);
  mix-blend-mode: multiply;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15, 17, 17, 0.75) 0%,
    rgba(15, 17, 17, 0.35) 40%,
    rgba(15, 17, 17, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__brand {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: var(--font-heading-weight);
  line-height: 1;
  letter-spacing: 0;
  color: var(--text-on-dark);
}

.hero__title {
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.hero__metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: var(--font-heading-weight);
  line-height: 1.2;
  color: var(--text-on-dark);
}

.hero__metric-label {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-dark-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
