#hero {
  position: sticky;
  top: 0;
  z-index: 1;
  will-change: transform;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
  background-color: var(--color-pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--section-padding) - 30px) clamp(1rem, 5vw, 3rem) calc(var(--section-padding) + 30px);
  overflow: hidden;
}

.hero__brand-mark {
  width: 200px;
  height: 200px;
  animation: fadeUp 0.9s ease both;
}

.hero__brand-mark img {
  width: 100%;
  height: 100%;
}

.hero__name {
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero__name img {
  display: block;
  width: clamp(180px, 40vw, 340px);
  height: auto;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text-muted);
  margin: 0 0 2.5rem;
  max-width: 480px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  animation: scrollBounce 2.2s 1.2s ease-in-out infinite;
}

.hero__scroll-hint span {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  opacity: 0.5;
}

.hero__scroll-hint svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-burgundy);
  opacity: 0.45;
}
