.home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: clip;
  padding: 52px 20px 72px;
  text-align: center;
}

.home-insignia {
  position: relative;
  flex: none;
  width: clamp(88px, 10vw, 116px);
  margin-bottom: 28px;
  pointer-events: none;
}

.home-emblem {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 12px 18px #0008);
}

.home-hero h1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.3em;
  margin: 0;
  color: var(--site-title);
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 104px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: inline-block;
  background: var(--site-metal);
  background-clip: text;
  color: transparent;
}

.home-lead {
  margin: 22px 0 0;
  color: var(--site-muted);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.home-actions .btn {
  min-width: 138px;
  padding: 12px 24px;
}

.home-intro-control {
  position: fixed;
  z-index: 40;
  right: clamp(16px, 2.6vw, 34px);
  bottom: 18px;
  width: 84px;
  padding: 8px 4px;
  color: var(--site-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: right;
  transition: color 0.15s;
}

.home-intro-control:hover {
  color: var(--site-title);
}

@media (max-width: 600px) {
  .home-hero h1 {
    flex-direction: column;
    font-size: clamp(40px, 12vw, 64px);
    line-height: 1.14;
  }

  .home-insignia {
    margin-bottom: 24px;
  }

  .home-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .home-actions .btn {
    min-width: 128px;
    padding-inline: 20px;
  }
}
