body[data-page="home"] .home-intro {
  display: flex;
  min-height: 29rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.25rem;
  padding-block: 4.5rem;
  border-bottom: 1px solid var(--color-line);
}

.home-intro h1 {
  max-width: 21rem;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.home-intro__roles {
  position: relative;
  display: grid;
  width: min(100%, 22rem);
  gap: 0.375rem;
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
}

.home-intro__roles::before {
  position: absolute;
  top: 0.15em;
  bottom: 0.15em;
  left: 0;
  width: 1px;
  background: var(--color-accent);
  content: "";
  opacity: 0.65;
}

.home-intro__role {
  color: var(--color-text);
  font-size: clamp(1.1875rem, 5.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  opacity: 0.74;
  transition:
    color var(--motion-base) var(--ease-standard),
    opacity var(--motion-base) var(--ease-standard),
    transform var(--motion-base) var(--ease-out);
}

.home-intro__role:nth-child(even) {
  padding-left: clamp(0.5rem, 4vw, 1.25rem);
}

.home-intro__roles.is-role-sequence-ready .home-intro__role {
  opacity: 0.38;
}

.home-intro__roles.is-role-sequence-ready .home-intro__role.is-active {
  color: var(--color-accent);
  opacity: 1;
  transform: translateX(0.25rem);
}

.work-section {
  padding-bottom: 0;
}

.work-section__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
  padding-block: 1.625rem;
}

.work-section__header h2 {
  color: var(--color-accent);
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.work-title__desktop {
  display: none;
}

.project-index {
  display: grid;
  gap: 2.875rem;
}

.project-card.is-project-teaser {
  position: relative;
  height: clamp(6rem, 24vw, 9rem);
  overflow: hidden;
}

.project-card.is-project-teaser::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.08) 0%,
    rgba(18, 18, 18, 0.38) 42%,
    var(--color-bg) 100%
  );
  content: "";
  pointer-events: none;
}

.project-card.is-project-teaser .project-card__link {
  pointer-events: none;
}

.load-more {
  display: block;
  min-height: 3rem;
  margin: 0.875rem auto 0;
  padding: 0.75rem 1rem;
  color: var(--color-accent);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.load-more[hidden] {
  display: none;
}

.about-section {
  height: 38.75rem;
  margin-top: clamp(4.75rem, 15vw, 7rem);
  padding: 0;
}

.about-section__open {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.about-section__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #252525;
}

.about-section__gradient {
  position: absolute;
  inset: auto 0 0;
  height: 56.5%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.92));
}

.about-section__content {
  position: absolute;
  right: 1.25rem;
  bottom: 1.5rem;
  left: 1.25rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-section__title {
  margin-top: 1.1875rem;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.about-section__copy {
  width: min(100%, 19.375rem);
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.2;
}

body[data-page="home"] .site-footer {
  min-height: 5rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.625rem;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 64rem) {
  body[data-page="home"] .home-intro {
    min-height: 34rem;
    gap: 2.75rem;
    padding-block: 6.5rem;
    border-bottom: 0;
  }

  .home-intro h1 {
    max-width: none;
    font-size: 4.75rem;
    line-height: 1.2;
  }

  .home-intro__roles {
    width: min(100%, 31rem);
    gap: 0.4375rem;
    padding-left: 1.25rem;
  }

  .home-intro__role {
    font-size: 1.75rem;
  }

  .home-intro__role:nth-child(even) {
    padding-left: 2rem;
  }

  .work-section {
    padding-bottom: 0;
  }

  .work-section__header {
    gap: 1.5rem;
    padding-block: 2.125rem 2.25rem;
  }

  .work-section__header h2 {
    font-size: 0.8125rem;
  }

  .work-title__mobile {
    display: none;
  }

  .work-title__desktop {
    display: inline;
  }

  .project-index {
    gap: 4.5rem;
  }

  .load-more {
    margin-top: 1.125rem;
    font-size: 0.8125rem;
  }

  .about-section {
    height: 47.5rem;
    margin-top: clamp(8rem, 9vw, 10.5rem);
  }

  .about-section__content {
    right: 2.5rem;
    bottom: 2.375rem;
    left: 2.5rem;
  }

  .about-section__title {
    margin-top: 1.25rem;
    font-size: 3.375rem;
  }

  .about-section__copy {
    width: min(100%, 40.625rem);
    margin-top: 0.75rem;
    font-size: 1.375rem;
  }

  body[data-page="home"] .site-footer {
    min-height: 4.375rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-intro__roles.is-role-sequence-ready .home-intro__role,
  .home-intro__roles.is-role-sequence-ready .home-intro__role.is-active {
    color: var(--color-text);
    opacity: 0.74;
    transform: none;
  }
}

