.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  background-color: var(--header-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: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px 22px;
  background-color: var(--header-bg);
  border-radius: 0 0 10px 10px;
  transform: translateX(-50%);
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 16px;
}

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

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(34, 30, 26, 0.45) 0%,
    rgba(34, 30, 26, 0.1) 45%,
    transparent 70%
  );
}

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

.hero__title {
  margin-bottom: 40px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}
