.site-header {
  /* background: linear-gradient(135deg, #ffffff 0%, #fff7f2 100%); */
  background-color: #111111;
  border-bottom: 4px solid var(--orange);
}

.header-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-logo-wrap {
  width: 120px;
  flex-shrink: 0;
}

.header-logo {
  width: 100%;
  height: auto;
  display: block;
}

.brand-kicker {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px 0;
  font-size: 0.78rem;
}

.header-copy h1 {
  margin: 0 0 6px 0;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  line-height: 1.05;
  /* color: #000; */
  color: #fff;
}

.brand-subtitle {
  margin: 0;
  color: #d0d4da;
  line-height: 1.55;
  max-width: 680px;
}

.site-header {
  background-color: #111111;
  border-bottom: 4px solid var(--orange);
}

.header-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 18px) 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  min-width: 0;
}

.header-logo-wrap {
  width: clamp(82px, 10vw, 120px);
  flex-shrink: 0;
}

.header-logo {
  width: 100%;
  height: auto;
  display: block;
}

.header-copy {
  min-width: 0;
}

.brand-kicker {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px 0;
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
}

.header-copy h1 {
  margin: 0 0 6px 0;
  font-size: clamp(1.35rem, 3.8vw, 2.4rem);
  line-height: 1.08;
  color: #fff;
  overflow-wrap: anywhere;
}

.brand-subtitle {
  margin: 0;
  color: #d0d4da;
  line-height: 1.55;
  max-width: 680px;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
}

@media (max-width: 850px) {
  .header-inner {
    padding: 14px 0;
  }

  .header-logo-wrap {
    width: 95px;
  }

  .brand-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    border-bottom-width: 3px;
  }

  .header-inner {
    width: min(100%, 94%);
    padding: 14px 0 12px 0;
    gap: 12px;
  }

  .header-brand {
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  .header-logo-wrap {
    width: 72px;
  }

  .header-copy {
    width: 100%;
  }

  .brand-kicker {
    font-size: 0.68rem;
    margin-bottom: 4px;
    letter-spacing: 0.9px;
  }

  .header-copy h1 {
    font-size: 1.3rem;
    line-height: 1.12;
    margin-bottom: 4px;
  }

  .brand-subtitle {
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .header-brand {
    align-items: flex-start;
  }

  .header-logo-wrap {
    width: 64px;
  }

  .header-copy h1 {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.84rem;
  }
}