.hero {
  min-height: auto;
  padding-top: 68px;
  padding-bottom: 200px;
  display: flex;
  align-items: flex-start;
  background: url('../Layer 0 copy.jpg') center -140px / auto 972px no-repeat;
  position: relative;
}

.hero::before {
  display: none;
}

.hero__inner {
  width: 100%;
  padding-top: 0;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
  padding-top: 56px;
}

.hero__label {
  position: absolute;
  top: 80px;
  left: 0;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.8s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── Headline ── */
.hero__headline {
  margin-bottom: 0;
  margin-top: 500px;
  line-height: 0.92;
  text-align: center;
}

.hero__line {
  overflow: hidden;
}

.hero__line .line-inner {
  font-size: clamp(36px, 7vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.hero__line--1 .line-inner {
  color: #0A0A0A;
  animation-delay: 0.05s;
}

.hero__line--2 .line-inner {
  color: rgba(10, 10, 10, 0.45);
  animation-delay: 0.2s;
}

.hero__line--3 .line-inner {
  color: rgba(10, 10, 10, 0.20);
  animation-delay: 0.35s;
}

/* ── Footer row ── */
.hero__footer {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-top: 100px;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.1s forwards;
}

.hero__sub {
  font-size: 16px;
  color: #555;
  max-width: 380px;
  line-height: 1.6;
  margin-top: 0;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero {
    background-size: cover;
    background-position: center 52%;
  }

  .hero__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero__sub,
  .hero__actions {
    margin-top: 0;
  }

  .hero__line .line-inner {
    font-size: clamp(44px, 13vw, 100px);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 56px;
  }
}
