.hero {
  padding: 130px 0 150px;
}
.hero-motion-pending .hero > .eyebrow,
.hero-motion-pending .hero > h1,
.hero-motion-pending .hero > p:not(.eyebrow),
.hero-motion-pending .hero > .text-link {
  opacity: 0;
}
.hero-motion-ready .hero > .eyebrow,
.hero-motion-ready .hero > h1,
.hero-motion-ready .hero > p:not(.eyebrow),
.hero-motion-ready .hero > .text-link {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform;
}
.hero-motion-ready .hero > .eyebrow {
  animation-delay: 0.06s;
}
.hero-motion-ready .hero > h1 {
  animation-delay: 0.14s;
}
.hero-motion-ready .hero > p:not(.eyebrow) {
  animation-delay: 0.24s;
}
.hero-motion-ready .hero > .text-link {
  animation-delay: 0.32s;
}
@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1 {
  font-family: Pretendard, sans-serif;
  font-size: clamp(2.8rem, 6.3vw, 6.2rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.065em;
  margin: 0.22em 0;
  word-break: keep-all;
}
.hero-line {
  display: block;
  white-space: nowrap;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero > p:not(.eyebrow) {
  font-size: 1.15rem;
  color: var(--muted);
}
.text-link {
  display: inline-block;
  margin-top: 25px;
  font-weight: 750;
}
.section {
  padding: 100px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 17px;
  margin-bottom: 45px;
}
.section-heading p {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}
.section-heading span {
  color: var(--accent);
  margin-right: 12px;
}
.section-heading > a {
  font-size: 0.9rem;
}
.spotlight {
  background: #171714;
  color: #fff;
  padding: 100px 0;
}
.spotlight .section-heading {
  border-color: #555;
}
.spotlight-story {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 90px;
  align-items: center;
}
.spotlight-copy h2 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 1.05;
  margin: 0.2em 0;
}
.spotlight-copy p {
  color: #aaa;
  max-width: 600px;
}
.spotlight .button {
  background: var(--lime);
  color: #171714;
  border: 0;
  margin-top: 25px;
}
.spotlight-cover {
  aspect-ratio: 2/3;
  background: #333;
}
.spotlight-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.curation-band {
  background: #ecece5;
}
.curation-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}
.curation-modern article {
  border-top: 1px solid #bbb;
  padding: 34px 0;
}
.curation-modern span {
  font-weight: 800;
  color: var(--accent);
}
.curation-modern h3 {
  font-size: 2rem;
  letter-spacing: -0.045em;
  margin: 0.4em 0;
}
.curation-modern p {
  color: var(--muted);
}
.recommendation-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.mini-cover {
  aspect-ratio: 2/3;
  background: #e5e5de;
}
.mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recommendation-strip h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin: 0.3em 0;
}
.recommendation-strip p {
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .hero-motion-pending .hero > .eyebrow,
  .hero-motion-pending .hero > h1,
  .hero-motion-pending .hero > p:not(.eyebrow),
  .hero-motion-pending .hero > .text-link,
  .hero-motion-ready .hero > .eyebrow,
  .hero-motion-ready .hero > h1,
  .hero-motion-ready .hero > p:not(.eyebrow),
  .hero-motion-ready .hero > .text-link {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media (max-width: 800px) {
  .hero {
    padding: 90px 0;
  }
  .hero h1 {
    font-size: clamp(1.25rem, 6.5vw, 3rem);
    line-height: 1.13;
  }
  .spotlight-story {
    grid-template-columns: 1fr 120px;
    gap: 25px;
  }
  .spotlight-copy h2 {
    font-size: 2.6rem;
  }
  .curation-modern {
    grid-template-columns: 1fr;
  }
  .recommendation-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
