.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 16, 20, 0.58) 0%, rgba(8, 16, 20, 0.22) 48%, rgba(8, 16, 20, 0.08) 100%),
    url("../images/hero.jpg") center / cover no-repeat;
}

.hero-copy {
  max-width: 620px;
  padding: 64px 0 180px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero .lede {
  margin: 0 0 28px;
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 460px;
}

.categories {
  position: relative;
  z-index: 2;
  margin-top: -132px;
  padding: 0 0 72px;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 210px));
  justify-content: center;
  gap: 22px;
}

.category-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
  }
}

.category-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.category-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 10px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.25;
}
